/* ===== LUCIDE ICON DEFAULTS ===== */
[data-lucide] {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.hero__trust-icon [data-lucide],
.floating-card__icon [data-lucide] {
  width: 28px;
  height: 28px;
  color: var(--saffron-glow);
}

.about__feature-icon [data-lucide],
.experience__feature-icon [data-lucide] {
  width: 26px;
  height: 26px;
  color: var(--saffron);
}

.contact__item-icon [data-lucide] {
  width: 24px;
  height: 24px;
  color: var(--saffron);
}

.trust-banner__item [data-lucide] {
  width: 20px;
  height: 20px;
  color: var(--saffron-glow);
}

.footer__social-link [data-lucide] {
  width: 20px;
  height: 20px;
}

/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand Colors */
  --saffron: #E8860C;
  --saffron-light: #F5A623;
  --saffron-glow: #FFB84D;
  --maroon: #6B1D2A;
  --maroon-deep: #4A0E1C;
  --maroon-light: #8B2E3F;
  --gold: #D4A843;
  --gold-light: #E8C96A;

  /* Neutrals */
  --cream: #FFF8F0;
  --cream-warm: #FFF3E6;
  --cream-dark: #F5E6D3;
  --white: #FFFFFF;
  --text-primary: #2D1810;
  --text-secondary: #5C3D2E;
  --text-muted: #8B7355;
  --text-light: #B89B7A;

  /* Functional */
  --success: #2E7D32;
  --star: #FFB300;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(107, 29, 42, 0.06);
  --shadow-md: 0 4px 24px rgba(107, 29, 42, 0.1);
  --shadow-lg: 0 8px 40px rgba(107, 29, 42, 0.14);
  --shadow-xl: 0 16px 64px rgba(107, 29, 42, 0.18);
  --shadow-glow: 0 0 40px rgba(232, 134, 12, 0.2);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-brand: 'Cinzel Decorative', 'Cinzel', 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-width: 1200px;
  --container-narrow: 900px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) ease;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--duration-normal) var(--ease-out);
}

ul, ol {
  list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ===== DECORATIVE INDIAN MOTIFS ===== */
.motif-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.motif-divider::before,
.motif-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.motif-divider .motif-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--saffron), var(--maroon));
  border-radius: 4px;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--duration-normal) var(--ease-out);
  padding: 1rem 0;
  background: linear-gradient(135deg, #3B0A0A, #5A1A2A);
  box-shadow: 0 2px 12px rgba(59, 10, 10, 0.3);
}

.header--scrolled {
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 1px 20px rgba(107, 29, 42, 0.08);
  padding: 0.5rem 0;
}

.header--scrolled .header__logo-name {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--saffron) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.header--scrolled .header__logo-tagline {
  color: var(--text-muted);
}

.header--scrolled .header__nav-link {
  color: var(--text-secondary);
}

.header--scrolled .header__nav-link:hover {
  color: var(--maroon);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.header__logo-img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 6px;
  transform: translateY(-12px);
  transition: transform var(--duration-normal) var(--ease-out);
}

.header__brand:hover .header__logo-img {
  transform: translateY(-12px) scale(1.05);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header__logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--saffron-glow) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.header__logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.85);
  font-weight: 700;
}

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

.header__nav-links {
  display: flex;
  gap: 0.25rem;
}

.header__nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 248, 240, 0.9);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) ease;
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  transition: width var(--duration-normal) var(--ease-out);
}

.header__nav-link:hover {
  color: var(--saffron-glow);
}

.header__nav-link:hover::after {
  width: 60%;
}

.header__cta {
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 16px rgba(232, 134, 12, 0.3);
  transition: all var(--duration-normal) var(--ease-out);
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 134, 12, 0.4);
}

/* Mobile Menu Toggle */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: transparent;
  padding: 4px 0;
}

.header__menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--maroon);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

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

.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--maroon-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(74, 14, 28, 0.85) 0%, rgba(107, 29, 42, 0.6) 40%, rgba(232, 134, 12, 0.2) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(74, 14, 28, 0.9) 100%);
}

/* Decorative floating elements */
.hero__decor {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.15);
  animation: float-rotate 20s linear infinite;
}

.hero__decor-circle:nth-child(1) {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.hero__decor-circle:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -80px;
  animation-duration: 25s;
  animation-direction: reverse;
}

.hero__decor-circle:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 15%;
  border-color: rgba(232, 134, 12, 0.1);
  animation-duration: 30s;
}

@keyframes float-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__content {
  position: relative;
  z-index: 3;
  color: white;
  padding: 9rem 0 4rem;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
}

