/* =====================================================
   SATYANARAYAN ICE CREAM — Master Stylesheet
   ===================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  /* Color Palette */
  --pink: #FFB3C6;
  --pink-deep: #FF6B9D;
  --beige: #FFF8F0;
  --yellow: #FFD166;
  --mango: #FF9F1C;
  --mint: #B5EAD7;
  --mint-deep: #2EC4B6;
  --brown: #7B4F2E;
  --brown-light: #C8956C;
  --cream: #FFF3E4;
  --white: #FFFFFF;
  --dark-bg: #1a0a0a;
  --dark-card: #2d1515;
  --dark-text: #f5e6d3;
  --dark-border: #4a2020;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #FFB3C6 0%, #FFD166 35%, #B5EAD7 70%, #FFB3C6 100%);
  --grad-card: linear-gradient(135deg, rgba(255, 179, 198, 0.3), rgba(255, 209, 102, 0.3));
  --grad-btn: linear-gradient(135deg, #FF6B9D, #FF9F1C);
  --grad-mint: linear-gradient(135deg, #B5EAD7, #2EC4B6);
  --grad-footer: linear-gradient(135deg, #7B4F2E, #C8956C);

  /* Typography */
  --font-main: 'Poppins', sans-serif;
  --font-head: 'Montserrat', sans-serif;

  /* Spacing */
  --section-pad: 5rem 1.5rem;
  --radius: 16px;
  --radius-lg: 24px;

  /* Transitions */
  --trans: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-shadow: 0 8px 32px rgba(123, 79, 46, 0.12);

  /* Light mode text */
  --text-primary: #2d1515;
  --text-secondary: #6b4226;
  --text-muted: #a07850;
  --bg-page: #fff8f0;
  --bg-section: #fff3e4;
  --card-bg: rgba(255, 255, 255, 0.7);
  --nav-bg: rgba(255, 248, 240, 0.85);
}

/* ── Dark Mode Variables ── */
body.dark {
  --text-primary: #f5e6d3;
  --text-secondary: #e8c9a0;
  --text-muted: #b08060;
  --bg-page: #1a0a0a;
  --bg-section: #2d1515;
  --card-bg: rgba(45, 21, 21, 0.85);
  --nav-bg: rgba(26, 10, 10, 0.92);
  --glass-bg: rgba(45, 21, 21, 0.45);
  --glass-border: rgba(200, 149, 108, 0.25);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-page);
  color: var(--text-primary);
  transition: background 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Loading Screen ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #FFB3C6, #FFD166);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-cone {
  font-size: 5rem;
  animation: melt 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 8px 24px rgba(255, 107, 157, 0.5));
}

.loader-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #7B4F2E;
  margin-top: 1rem;
  letter-spacing: 2px;
  animation: pulse 1.2s ease infinite;
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: rgba(123, 79, 46, 0.2);
  border-radius: 999px;
  margin-top: 1.5rem;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--grad-btn);
  border-radius: 999px;
  animation: loadBar 2.2s ease-in-out forwards;
}

