/* ══════════════════════════════════════════════════
   Shahryar's Ice Cream Bar — Styles
   ══════════════════════════════════════════════════ */

@font-face {
  font-family: 'Lobster';
  src: url('Lobster/Lobster-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

/* ── VARIABLES ── */
:root {
  --primary: #2456A6;
  --primary-dark: #1a3f7a;
  --primary-light: #3a6bc5;
  --accent: #A7C4E8;
  --accent-dark: #8ab0de;
  --accent-light: #c5daf0;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F4F6F9;
  --dark: #2456A6;
  --dark-mid: #2456A6;
  --gray: #5a7aaa;
  --gray-light: #7a9ac4;
  --border: rgba(36,86,166,0.1);
  --shadow-xs: 0 1px 3px rgba(36,86,166,0.05);
  --shadow-sm: 0 2px 8px rgba(36,86,166,0.08);
  --shadow: 0 4px 20px rgba(36,86,166,0.1);
  --shadow-md: 0 8px 30px rgba(36,86,166,0.12);
  --shadow-lg: 0 16px 50px rgba(36,86,166,0.15);
  --shadow-glow: 0 0 40px rgba(36,86,166,0.2);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease);
  --transition-slow: 0.6s var(--ease);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--bg-primary);
  overflow-x: hidden;
  overflow-x: clip;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .overline {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  background: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

.section-header .accent-bar {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 16px auto 0;
}

section { padding: 100px 0; }

.back-home {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 10px;
  transition: var(--transition);
}

.back-home:hover { color: var(--primary); padding-left: 4px; }

.text-center { text-align: center; }

/* ══════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  height: 76px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.nav-brand .brand-icon {
  height: 42px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  transition: var(--transition);
}

.nav-brand:hover .brand-icon { transform: rotate(-8deg) scale(1.05); }

.nav-brand .brand-name {
  font-family: 'Lobster', cursive;
  font-size: 1.35rem;
  font-weight: normal;
  color: var(--dark);
  line-height: 1.2;
}

.nav-brand .brand-name small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gray-light);
  letter-spacing: 0.04em;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(36,86,166,0.05);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 10;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0;
  width: 100%;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  padding: 16px 24px 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  z-index: 999;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.mobile-menu.active { display: block; }

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 12px;
  transition: var(--transition);
}

.mobile-menu a:hover {
  background: rgba(36,86,166,0.06);
  color: var(--primary);
}

.mobile-menu a .m-icon {
  width: 36px; height: 36px;
  background: var(--bg-secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
   background: linear-gradient(160deg, #FFFFFF 0%, #F4F6F9 35%, #e8eef5 65%, #F4F6F9 100%);
}

/* Floating blobs */
.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero-blobs .blob-1 {
  width: 500px; height: 500px;
  background: rgba(36,86,166,0.12);
  top: -150px; right: -100px;
  animation: blobFloat 12s ease-in-out infinite;
}

.hero-blobs .blob-2 {
  width: 350px; height: 350px;
  background: rgba(167,196,232,0.15);
  bottom: -80px; left: -80px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

.hero-blobs .blob-3 {
  width: 200px; height: 200px;
  background: rgba(167,196,232,0.12);
  top: 45%; left: 40%;
  animation: blobFloat 14s ease-in-out infinite 2s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Content */
.hero-content { padding: 20px 0; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-content h1 {
  font-family: 'Lobster', cursive;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.08;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 18px;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(36,86,166,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(36,86,166,0.4);
}

.btn-secondary {
  background: var(--bg-primary);
  color: var(--dark);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 14px 16px;
  font-weight: 600;
}

.btn-ghost:hover { text-decoration: underline; }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

.btn-whatsapp .wa-icon {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #25d366;
  position: relative;
}

.btn-whatsapp .wa-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: white;
  clip-path: polygon(38% 62%, 78% 24%, 40% 78%, 24% 66%, 38% 74%, 38% 62%);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity .6s ease, visibility .6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader img {
  height: 64px;
  width: auto;
  animation: prePulse 1.2s ease-in-out infinite;
}

@keyframes prePulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.06); opacity: 1; }
}

.preloader-bar {
  width: 160px;
  height: 4px;
  border-radius: 4px;
  background: rgba(36,86,166,0.12);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  animation: preLoad 1.1s ease-in-out infinite;
}

@keyframes preLoad {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(300%); }
}

/* Floating contact buttons */
.fab-wrap {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fab-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: var(--transition);
  font-size: 1.3rem;
  position: relative;
}

.fab-toggle:hover { transform: scale(1.06); }

.fab-toggle .fab-ico {
  position: absolute;
  transition: var(--transition);
}

.fab-ico-close { opacity: 0; transform: rotate(-90deg) scale(0.5); }

.fab-wrap.open .fab-toggle { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.fab-wrap.open .fab-ico-open { opacity: 0; transform: rotate(90deg) scale(0.5); }
.fab-wrap.open .fab-ico-close { opacity: 1; transform: rotate(0) scale(1); }

.fab-act {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform .35s ease, opacity .3s ease;
  opacity: 0;
  transform: scale(0) translateY(10px);
  pointer-events: none;
  margin-bottom: 12px;
}

.fab-wa { background: linear-gradient(135deg, #25d366, #128c7e); }
.fab-call { background: linear-gradient(135deg, var(--primary-light), var(--primary)); }

.fab-wrap.open .fab-act {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.fab-wrap.open .fab-call { transition-delay: .08s; }
.fab-wrap.open .fab-wa { transition-delay: .16s; }
.fab-wrap .fab-wa { transition-delay: .04s; }
.fab-wrap .fab-call { transition-delay: 0s; }

/* Reviews */
.reviews-sec {
   background: linear-gradient(180deg, #FFFFFF 0%, #F4F6F9 100%);
  overflow: hidden;
}

.reviews-carousel {
  position: relative;
}

.reviews-viewport {
  overflow: hidden;
  overflow: clip;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  padding: 8px 0 12px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.65s var(--ease), opacity 0.35s var(--ease);
  will-change: transform, opacity;
}

.reviews-track.is-fading { opacity: 0; }

.review-card {
  flex: 0 0 auto;
  width: 340px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(36,86,166,0.06);
}

.rev-nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--bg-primary);
  color: var(--primary);
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.rev-nav:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.08);
  box-shadow: var(--shadow-md);
}

.rev-prev { left: 4px; }
.rev-next { right: 4px; }

.rev-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.rev-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: rgba(36,86,166,0.22);
  cursor: pointer;
  transition: var(--transition);
}

.rev-dots button:hover { background: rgba(36,86,166,0.45); }

.rev-dots button.active {
  background: var(--primary);
  width: 28px;
}

.review-card::before {
  content: '❝';
  position: absolute;
  top: 14px;
  right: 22px;
  font-size: 3rem;
   color: rgba(36,86,166,0.1);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

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

.rev-stars {
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.rev-text {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
   background: linear-gradient(135deg, var(--accent), var(--primary));
   color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.rev-author h4 { font-size: 0.92rem; color: var(--dark); }
.rev-author span { font-size: 0.75rem; color: var(--gray-light); }

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 0;
}

.hero-stat {
  padding: 0 28px;
  text-align: center;
  position: relative;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 4px;
  height: 32px;
  width: 1px;
  background: rgba(0,0,0,0.08);
}

.hero-stat .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.hero-stat .stat-label {
  font-size: 0.78rem;
  color: var(--gray-light);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Hero photo shot */
.hero-shot {
  width: min(430px, 100%);
  aspect-ratio: 4 / 4.6;
  border-radius: 40px 40px 40px 40px;
  overflow: visible;
  position: relative;
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
}

.hs-card {
  position: absolute;
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: floatItem 5s ease-in-out infinite;
}

.hs-card strong { color: var(--primary); font-weight: 700; }

.hs-price { top: 24px; left: -26px; animation-delay: 0s; }
.hs-rating { bottom: 96px; right: -22px; animation-delay: 1s; }
.hs-rating span { color: var(--accent); letter-spacing: 1px; }
.hs-fresh { bottom: -18px; left: 28px; animation-delay: 2s; }
.hs-fresh span { font-size: 1rem; }

.hero-visual .orbit-item {
  position: absolute;
  width: 52px; height: 52px;
  background: var(--bg-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  animation: floatItem 5s ease-in-out infinite;
  z-index: 2;
}

.hero-visual .orbit-item:hover { transform: scale(1.15); }

.hero-visual .oi-1 { top: -18px; right: 8%; animation-delay: 0s; }
.hero-visual .oi-2 { top: 55%; left: -12px; animation-delay: 0.8s; }
.hero-visual .oi-3 { bottom: -14px; right: 24%; animation-delay: 1.6s; }

@keyframes floatItem {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-9px) rotate(-4deg); }
}

/* Sprinkles rain */
.sprinkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sprinkles span {
  position: absolute;
  top: -16px;
  left: var(--x);
  width: 7px;
  height: 16px;
  border-radius: 4px;
  background: var(--c);
  opacity: 0;
  animation: sprinkleFall 4.5s linear infinite;
  animation-delay: var(--d);
}

@keyframes sprinkleFall {
  0% { opacity: 0; transform: translateY(-20px) rotate(0deg); }
  10% { opacity: 0.85; }
  90% { opacity: 0.85; }
  100% { opacity: 0; transform: translateY(560px) rotate(540deg); }
}

/* ══════════════════════════════════════════════════
   PAGE HERO (for sub-pages)
   ══════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(160deg, #FFFFFF 0%, #F4F6F9 40%, #e8eef5 100%);
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 300px at 10% 20%, rgba(36,86,166,0.06), transparent 60%),
    radial-gradient(350px 250px at 90% 80%, rgba(167,196,232,0.1), transparent 55%);
  pointer-events: none;
}

.page-hero .container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero .overline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: inline-block;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.15;
}

.page-hero h1 span {
  background: linear-gradient(135deg, var(--primary), #5a86cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero > p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Flavors Page */
.flavors-page {
  padding: 40px 0 80px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F6F9 100%);
}

.flavors-page .flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════
   MENU SECTION
   ══════════════════════════════════════════════════ */
#menu {
   background: linear-gradient(180deg, #FFFFFF 0%, #F4F6F9 50%, #FFFFFF 100%);
}

.menu-category { margin-bottom: 60px; }
.menu-category:last-child { margin-bottom: 0; }

.cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 2px dashed rgba(36,86,166,0.15);
}

.cat-header .cat-badge {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.cat-scoops .cat-badge { background: linear-gradient(135deg, #F4F6F9, #e8eef5); }
.cat-specials .cat-badge { background: linear-gradient(135deg, #F4F6F9, #dce5f0); }
.cat-packs .cat-badge { background: linear-gradient(135deg, #F4F6F9, #d0daea); }

.cat-header h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.1;
}

.cat-header .cat-sub {
  font-size: 0.85rem;
  color: var(--gray);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

/* Menu Cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}

.menu-card {
  background: var(--bg-primary);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.menu-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.menu-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.menu-card:hover::before { opacity: 1; }

.menu-card .mc-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(36,86,166,0.25);
  flex-shrink: 0;
  min-width: 28px;
  transition: var(--transition);
}

.menu-card:hover .mc-num { color: var(--primary); }

.menu-card .mc-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  flex: 1;
  line-height: 1.4;
}

.menu-card .mc-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  white-space: nowrap;
  background: linear-gradient(135deg, rgba(36,86,166,0.1), rgba(167,196,232,0.1));
  padding: 6px 14px;
  border-radius: 10px;
  transition: var(--transition);
}

.menu-card:hover .mc-price {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(36,86,166,0.3);
}

/* ══════════════════════════════════════════════════
   FLAVORS — REAL ELEMENTS
   ══════════════════════════════════════════════════ */
#flavors {
   background: linear-gradient(180deg, #FFFFFF 0%, #F4F6F9 50%, #FFFFFF 100%);
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flavor-card {
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  position: relative;
  cursor: default;
  transition: var(--transition);
  box-shadow: var(--shadow);
  background: var(--bg-primary);
}

.flavor-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Each flavor's top visual section */
.flavor-top {
  aspect-ratio: 4 / 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.flavor-top::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 30px;
  background: var(--bg-primary);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.flavor-scoop {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
  transition: transform .5s ease;
  display: block;
}

.flavor-card:hover .flavor-scoop { transform: scale(1.12) rotate(-2deg); }

/* Flavor-specific tint (fallback while image loads) */
.flavor-pista .flavor-top { background: linear-gradient(135deg, #d4e8d0, #b8d4b0); }
.flavor-pista .flavor-scoop { background-color: #81c784; }

.flavor-kulfa .flavor-top { background: linear-gradient(135deg, #efebe9, #d7ccc8); }
.flavor-kulfa .flavor-scoop { background-color: #f3e9dc; }

.flavor-mango .flavor-top { background: linear-gradient(135deg, #fff8e1, #ffecb3); }
.flavor-mango .flavor-scoop { background-color: #ffd54f; }

.flavor-chocolate .flavor-top { background: linear-gradient(135deg, #efebe9, #bcaaa4); }
.flavor-chocolate .flavor-scoop { background-color: #8d6e63; }

.flavor-strawberry .flavor-top { background: linear-gradient(135deg, #F4F6F9, #e0e8f2); }
.flavor-strawberry .flavor-scoop { background-color: #f06292; }

.flavor-oreo .flavor-top { background: linear-gradient(135deg, #f5f5f5, #e0e0e0); }
.flavor-oreo .flavor-scoop { background-color: #cfd8dc; }

.flavor-banana .flavor-top { background: linear-gradient(135deg, #fffde7, #fff9c4); }
.flavor-banana .flavor-scoop { background-color: #fdd835; }

.flavor-coffee .flavor-top { background: linear-gradient(135deg, #efebe9, #bcaaa4); }
.flavor-coffee .flavor-scoop { background-color: #a1887f; }

/* Flavor bottom info */
.flavor-info {
  padding: 18px 20px 22px;
  text-align: center;
}

.flavor-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.flavor-info .flavor-tag {
  font-size: 0.78rem;
  color: var(--gray-light);
  font-weight: 500;
}

/* Admin note under flavors */
.admin-note {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
  background: linear-gradient(135deg, rgba(36,86,166,0.08), rgba(167,196,232,0.1));
  border: 2px dashed rgba(36,86,166,0.35);
  border-radius: var(--radius);
  padding: 18px 26px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
}

.admin-note .admin-note-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.admin-note strong {
  color: var(--primary);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════
   MORE TO ENJOY
   ══════════════════════════════════════════════════ */
#more { background: var(--bg-primary); }

.enjoy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.enjoy-card {
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.enjoy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.enjoy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.enjoy-card:hover::before { opacity: 1; }

.enjoy-card .enjoy-visual {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}

.enjoy-card:hover .enjoy-visual { transform: scale(1.1) rotate(-5deg); }

.enjoy-shakes .enjoy-visual { background: linear-gradient(135deg, #F4F6F9, #e0e8f2); }
.enjoy-falooda .enjoy-visual { background: linear-gradient(135deg, #e8eef5, #d0ddef); }
.enjoy-greentea .enjoy-visual { background: linear-gradient(135deg, #d4e8d0, #b8d4b0); }
.enjoy-kashmiri .enjoy-visual { background: linear-gradient(135deg, #F4F6F9, #A7C4E8); }

.enjoy-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.enjoy-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.enjoy-card .price-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(36,86,166,0.08);
  padding: 6px 14px;
  border-radius: 50px;
}

.enjoy-card .season-tag {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4a6fa5;
  background: rgba(74,111,165,0.1);
  padding: 6px 14px;
  border-radius: 50px;
  text-align: center;
}

/* ══════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════ */
#gallery {
   background: linear-gradient(180deg, #FFFFFF 0%, #F4F6F9 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.gallery-item.gi-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36,86,166,0.82) 0%, rgba(36,86,166,0.4) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
  opacity: 0;
  transition: var(--transition);
  color: white;
}

.gallery-overlay .go-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

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

/* ══════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════ */
#about { background: var(--bg-primary); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.about-text > p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Rating Card */
.rating-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.rating-card .rc-score {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.rating-card .rc-details .rc-stars {
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 2px;
}

.rating-card .rc-details .rc-count {
  font-size: 0.82rem;
  color: var(--gray-light);
}

/* Feature Tags */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-secondary);
  border: 1px solid rgba(36,86,166,0.08);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}

.about-tag:hover { background: var(--accent-light); }

/* About Visual Card */
.about-visual {
  display: flex;
  justify-content: center;
}

.about-hero-card {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
   background: linear-gradient(145deg, var(--primary), var(--primary-dark), #1a3f7a);
  box-shadow: 0 24px 60px rgba(36,86,166,0.3);
}

.about-hero-card .ahc-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-hero-card .ahc-content { position: relative; z-index: 1; }
.about-hero-card .ahc-icon { font-size: 4.5rem; margin-bottom: 20px; display: block; }
.about-hero-card h3 { font-size: 1.8rem; margin-bottom: 10px; color: white; }
.about-hero-card p { font-size: 1rem; opacity: 0.85; line-height: 1.7; }

/* ══════════════════════════════════════════════════
   OPENING HOURS
   ══════════════════════════════════════════════════ */
#hours {
  position: relative;
  overflow: hidden;
   background: linear-gradient(180deg, #FFFFFF 0%, #F4F6F9 45%, #e8eef5 100%);
}

/* ── Floating decorations ── */
.hours-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hb-emoji {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.16;
  filter: blur(0.5px);
  will-change: transform;
}

.hb-1 { top: 8%;  left: 5%;  animation: floatY 7s ease-in-out infinite; }
.hb-2 { top: 22%; right: 7%; animation: floatY 8s ease-in-out 1s infinite; }
.hb-3 { top: 62%; left: 4%;  animation: floatY 9s ease-in-out 2s infinite; }
.hb-4 { bottom: 10%; right: 5%; animation: floatY 7.5s ease-in-out 0.5s infinite; }
.hb-5 { top: 45%; left: 10%; animation: floatY 8.5s ease-in-out 1.5s infinite; }
.hb-6 { bottom: 22%; left: 20%; animation: floatY 6.5s ease-in-out 2.5s infinite; }

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-26px) rotate(8deg); }
}

#hours > .container { position: relative; z-index: 1; }

/* ── Day pills ── */
.day-pills {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto 48px;
  max-width: 700px;
}

.day-pills li {
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  cursor: default;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.day-pills li.today {
  color: #fff;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 8px 22px rgba(36,86,166,0.35);
  transform: translateY(-3px) scale(1.06);
}

/* ── Cards ── */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.hours-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 52px 32px 44px;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
    linear-gradient(90deg, var(--accent), var(--primary), var(--accent-dark), var(--accent)) border-box;
  background-size: 100% 100%, 300% 100%;
  animation: borderFlow 6s linear infinite;
  box-shadow: var(--shadow);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

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

@keyframes borderFlow {
  0%   { background-position: 0 0, 0% 0; }
  100% { background-position: 0 0, 300% 0; }
}

.hours-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(340px 180px at 20% 0%, rgba(167,196,232,0.14), transparent 60%),
    radial-gradient(340px 200px at 85% 110%, rgba(36,86,166,0.12), transparent 60%);
  pointer-events: none;
}

.hc-blob {
  position: absolute;
  top: -22px;
  right: -10px;
  font-size: 3.4rem;
  opacity: 0.35;
  animation: blobBob 5s ease-in-out infinite;
  pointer-events: none;
}

.hours-weekend .hc-blob { animation-delay: 1.2s; }

@keyframes blobBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(14deg); }
}

.hours-icon {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 22px;
  animation: iconBob 3.5s ease-in-out infinite;
}

.hours-weekday .hours-icon { background: rgba(36,86,166,0.1); }
.hours-weekend .hours-icon { background: rgba(167,196,232,0.25); }

@keyframes iconBob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-7px) rotate(3deg); }
}

.hours-days {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.hours-days span {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hours-time {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  font-variant-numeric: tabular-nums;
}

.hours-time .ht-1,
.hours-time .ht-2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--dark-mid);
}

.hours-time b {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
}

.hours-time i {
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-light);
}

.hours-badge {
  position: relative;
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours-weekday .hours-badge { background: rgba(36,86,166,0.1); color: var(--primary); }
.hours-weekend .hours-badge { background: rgba(167,196,232,0.25); color: #2456A6; }

.hc-shine {
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-20deg);
  animation: shineSweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

.hours-weekend .hc-shine { animation-delay: 2.7s; }

@keyframes shineSweep {
  0%, 55% { left: -80%; }
  85%, 100% { left: 140%; }
}

/* ══════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════ */
#contact {
   background: linear-gradient(180deg, #F4F6F9 0%, #FFFFFF 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 28px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-row:last-child { margin-bottom: 0; }

.contact-row .cr-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-row .cr-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-row .cr-info p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
}

.map-label {
  padding: 16px 24px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}

.map-label .ml-dot {
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

.map-wrap iframe {
  flex: 1;
  width: 100%;
  min-height: 380px;
  border: none;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .fb-name {
  font-family: 'Lobster', cursive;
  font-size: 1.5rem;
  font-weight: normal;
  color: white;
  margin-bottom: 6px;
}

.footer-brand .fb-name span { color: var(--accent); }

.footer-brand .fb-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--accent-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-brand > p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════════════════
   SCROLL-TO-TOP
   ══════════════════════════════════════════════════ */
.to-top {
  position: fixed;
  bottom: 26px; left: 26px;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(36,86,166,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 900;
}

.to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(36,86,166,0.4);
}

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="left"].revealed {
  transform: translateX(0);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="right"].revealed {
  transform: translateX(0);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal="scale"].revealed {
  transform: scale(1);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — COMPLETE MOBILE OVERHAUL
   ══════════════════════════════════════════════════ */

/* ── TABLET LANDSCAPE (max 1024px) ── */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-shot { width: min(360px, 90vw); }
  .hero-visual .orbit-item { width: 46px; height: 46px; font-size: 1.2rem; }
  .hero-visual .oi-1 { top: -12px; right: 6%; }
  .hero-visual .oi-2 { top: 55%; left: -12px; }
  .hero-visual .oi-3 { bottom: -12px; right: 22%; }

  .about-layout { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .flavors-grid { grid-template-columns: repeat(3, 1fr); }
  .enjoy-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .reviews-track { gap: 20px; }
  .review-card { width: 320px; }
  .rev-nav { width: 42px; height: 42px; font-size: 1rem; }
}

/* ── TABLET PORTRAIT (max 768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .navbar { height: 68px; }

  /* Sections */
  section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.8rem; }
  .section-header p { font-size: 0.95rem; }
  .section-header .overline { font-size: 0.72rem; }

  /* Hours */
  .hours-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hours-card { padding: 36px 18px 30px; }
  .hours-days { font-size: 1.1rem; }
  .hours-time .ht-1, .hours-time .ht-2 { font-size: 1.6rem; }
  .hours-icon { width: 64px; height: 64px; font-size: 1.7rem; border-radius: 18px; }

  /* Hero */
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .page-hero { padding: 100px 0 50px; }
  .hero-shot { width: min(300px, 88vw); }
  .hero-visual .orbit-item { width: 40px; height: 40px; font-size: 1.05rem; border-radius: 12px; }
  .hs-card { font-size: 0.75rem; padding: 10px 13px; }
  .hs-price { left: -12px; }
  .hs-rating { right: -12px; bottom: 84px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-tagline { font-size: 1.1rem; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-pill { font-size: 0.75rem; padding: 6px 14px; margin-bottom: 18px; }
  .hero-stat .stat-num { font-size: 1.3rem; }

  /* Menu */
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .menu-card { padding: 16px 16px; gap: 10px; }
  .menu-card .mc-num { font-size: 1.2rem; min-width: 22px; }
  .menu-card .mc-name { font-size: 0.82rem; }
  .menu-card .mc-price { font-size: 0.92rem; padding: 3px 10px; }
  .cat-header { gap: 12px; margin-bottom: 20px; }
  .cat-header .cat-badge { width: 44px; height: 44px; font-size: 1.2rem; border-radius: 13px; }
  .cat-header h3 { font-size: 1.15rem; }
  .cat-header .cat-sub { font-size: 0.75rem; }
  .menu-category { margin-bottom: 44px; }

  /* Flavors */
  .flavors-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .flavor-top { height: 130px; }
  .flavor-info { padding: 14px 16px 18px; }
  .flavor-info h4 { font-size: 0.95rem; }
  .flavor-info .flavor-tag { font-size: 0.72rem; }

  /* More to Enjoy */
  .enjoy-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .enjoy-card { padding: 28px 18px; }
  .enjoy-card .enjoy-visual { width: 56px; height: 56px; font-size: 1.6rem; border-radius: 16px; margin-bottom: 14px; }
  .enjoy-card h4 { font-size: 1rem; }
  .enjoy-card p { font-size: 0.82rem; margin-bottom: 10px; }
  .enjoy-card .price-note { font-size: 0.72rem; padding: 4px 10px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    gap: 14px;
  }
  .gallery-item.gi-tall { grid-row: span 1; }

  /* About */
  .about-text h3 { font-size: 1.5rem; }
  .about-text > p { font-size: 0.9rem; margin-bottom: 20px; }
  .rating-card { padding: 16px 20px; gap: 12px; }
  .rating-card .rc-score { font-size: 2rem; }
  .about-hero-card { max-width: 100%; padding: 40px 28px; }
  .about-hero-card .ahc-icon { font-size: 3.5rem; }
  .about-hero-card h3 { font-size: 1.4rem; }

  /* Contact */
  .contact-card { padding: 32px 24px; }
  .contact-card h3 { font-size: 1.2rem; margin-bottom: 20px; }
  .contact-row { gap: 12px; margin-bottom: 20px; }
  .contact-row .cr-icon { width: 42px; height: 42px; font-size: 1rem; border-radius: 12px; }
  .contact-row .cr-info h4 { font-size: 0.82rem; }
  .contact-row .cr-info p { font-size: 0.85rem; }
  .contact-actions { gap: 10px; margin-top: 24px; }
  .contact-actions .btn { padding: 12px 22px; font-size: 0.85rem; }
  .map-wrap iframe { min-height: 280px; }

  /* Reviews */
  .reviews-viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  }
  .reviews-track { gap: 16px; }
  .review-card { width: 280px; padding: 24px 22px; }
  .rev-dots { margin-top: 16px; }

  /* Footer */
  .footer { padding-top: 60px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand .fb-name { font-size: 1.2rem; }
  .footer-col h4 { font-size: 0.82rem; margin-bottom: 12px; }
  .footer-col a { font-size: 0.85rem; padding: 4px 0; }
  .footer-bottom { padding: 18px 0; font-size: 0.78rem; }
}

/* ── MOBILE LANDSCAPE (max 576px) ── */
@media (max-width: 576px) {
  .hero-content h1 { font-size: 1.9rem; }
  .hero-shot { width: min(260px, 85vw); border-radius: 30px; }
  .hero-shot img { border-radius: 30px; }
  .hero-visual .orbit-item { width: 36px; height: 36px; font-size: 0.95rem; border-radius: 10px; }
  .hs-card { font-size: 0.7rem; padding: 8px 11px; border-radius: 12px; }
  .hs-price { left: -8px; }
  .hs-rating { right: -8px; bottom: 70px; }
  .hs-fresh { left: 16px; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { padding: 14px 16px; }

  .flavors-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .flavor-top { height: 110px; }
  .flavor-info { padding: 10px 12px 14px; }
  .flavor-info h4 { font-size: 0.88rem; }
  .flavor-info .flavor-tag { font-size: 0.68rem; }

  .enjoy-grid { grid-template-columns: 1fr; gap: 10px; }
  .enjoy-card { padding: 12px 14px; display: flex; flex-direction: row; text-align: left; align-items: center; gap: 14px; }
  .enjoy-card::before { height: 100%; width: 3px; background: linear-gradient(180deg, var(--primary), var(--accent)); }
  .enjoy-card .enjoy-visual { margin-bottom: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 1.35rem; border-radius: 14px; }
  .enjoy-card .enjoy-body { flex: 1; min-width: 0; }
  .enjoy-card h4 { font-size: 0.95rem; margin-bottom: 2px; }
  .enjoy-card p { font-size: 0.76rem; margin-bottom: 6px; line-height: 1.4; }
  .enjoy-card .price-note { font-size: 0.68rem; padding: 3px 10px; }
  .enjoy-card .season-tag { display: inline-flex; margin: 0 0 0 8px; padding: 3px 10px; font-size: 0.66rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; gap: 10px; }

  .hours-grid { grid-template-columns: 1fr; gap: 14px; }
  .hours-card { padding: 34px 20px 30px; }
  .day-pills { gap: 7px; margin-bottom: 34px; }
  .day-pills li { padding: 7px 12px; font-size: 0.72rem; }
  .hours-time .ht-1, .hours-time .ht-2 { font-size: 1.55rem; }
  .hb-emoji { font-size: 1.8rem; }

  .reviews-viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  }
  .reviews-track { gap: 14px; }
  .review-card { width: 260px; padding: 22px 18px; border-radius: 20px; }
  .rev-nav { width: 38px; height: 38px; font-size: 0.95rem; top: 36%; }
  .rev-prev { left: 0; }
  .rev-next { right: 0; }

  .contact-layout { gap: 20px; }
  .contact-card { padding: 24px 18px; }

  .about-hero-card { padding: 32px 22px; }
  .about-hero-card .ahc-icon { font-size: 3rem; }
  .about-hero-card h3 { font-size: 1.25rem; }
  .about-hero-card p { font-size: 0.88rem; }

  .to-top { width: 42px; height: 42px; bottom: 20px; left: 20px; border-radius: 12px; font-size: 1rem; }
  .fab-wrap { bottom: 22px; right: 18px; }
  .fab-toggle { width: 50px; height: 50px; }
  .fab-act { width: 44px; height: 44px; }
}

/* ── MOBILE PORTRAIT (max 420px) ── */
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  section { padding: 50px 0; }

  /* Hero */
  .hero { padding-top: 80px; padding-bottom: 40px; }
  .page-hero { padding: 90px 0 40px; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero > p { font-size: 0.95rem; }
  .hero-pill { font-size: 0.7rem; padding: 5px 12px; margin-bottom: 14px; }
  .hero-content h1 { font-size: 1.7rem; }
  .hero-tagline { font-size: 1rem; margin-bottom: 12px; }
  .hero-desc { font-size: 0.88rem; line-height: 1.65; margin-bottom: 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { justify-content: center; padding: 13px 20px; }
  .hero-stats { gap: 0; flex-wrap: wrap; justify-content: center; }
  .hero-stat { padding: 0 16px; }
  .hero-stat:not(:last-child)::after { display: none; }
  .hero-stat .stat-num { font-size: 1.2rem; }
  .hero-stat .stat-label { font-size: 0.7rem; }

  .hero-shot { width: min(280px, 90vw); }
  .hs-card { font-size: 0.72rem; padding: 9px 12px; border-radius: 13px; }
  .hero-visual .orbit-item { width: 32px; height: 32px; font-size: 0.9rem; border-radius: 9px; }
  .hero-visual .oi-1 { top: -10px; right: 4%; }
  .hero-visual .oi-2 { top: 55%; left: -8px; }
  .hero-visual .oi-3 { bottom: -10px; right: 20%; }
  .sprinkles span { width: 5px; height: 12px; }

  .hero-stat { padding: 0 14px; }
  .hero-stat .stat-num { font-size: 1.2rem; }
  .hero-stat .stat-label { font-size: 0.7rem; }

  /* Section headers */
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: 0.85rem; }

  /* Menu */
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { padding: 14px 16px; }
  .menu-card .mc-name { font-size: 0.85rem; }
  .menu-card .mc-price { font-size: 0.9rem; }

  /* Flavors */
  .flavors-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .flavor-top { height: 100px; }
  .flavor-info { padding: 8px 10px 12px; }
  .flavor-info h4 { font-size: 0.82rem; }
  .flavor-info .flavor-tag { font-size: 0.64rem; display: none; }

  /* More to Enjoy */
  .enjoy-card { padding: 10px 12px; gap: 12px; }
  .enjoy-card .enjoy-visual { width: 42px; height: 42px; font-size: 1.2rem; }
  .enjoy-card h4 { font-size: 0.86rem; }
  .enjoy-card p { font-size: 0.72rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; gap: 10px; }

  /* Hours */
  .day-pills { gap: 6px; margin-bottom: 28px; }
  .day-pills li { padding: 6px 10px; font-size: 0.68rem; }
  .hours-card { padding: 28px 16px 24px; }
  .hours-icon { width: 56px; height: 56px; font-size: 1.5rem; border-radius: 16px; margin-bottom: 16px; }
  .hours-days { font-size: 1.05rem; margin-bottom: 12px; }
  .hours-time .ht-1, .hours-time .ht-2 { font-size: 1.35rem; }
  .hours-time { gap: 7px; margin-bottom: 16px; }
  .hc-blob { font-size: 2.6rem; }

  /* Reviews */
  .reviews-viewport { padding: 6px 0 10px; }
  .reviews-track { gap: 12px; }
  .review-card { width: 245px; padding: 20px 18px; }
  .rev-dots { gap: 6px; margin-top: 14px; }
  .rev-dots button { width: 8px; height: 8px; }
  .rev-dots button.active { width: 22px; }
  .rev-nav { width: 34px; height: 34px; font-size: 0.85rem; }
  .rev-prev { left: -2px; }
  .rev-next { right: -2px; }
  .rev-stars { font-size: 0.95rem; margin-bottom: 10px; }
  .rev-text { font-size: 0.85rem; margin-bottom: 16px; }
  .rev-avatar { width: 36px; height: 36px; font-size: 0.9rem; }
  .rev-author h4 { font-size: 0.85rem; }
  .rev-author span { font-size: 0.7rem; }

  /* About */
  .about-layout { gap: 30px; }
  .rating-card { flex-wrap: wrap; justify-content: center; text-align: center; width: 100%; }
  .about-tags { justify-content: center; }
  .about-tag { font-size: 0.8rem; padding: 8px 14px; }

  /* Contact */
  .contact-card { padding: 20px 16px; }
  .contact-row .cr-info h4 { font-size: 0.78rem; }
  .contact-row .cr-info p { font-size: 0.82rem; }
  .contact-actions { flex-direction: column; }
  .contact-actions .btn { justify-content: center; width: 100%; }
  .map-wrap iframe { min-height: 240px; }

  /* Footer */
  .footer-top { gap: 24px; padding-bottom: 32px; }
  .footer-brand .fb-name { font-size: 1.1rem; }
  .footer-brand .fb-tagline { font-size: 0.85rem; }
  .footer-brand > p { font-size: 0.82rem; }
  .footer-col { display: flex; flex-direction: column; gap: 2px; }
}

/* ── VERY SMALL SCREENS (max 360px) ── */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero-content h1 { font-size: 1.5rem; }
  .hero-shot { width: min(220px, 90vw); }
  .hero-visual .orbit-item { width: 26px; height: 26px; font-size: 0.7rem; border-radius: 7px; }
  .hs-card { font-size: 0.65rem; padding: 7px 10px; }
  .sprinkles span { display: none; }

  .flavors-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .flavor-top { height: 90px; }

  .menu-card { padding: 12px 14px; }
  .menu-card .mc-name { font-size: 0.8rem; }
  .menu-card .mc-price { font-size: 0.82rem; }

  .enjoy-card { padding: 14px 12px; }
  .enjoy-card h4 { font-size: 0.82rem; }

  .gallery-grid { grid-auto-rows: 160px; }

  .hours-days { font-size: 0.98rem; }
  .hours-time .ht-1, .hours-time .ht-2 { font-size: 1.25rem; }
  .hours-time b { font-size: 0.75rem; }
  .review-card { width: 224px; padding: 18px 16px; }
  .rev-text { font-size: 0.82rem; }
  .rev-avatar { width: 34px; height: 34px; font-size: 0.85rem; }
  .rev-author h4 { font-size: 0.82rem; }
  .flavors-page .flavors-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
}

/* ── LANDSCAPE ORIENTATION ON MOBILE ── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: 80px; padding-bottom: 30px; }
  .hero .container { flex-direction: row; gap: 30px; align-items: center; }
  .hero-content { order: 1; text-align: left; }
  .hero-visual { order: 2; }
  .hero-desc { margin: 0 0 20px; }
  .hero-actions { justify-content: flex-start; }
  .hero-stats { justify-content: flex-start; }
  .hero-shot { width: min(200px, 60vw); }
  .hero-visual .orbit-item { display: none; }
  .hero-content h1 { font-size: 1.8rem; }
  section { padding: 40px 0; }
}

/* ── SAFE AREA FOR NOTCH DEVICES ── */
@supports (padding: env(safe-area-inset-top)) {
  .navbar { padding-top: env(safe-area-inset-top); }
  .footer { padding-bottom: env(safe-area-inset-bottom); }
}

/* ── HOVER MEDIA QUERY — DISABLE HOVER EFFECTS ON TOUCH ── */
@media (hover: none) {
  .menu-card:hover { transform: none; box-shadow: none; }
  .flavor-card:hover { transform: none; box-shadow: var(--shadow); }
  .enjoy-card:hover { transform: none; box-shadow: none; }
  .gallery-item:hover { transform: none; }
  .gallery-item:hover .gallery-overlay { opacity: 0; }
  .gallery-item:hover img { transform: none; }
  .to-top:hover { transform: none; }
  .btn:hover { transform: none; }
  .nav-brand:hover .brand-icon { transform: none; }
}

/* ── TOUCH DEVICE — SHOW GALLERY OVERLAY BY DEFAULT ── */
@media (hover: none) and (pointer: coarse) {
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(36,86,166,0.7) 0%, transparent 60%);
  }
}