.hero__title span {
  display: block;
  background: linear-gradient(135deg, var(--saffron-glow), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(232, 134, 12, 0.35);
  transition: all var(--duration-normal) var(--ease-out);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232, 134, 12, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-xl);
  transition: all var(--duration-normal) var(--ease-out);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero__trust-bar {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero__trust-text {
  display: flex;
  flex-direction: column;
}

.hero__trust-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.hero__trust-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.03em;
}

/* ===== FLOATING BADGES (hero right side) ===== */
.hero__floating-cards {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.floating-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideInRight 0.8s var(--ease-out) both;
  min-width: 240px;
}

.floating-card:nth-child(1) { animation-delay: 0.8s; }
.floating-card:nth-child(2) { animation-delay: 1s; transform: translateX(30px); }
.floating-card:nth-child(3) { animation-delay: 1.2s; }

.floating-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.floating-card__icon--rating { background: linear-gradient(135deg, var(--star), #FF8F00); }
.floating-card__icon--veg { background: linear-gradient(135deg, #43A047, #66BB6A); }
.floating-card__icon--hygiene { background: linear-gradient(135deg, #1976D2, #42A5F5); }

.floating-card__text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.floating-card__text small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.floating-card:nth-child(2) {
  animation-name: slideInRight2;
}

@keyframes slideInRight2 {
  from {
    opacity: 0;
    transform: translateX(90px);
  }
  to {
    opacity: 1;
    transform: translateX(30px);
  }
}

/* ===== TRUST BANNER ===== */
.trust-banner {
  background: var(--white);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  position: relative;
  overflow: hidden;
}

.trust-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--maroon), var(--gold), var(--saffron));
}

.trust-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-banner__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-banner__item span:first-child {
  font-size: 1.2rem;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: var(--section-padding) 0;
  background: var(--cream);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.about__image-wrapper:hover img {
  transform: scale(1.03);
}

.about__image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about__image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--maroon);
}

.about__image-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about__text p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
}

.about__feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.about__feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--cream-warm), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about__feature-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--maroon);
  margin-bottom: 0.15rem;
}

.about__feature-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== CATEGORIES SECTION ===== */
.categories {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.categories__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.categories__header .section-label {
  justify-content: center;
}

.categories__header .section-subtitle {
  margin: 0 auto;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  group: true;
}

.category-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.category-card__image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.category-card:hover .category-card__image img {
  transform: scale(1.08);
}

.category-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

/* placeholder for missing images */
.category-card__placeholder {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.category-card__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.category-card__placeholder--sweets {
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
}

.category-card__placeholder--bakery {
  background: linear-gradient(135deg, #FBE9E7, #FFCCBC);
}

.category-card__placeholder--snacks {
  background: linear-gradient(135deg, #FFF8E1, #FFECB3);
}

.category-card__placeholder--beverages {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

.category-card__placeholder--foodcourt {
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
}

.category-card__placeholder--delivery {
  background: linear-gradient(135deg, #FCE4EC, #F8BBD0);
}

.category-card__body {
  padding: 1.5rem;
}

.category-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}

.category-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.category-card__tag {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--cream-warm), var(--cream-dark));
  color: var(--saffron);
}

/* ===== POPULAR PRODUCTS SECTION ===== */
.products {
  padding: var(--section-padding) 0;
  background: var(--cream);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--cream), transparent);
  pointer-events: none;
}

.products__header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.products__header .section-label {
  justify-content: center;
}

.products__header .section-subtitle {
  margin: 0 auto;
}

/* ===== CAROUSEL ===== */
.carousel {
  position: relative;
  z-index: 2;
}

.carousel__track-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}

.carousel__track:active {
  cursor: grabbing;
}

.carousel__card {
  flex: 0 0 calc(25% - 1.125rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
}

.carousel__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.carousel__card-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.carousel__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.carousel__card:hover .carousel__card-image img {
  transform: scale(1.06);
}

.carousel__card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: var(--maroon);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
}

.carousel__card-body {
  padding: 1.25rem;
  text-align: center;
}

.carousel__card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 0.25rem;
}

.carousel__card-body p {
  font-size: 0.8rem;
  color: var(--saffron);
  font-weight: 500;
}

/* Carousel navigation buttons */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  color: var(--maroon);
  border: none;
}

.carousel__btn:hover {
  background: var(--maroon);
  color: white;
  box-shadow: var(--shadow-lg);
}

.carousel__btn--prev {
  left: -24px;
}

.carousel__btn--next {
  right: -24px;
}

.carousel__btn svg {
  width: 22px;
  height: 22px;
}