@keyframes melt {
  from {
    transform: translateY(0) scaleX(1) rotate(-5deg);
  }

  to {
    transform: translateY(6px) scaleX(1.08) rotate(5deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.5
  }
}

@keyframes loadBar {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

/* ── Animated Background ── */
.animated-bg {
  background: var(--grad-hero);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--trans);
  box-shadow: 0 2px 20px rgba(123, 79, 46, 0.08);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(123, 79, 46, 0.18);
  height: 62px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-icon {
  font-size: 1.8rem;
}

.nav-logo-img {
  height: 45px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.navbar.scrolled .nav-logo-img {
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  transition: var(--trans);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-btn);
  border-radius: 999px;
  transition: var(--trans);
}

.nav-links a:hover {
  color: var(--pink-deep);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--pink-deep);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Dark mode toggle */
.dark-toggle {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  width: 52px;
  height: 28px;
  cursor: pointer;
  position: relative;
  transition: var(--trans);
  display: flex;
  align-items: center;
  padding: 3px;
}

.dark-toggle::after {
  content: '☀️';
  font-size: 0.9rem;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  transform: translateX(0);
  line-height: 22px;
  text-align: center;
}

body.dark .dark-toggle::after {
  content: '🌙';
  transform: translateX(24px);
}

.nav-order-btn {
  background: var(--grad-btn);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--trans);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.nav-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 999px;
  transition: var(--trans);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(123, 79, 46, 0.15);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-nav a:hover {
  color: var(--pink-deep);
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 2rem 4rem;
  background: url('https://images.unsplash.com/photo-1501443762994-82bd5dace89a?w=1920&q=90') center center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(45, 15, 15, 0.55) 0%,
      rgba(123, 79, 46, 0.45) 30%,
      rgba(255, 107, 157, 0.35) 60%,
      rgba(255, 159, 28, 0.4) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.2rem;
  animation: fadeInUp 1s ease 0.2s both;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.hero-title span {
  background: linear-gradient(135deg, #FFD166, #FF6B9D, #FF9F1C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.4s both;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Floating illustrations */
.float-el {
  position: absolute;
  font-size: 3rem;
  animation: float 5s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
  opacity: 0.85;
}

.float-el:nth-child(1) {
  top: 12%;
  left: 5%;
  font-size: 3.5rem;
  animation-delay: 0s;
}

.float-el:nth-child(2) {
  top: 20%;
  right: 6%;
  font-size: 2.5rem;
  animation-delay: 1s;
}

.float-el:nth-child(3) {
  bottom: 25%;
  left: 8%;
  font-size: 2.8rem;
  animation-delay: 2s;
}

.float-el:nth-child(4) {
  bottom: 18%;
  right: 9%;
  font-size: 3rem;
  animation-delay: 0.5s;
}

.float-el:nth-child(5) {
  top: 50%;
  left: 2%;
  font-size: 2rem;
  animation-delay: 1.5s;
}

.float-el:nth-child(6) {
  top: 40%;
  right: 3%;
  font-size: 2.2rem;
  animation-delay: 2.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: var(--trans);
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--grad-btn);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 157, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--brown);
  box-shadow: 0 4px 15px rgba(123, 79, 46, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(123, 79, 46, 0.2);
}

.btn-mint {
  background: var(--grad-mint);
  color: white;
  box-shadow: 0 6px 20px rgba(46, 196, 182, 0.4);
}

.btn-mint:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(46, 196, 182, 0.5);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

/* ── Section Shared ── */
.section {
  padding: var(--section-pad);
}

.section-alt {
  background: var(--bg-section);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pink-deep);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.section-title span {
  background: var(--grad-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Glass Card ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition: var(--trans);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(123, 79, 46, 0.18);
}

/* ── Features Section ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(123, 79, 46, 0.08);
  transition: var(--trans);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 107, 157, 0.2);
  border-color: var(--pink);
}

.feature-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  animation: float 4s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
  animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
  animation-delay: 1s;
}

.feature-card:nth-child(4) .feature-icon {
  animation-delay: 1.5s;
}

.feature-card:nth-child(5) .feature-icon {
  animation-delay: 2s;
}

.feature-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Menu Section ── */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.menu-tab {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 2px solid var(--glass-border);
  background: var(--card-bg);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--grad-btn);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.35);
  transform: translateY(-2px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(123, 79, 46, 0.08);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 107, 157, 0.2);
  border-color: var(--pink);
}

.menu-card-img {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
  background: var(--grad-card);
}

.menu-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans);
}

.menu-card:hover .menu-card-photo {
  transform: scale(1.08);
}

.menu-card-emoji-fallback {
  font-size: 4.5rem;
  align-items: center;
  justify-content: center;
}

.menu-card-emoji {
  position: relative;
  z-index: 1;
  transition: var(--trans);
  filter: drop-shadow(0 4px 12px rgba(123, 79, 46, 0.25));
}

.menu-card:hover .menu-card-emoji {
  transform: scale(1.15) rotate(5deg);
}

.menu-card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.menu-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.menu-card-price {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pink-deep);
}

.add-to-cart {
  background: var(--grad-btn);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.add-to-cart:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.45);
}

/* ── Testimonials ── */
.testimonials-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 2.5rem;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 30px rgba(123, 79, 46, 0.1);
  text-align: center;
}

.stars {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--pink-deep);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  cursor: pointer;
  transition: var(--trans);
}

.dot.active {
  background: var(--pink-deep);
  transform: scale(1.3);
  width: 28px;
  border-radius: 999px;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-card);
  border: 1px solid var(--glass-border);
  transition: var(--trans);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(255, 107, 157, 0.3);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(123, 79, 46, 0);
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay span {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--trans);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(123, 79, 46, 0.4);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(26, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  font-size: 8rem;
  text-align: center;
  max-width: 500px;
  position: relative;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--trans);
}

.lightbox-close:hover {
  color: var(--pink-deep);
  transform: scale(1.2);
}

/* ── Map & Order Section ── */
.map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
  border-radius: var(--radius-lg);
}

.order-info {
  padding: 1.5rem;
}

.order-info h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.order-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.order-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-visual {
  font-size: 10rem;
  text-align: center;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(255, 107, 157, 0.3));
}

.about-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pink-deep);
  margin-bottom: 0.8rem;
}

.about-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.about-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.about-highlight-icon {
  font-size: 1.2rem;
}

/* ── Cart Sidebar ── */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  z-index: 2000;
  background: var(--bg-page);
  border-left: 1px solid var(--glass-border);
  box-shadow: -8px 0 40px rgba(123, 79, 46, 0.15);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
}

.cart-sidebar.open {
  right: 0;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: rgba(26, 10, 10, 0.5);
  backdrop-filter: blur(4px);
  display: none;
}

.cart-overlay.open {
  display: block;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.cart-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
}

.cart-close {
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--trans);
}

.cart-close:hover {
  color: var(--pink-deep);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-muted);
}

.cart-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.cart-item-emoji {
  font-size: 2rem;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item-price {
  font-size: 0.82rem;
  color: var(--pink-deep);
  font-weight: 700;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--card-bg);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: var(--trans);
}

.cart-qty-btn:hover {
  background: var(--pink);
  color: white;
}

.cart-qty-num {
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.cart-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  margin-top: 1rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cart-total-num {
  color: var(--pink-deep);
}

/* Cart float button */
.cart-float {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 900;
  background: var(--grad-btn);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 6px 25px rgba(255, 107, 157, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-float:hover {
  transform: translateY(-3px) scale(1.05);
}

.cart-badge {
  background: white;
  color: var(--pink-deep);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waRipple 2s ease-out infinite;
}

@keyframes waRipple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ── Reels Section ── */
.reels-section {
  max-width: 1100px;
  margin: 0 auto;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.reel-card {
  aspect-ratio: 9/16;
  background: linear-gradient(180deg, var(--pink) 0%, var(--mango) 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: var(--trans);
  font-size: 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.reel-card:nth-child(2n) {
  background: linear-gradient(180deg, var(--mint) 0%, var(--mint-deep) 100%);
}

.reel-card:nth-child(3n) {
  background: linear-gradient(180deg, var(--yellow) 0%, var(--mango) 100%);
}

.reel-play {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--pink-deep);
  transition: var(--trans);
}

.reel-card:hover .reel-play {
  transform: scale(1.15);
}

.reel-card:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(255, 107, 157, 0.3);
}

/* ── Footer ── */
.footer {
  background: var(--grad-footer);
  color: white;
  padding: 4rem 1.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.1);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a,
.footer-col ul li {
  font-size: 0.88rem;
  opacity: 0.75;
  transition: var(--trans);
  cursor: pointer;
}

.footer-col ul li a:hover {
  opacity: 1;
  padding-left: 4px;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-hours li span {
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.82rem;
  opacity: 0.65;
}

/* ── Admin Panel ── */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-hero);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  padding: 2rem;
}

.admin-login-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(123, 79, 46, 0.2);
  text-align: center;
}

.admin-panel {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: none;
}

.admin-panel.visible {
  display: block;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

.admin-table th {
  background: var(--grad-btn);
  color: white;
  padding: 0.8rem 1rem;
  text-align: left;
  font-weight: 700;
}

.admin-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

.admin-table tr:hover td {
  background: rgba(255, 179, 198, 0.1);
}

.admin-table input {
  width: 100%;
  border: 1px solid var(--glass-border);
  background: var(--card-bg);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  font-family: var(--font-main);
  font-size: 0.88rem;
}

.admin-save-btn {
  background: var(--grad-btn);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans);
  margin-top: 1.5rem;
}

.admin-save-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.45);
}

/* Form inputs */
.form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
}

.form-group input {
  width: 100%;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--card-bg);
  transition: var(--trans);
  outline: none;
}

.form-group input:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.15);
}

/* ── Animations ── */
@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

/* AOS animation support */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.85);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .map-section {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-visual {
    font-size: 7rem;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-order-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .section {
    padding: 3.5rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Scrollbar custom ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink-deep);
}

/* ── Toast notification ── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 8px 30px rgba(123, 79, 46, 0.2);
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Page-specific helpers */
.page-hero {
  padding: 140px 1.5rem 5rem;
  background: var(--grad-hero);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  text-align: center;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--grad-btn);
  border-radius: 999px;
  margin: 1rem auto 0;
}

/* ── Zomato Delivery Section ── */
.zomato-section {
  background: #fff;
  overflow: hidden;
}