/* Carousel dots */
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  padding: 0;
}

.carousel__dot--active {
  background: var(--saffron);
  transform: scale(1.3);
}

/* ===== EXPERIENCE / FOOD COURT SECTION ===== */
.experience {
  padding: var(--section-padding) 0;
  background: var(--maroon-deep);
  color: white;
  position: relative;
  overflow: hidden;
}

.experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(232, 134, 12, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 168, 67, 0.06) 0%, transparent 50%);
}

.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.experience .section-label {
  color: var(--gold-light);
}

.experience .section-title {
  color: white;
}

.experience .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.experience__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.experience__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.experience__feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
}

.experience__feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.experience__feature-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.experience__feature-text span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.experience__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.experience__image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.experience__image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.experience__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--duration-slow) var(--ease-out);
}

.experience__image:hover img {
  transform: scale(1.03);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.reviews__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reviews__header .section-label {
  justify-content: center;
}

.reviews__header .section-subtitle {
  margin: 0 auto;
}

.reviews__rating-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
}

.reviews__rating-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}

.reviews__rating-meta {
  text-align: left;
}

.reviews__stars {
  color: var(--star);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
}

.reviews__count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 168, 67, 0.08);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--cream-dark);
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card__stars {
  color: var(--star);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.review-card__author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.review-card__author-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
}

.contact__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact__item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--cream-warm), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact__item-text strong {
  display: block;
  font-size: 1rem;
  color: var(--maroon);
  margin-bottom: 0.25rem;
}

.contact__item-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact__item-text a {
  color: var(--saffron);
  font-weight: 500;
}

.contact__item-text a:hover {
  color: var(--maroon);
}

.contact__form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}

.contact__form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all var(--duration-fast) ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232, 134, 12, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(107, 29, 42, 0.25);
  transition: all var(--duration-normal) var(--ease-out);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 29, 42, 0.35);
}

/* Map area */
.contact__map {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 200px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.05), transparent 50%);
}

.cta__content {
  position: relative;
  z-index: 2;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta__subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--maroon);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all var(--duration-normal) var(--ease-out);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: all var(--duration-normal) var(--ease-out);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--maroon-deep);
  color: white;
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer__brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__brand-name {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  background: linear-gradient(135deg, var(--saffron-glow), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.footer__brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--duration-normal) var(--ease-out);
}

.footer__social-link svg {
  fill: currentColor;
}

.footer__social-link:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  transform: translateY(-3px);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration-fast) ease;
}

.footer__links a:hover {
  color: var(--saffron-glow);
  padding-left: 4px;
}

.footer__hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer__hours-item span:first-child {
  color: rgba(255, 255, 255, 0.6);
}

.footer__hours-item span:last-child {
  color: var(--cream);
  font-weight: 500;
}

.footer__fssai {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer__badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--duration-normal) var(--ease-out);
  animation: fadeInUp 0.8s var(--ease-out) 1.5s both;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(74, 14, 28, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  transition: all var(--duration-fast) ease;
}

.mobile-nav__link:hover {
  color: var(--saffron-glow);
}

.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__floating-cards {
    display: none;
  }

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

  .carousel__card {
    flex: 0 0 calc(33.333% - 1rem);
  }

  .carousel__btn--prev { left: -16px; }
  .carousel__btn--next { right: -16px; }

  .experience__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  .header__nav-links {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header__menu-toggle {
    display: flex;
  }

  .hero__content {
    padding: 7rem 0 3rem;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero__trust-bar {
    gap: 1.5rem;
  }

  .trust-banner__inner {
    gap: 1.5rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

  .carousel__card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .carousel__btn { width: 40px; height: 40px; }
  .carousel__btn--prev { left: -8px; }
  .carousel__btn--next { right: -8px; }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }

  .hero__trust-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-banner__inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .carousel__card {
    flex: 0 0 100%;
  }

  .carousel__btn { width: 36px; height: 36px; }
  .carousel__btn--prev { left: 4px; }
  .carousel__btn--next { right: 4px; }
  .carousel__btn svg { width: 18px; height: 18px; }
}

/* ===== SPECIAL INDIAN PATTERN ===== */
.pattern-border {
  position: relative;
}

.pattern-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--saffron) 0px,
      var(--saffron) 8px,
      transparent 8px,
      transparent 12px,
      var(--gold) 12px,
      var(--gold) 20px,
      transparent 20px,
      transparent 24px,
      var(--maroon) 24px,
      var(--maroon) 32px,
      transparent 32px,
      transparent 36px
    );
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--maroon);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration-normal) var(--ease-out);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--saffron);
}