[data-theme="dark"] .zomato-section {
  background: var(--bg);
}

.zomato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.zomato-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7B4F2E;
  margin-bottom: 1rem;
}

.zomato-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1.15;
  color: #2D2D2D;
  margin-bottom: 1.2rem;
}

[data-theme="dark"] .zomato-title {
  color: #fff;
}

[data-theme="dark"] .zomato-tag {
  color: #e0a86e;
}

.zomato-desc {
  font-size: 1rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 440px;
}

[data-theme="dark"] .zomato-desc {
  color: #aaa;
}

.zomato-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-zomato {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: #E23744;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(226, 55, 68, 0.35);
}

.btn-zomato:hover {
  background: #c22c3a;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(226, 55, 68, 0.5);
}

.zomato-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-rider-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(226, 55, 68, 0.15));
  animation: riderFloat 3s ease-in-out infinite;
}

@keyframes riderFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 768px) {
  .zomato-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .zomato-title {
    font-size: 2rem;
  }

  .zomato-desc {
    max-width: 100%;
  }

  .zomato-buttons {
    justify-content: center;
  }

  .zomato-visual {
    order: -1;
  }

  .delivery-rider-svg {
    max-width: 300px;
  }
}

/* ── Shop Gallery Showcase ── */
.shop-showcase {
  overflow: hidden;
}

.shop-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.shop-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shop-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255, 107, 157, 0.25);
}

.shop-gallery-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.shop-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shop-gallery-item:hover .shop-gallery-img {
  transform: scale(1.1);
}

.shop-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.shop-gallery-item:hover .shop-gallery-overlay {
  opacity: 1;
}

.shop-gallery-label {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.shop-gallery-item:hover .shop-gallery-label {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .shop-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .shop-gallery-wide {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .shop-gallery-grid {
    grid-template-columns: 1fr;
  }

  .shop-gallery-wide {
    grid-column: span 1;
    aspect-ratio: 16 / 9;
  }

  .shop-gallery-item {
    aspect-ratio: 4 / 3;
  }
}

/* ══════════════════════════════════════════════════════
   PHOTO GALLERY — Real Images + Aesthetic Enhancements
   ══════════════════════════════════════════════════════ */

/* ── Aesthetic Photo Enhancement Filter ── */
.shop-photo-enhance {
  filter: brightness(1.08) contrast(1.1) saturate(1.2);
  transition: filter 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shop-photo-enhance:hover {
  filter: brightness(1.15) contrast(1.12) saturate(1.35);
}

/* Warm-tone overlay for shop photos */
.shop-gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(255, 209, 102, 0.08) 0%,
      rgba(255, 159, 28, 0.06) 40%,
      rgba(255, 107, 157, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}

.shop-gallery-item:hover::before {
  opacity: 0.6;
}

.shop-gallery-overlay {
  z-index: 2;
}

/* ── Gallery Page — Photo Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--card-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid var(--glass-border);
}

.gallery-item-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(255, 209, 102, 0.06) 0%,
      rgba(255, 159, 28, 0.04) 40%,
      rgba(255, 107, 157, 0.08) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  transition: opacity 0.4s ease;
}

.gallery-item-photo:hover::before {
  opacity: 0.5;
}

.gallery-item-featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.06) contrast(1.08) saturate(1.18);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
    filter 0.6s ease;
}

.gallery-item-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255, 107, 157, 0.2);
  border-color: var(--pink);
}

.gallery-item-photo:hover .gallery-item-img {
  transform: scale(1.08);
  filter: brightness(1.12) contrast(1.1) saturate(1.3);
}

.gallery-item-photo .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-item-photo:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-photo .gallery-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  display: block;
}

.gallery-item-photo:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ── Lightbox — Image Mode ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-content-photo {
  position: relative;
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  text-align: center;
  animation: lightboxFadeIn 0.35s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 10;
  transition: var(--trans);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close:hover {
  background: rgba(255, 107, 157, 0.7);
  transform: rotate(90deg) scale(1.1);
}

.lightbox-img-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  filter: brightness(1.05) contrast(1.08) saturate(1.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lightboxImgIn 0.4s ease 0.1s both;
}

@keyframes lightboxImgIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lightbox-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.5rem 0.5rem;
}

.lightbox-label {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lightbox-counter {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 1px;
}

.lightbox-nav-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 0.8rem 0 0.5rem;
}

.lightbox-nav-btn {
  padding: 0.5rem 1.5rem !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
  backdrop-filter: blur(10px);
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.lightbox-nav-btn:hover {
  background: rgba(255, 107, 157, 0.5) !important;
  border-color: rgba(255, 107, 157, 0.7) !important;
  transform: translateY(-2px);
}

/* ── Gallery Responsive ── */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .gallery-item-featured {
    grid-column: span 2;
  }

  .lightbox-img {
    max-height: 55vh;
  }

  .lightbox-info {
    flex-direction: column;
    gap: 0.3rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .gallery-item-featured {
    grid-column: span 1;
  }

  .gallery-item-photo {
    aspect-ratio: 4/3;
  }

  .lightbox-img {
    max-height: 45vh;
    border-radius: 8px;
  }

  .lightbox-nav-btn {
    padding: 0.4rem 1rem !important;
    font-size: 0.82rem;
  }
}

/* ── About Page Shop Photo ── */
.about-shop-photo {
  filter: brightness(1.08) contrast(1.1) saturate(1.2);
  transition: all 0.5s ease;
}

.about-shop-photo:hover {
  filter: brightness(1.14) contrast(1.12) saturate(1.35);
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(255, 107, 157, 0.2) !important;
}

/* ══════════════════════════════════════════════════════
   PHOTO BANNER STRIP — Between Sections
   ══════════════════════════════════════════════════════ */
.photo-banner {
  padding: 0;
  overflow: hidden;
  background: var(--bg-section);
}

.photo-banner-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.photo-banner-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}

.photo-banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) saturate(1.15);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.6s ease;
}

.photo-banner-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.15) saturate(1.3);
}

.photo-banner-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

.photo-banner-caption {
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transform: translateY(5px);
  opacity: 0;
  transition: all 0.4s ease;
}

.photo-banner-item:hover .photo-banner-caption {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .photo-banner-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .photo-banner-strip {
    grid-template-columns: 1fr 1fr;
  }

  .photo-banner-item {
    aspect-ratio: 4/3;
  }
}

/* ══════════════════════════════════════════════════════
   PARALLAX PHOTO DIVIDER — Quote Section
   ══════════════════════════════════════════════════════ */
.parallax-divider {
  position: relative;
  height: 320px;
  background: url('https://images.unsplash.com/photo-1501443762994-82bd5dace89a?w=1920&q=85') center center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 79, 46, 0.7) 0%, rgba(255, 107, 157, 0.5) 50%, rgba(255, 159, 28, 0.6) 100%);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.parallax-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.parallax-quote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  font-style: italic;
  color: #fff;
  max-width: 600px;
  line-height: 1.4;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  margin: 0 auto 0.8rem;
}

.parallax-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .parallax-divider {
    height: 260px;
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .parallax-divider {
    height: 220px;
  }

  .parallax-icon {
    font-size: 2.2rem;
  }
}

/* ══════════════════════════════════════════════════════
   MAP & ORDER SECTION
   ══════════════════════════════════════════════════════ */
.map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.order-info {
  padding: 2rem;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  box-shadow: var(--glass-shadow);
}

.order-info h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.order-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ══════════════════════════════════════════════════════ */
.testimonials-wrapper {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 2.5rem;
  text-align: center;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.3;
  cursor: pointer;
  transition: var(--trans);
  border: none;
}

.testimonial-dot.active {
  opacity: 1;
  transform: scale(1.2);
  background: var(--pink-deep);
}

/* ══════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   ══════════════════════════════════════════════════════ */

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
  .map-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .map-embed iframe {
    height: 280px;
  }

  .order-actions {
    flex-direction: column;
  }

  .hero {
    min-height: 85vh;
    padding: 90px 1.5rem 3rem;
  }

  .hero-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 0.35rem 1rem;
  }

  .menu-tabs {
    gap: 0.4rem;
    padding: 0 0.5rem;
  }

  .menu-tab {
    font-size: 0.78rem;
    padding: 0.45rem 0.8rem;
  }

  .float-el {
    display: none;
  }

  .page-hero {
    padding: 120px 1.2rem 3rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}

/* ── Small phone (480px) ── */
@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
    padding: 80px 1rem 2.5rem;
  }

  .hero-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-badge {
    font-size: 0.72rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .map-embed iframe {
    height: 220px;
  }

  .order-info {
    padding: 1.5rem;
  }

  .order-info h3 {
    font-size: 1.3rem;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-bottom {
    font-size: 0.78rem;
    padding: 1rem;
  }

  .page-hero {
    padding: 100px 1rem 2.5rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .testimonial-card {
    padding: 1.2rem;
    font-size: 0.9rem;
  }

  .nav-logo-img {
    width: 32px;
    height: 32px;
  }
}