/* ═══════════════════════════════════════════════════════
   YUGEN JAPANESE RESTAURANT — style.css
   ─────────────────────────────────────────────────────
   Architecture:
   01. CSS Custom Properties (Design Tokens)
   02. Reset & Base
   03. Typography
   04. Utilities & Layout
   05. Components: Buttons, Badges
   06. Page Loader
   07. Navigation / Header
   08. Hero Section
   09. Search Panel (Glassmorphism)
   10. Featured Bowls Section
   11. Bowl 3D Card
   12. Popular Categories
   13. Why Choose Us
   14. Chef Recommendation
   15. Testimonials Slider
   16. Reservation Banner
   17. Footer
   18. Back-to-top
   19. Scroll Animations
   20. Responsive Breakpoints
   ═══════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────
   01. CSS CUSTOM PROPERTIES
   ───────────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --clr-primary:     #B22222;
  --clr-primary-dk:  #8B0000;
  --clr-primary-lt:  #D44444;
  --clr-secondary:   #F5E6CA;
  --clr-accent:      #D4AF37;
  --clr-accent-dk:   #B8960C;
  --clr-bg:          #FAFAFA;
  --clr-dark:        #1E1E1E;
  --clr-dark-2:      #2A2A2A;
  --clr-dark-3:      #3A3A3A;
  --clr-text:        #3D3D3D;
  --clr-text-muted:  #777777;
  --clr-border:      #E8E0D5;
  --clr-white:       #FFFFFF;

  /* Typography */
  --font-body:    'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Sizing */
  --radius-sm:  8px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --radius-xl:  40px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-sm:  0 4px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.12);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.14);
  --shadow-card: 0 6px 30px rgba(0,0,0,0.09);

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:   0.18s;
  --dur-base:   0.32s;
  --dur-slow:   0.55s;

  /* Spacing */
  --section-pt: 7rem;
  --section-pb: 7rem;
  --container:  1320px;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  outline: none;
}

address {
  font-style: normal;
}

/* Focus ring — accessibility */
:focus-visible {
  outline: 3px solid var(--clr-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::-webkit-scrollbar        { width: 6px; }
::-webkit-scrollbar-track  { background: var(--clr-bg); }
::-webkit-scrollbar-thumb  { background: var(--clr-primary); border-radius: 3px; }


/* ─────────────────────────────────────────────────────
   03. TYPOGRAPHY
   ───────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--clr-dark);
}

.text-accent  { color: var(--clr-accent); }
.text-primary { color: var(--clr-primary); }
.text-muted   { color: var(--clr-text-muted); }


/* ─────────────────────────────────────────────────────
   04. UTILITIES & LAYOUT
   ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 2rem;
}

.section {
  padding-top:    var(--section-pt);
  padding-bottom: var(--section-pb);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: rgba(178, 34, 34, 0.08);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-desc {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.desktop-only { display: initial; }
.mobile-only  { display: none; }


/* ─────────────────────────────────────────────────────
   05. BUTTONS
   ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              background var(--dur-base), color var(--dur-base),
              border-color var(--dur-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-sm  { font-size: 0.8rem;  padding: 0.55rem 1.25rem; }
.btn-lg  { font-size: 1rem;    padding: 0.9rem  2.2rem; }

.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 4px 18px rgba(178, 34, 34, 0.35);
}
.btn-primary:hover {
  background: var(--clr-primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(178, 34, 34, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-dark);
  border: 2px solid var(--clr-border);
}
.btn-ghost:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255,255,255,0.15);
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-light:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

/* Ripple effect */
.btn-ripple::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  width: 200%;
  padding-top: 200%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255,255,255,0.25);
  transition: transform 0.55s, opacity 0.55s;
  opacity: 1;
}
.btn-ripple:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: 0s;
}


/* ─────────────────────────────────────────────────────
   06. PAGE LOADER
   ───────────────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.loader-kanji {
  font-size: 5rem;
  color: var(--clr-accent);
  animation: loaderPulse 1.5s ease-in-out infinite alternate;
}
@keyframes loaderPulse {
  from { opacity: 0.5; transform: scale(0.92); }
  to   { opacity: 1;   transform: scale(1.04); }
}

.loader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  border-radius: 2px;
  animation: loaderFill 1.4s var(--ease) forwards;
}
@keyframes loaderFill {
  from { width: 0%; }
  to   { width: 100%; }
}

.loader-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}


/* ─────────────────────────────────────────────────────
   07. NAVIGATION / HEADER
   ───────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--dur-base), box-shadow var(--dur-base), padding var(--dur-base);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.4rem 2rem;
  transition: padding var(--dur-base);
}
.site-header.scrolled .navbar { padding-top: 0.9rem; padding-bottom: 0.9rem; }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo-icon {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--clr-white);
  transition: color var(--dur-base);
}
.site-header.scrolled .logo-text { color: var(--clr-dark); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--dur-base);
  position: relative;
}
.site-header.scrolled .nav-link { color: var(--clr-text-muted); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.nav-link:hover { color: var(--clr-white); }
.site-header.scrolled .nav-link:hover { color: var(--clr-primary); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--clr-white); }
.site-header.scrolled .nav-link.active { color: var(--clr-primary); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-actions .btn-outline {
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.5);
}
.site-header.scrolled .nav-actions .btn-outline {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger-bar {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--dur-base), opacity var(--dur-base), background var(--dur-base);
}
.site-header.scrolled .hamburger-bar { background: var(--clr-dark); }
.hamburger.open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger-bar:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─────────────────────────────────────────────────────
   08. HERO SECTION
   ───────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px; /* nav height */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroPan 18s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.05) translateX(0); }
  to   { transform: scale(1.05) translateX(-2%); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(20, 8, 8, 0.65)   50%,
    rgba(10, 10, 10, 0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 4rem;
  padding-bottom: 9rem; /* space for search panel overflow */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--clr-accent);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title-accent {
  color: var(--clr-accent);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 2.75rem;
  max-width: 540px;
}

/* Hero stats bar */
.hero-stats {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.25rem 2rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}

.hero-stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}
.stat-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}


/* ─────────────────────────────────────────────────────
   09. SEARCH PANEL (GLASSMORPHISM)
   ───────────────────────────────────────────────────── */
.search-panel {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  overflow: hidden;
  max-width: 1120px;
}

/* Tabs */
.search-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.search-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 0.9rem 1rem;
  transition: all var(--dur-base);
  cursor: pointer;
  letter-spacing: 0.02em;
  background: transparent;
  border: none;
  position: relative;
}
.search-tab i { font-size: 1rem; }
.search-tab.active {
  color: var(--clr-white);
  background: rgba(255,255,255,0.1);
}
.search-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
}
.search-tab:hover:not(.active) { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.05); }

/* Search fields row */
.search-fields {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: background var(--dur-base);
  min-width: 0;
}
.search-field:hover { background: rgba(255,255,255,0.06); }
.search-field:focus-within { background: rgba(255,255,255,0.1); }

.search-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.3rem;
  cursor: pointer;
}
.search-label i { font-size: 0.9rem; color: var(--clr-accent); }

.search-input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--clr-white);
  width: 100%;
}
.search-input::placeholder { color: rgba(255,255,255,0.38); }
.search-input option { color: var(--clr-dark); background: var(--clr-white); }

/* Date input — hide native calendar icon, style custom */
.search-input[type="date"] { color-scheme: dark; }
.search-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8) opacity(0.4);
  cursor: pointer;
}

.search-select { cursor: pointer; }

.search-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  margin: 1rem 0;
  flex-shrink: 0;
}

/* CTA button inside search */
.search-cta {
  align-self: center;
  margin: 0.75rem 1rem 0.75rem 0.5rem;
  flex-shrink: 0;
  font-size: 0.82rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(178, 34, 34, 0.4);
}


/* ─────────────────────────────────────────────────────
   10. FEATURED BOWLS SECTION
   ───────────────────────────────────────────────────── */
.bowls-section {
  background: var(--clr-bg);
  /* extra top padding to clear the search panel overlap */
  padding-top: 5rem;
}

.bowl-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
  animation: floatHint 2.5s ease-in-out infinite alternate;
}
.bowl-hint i { font-size: 1.1rem; color: var(--clr-primary); }
@keyframes floatHint {
  from { transform: translateY(0); }
  to   { transform: translateY(-4px); }
}

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


/* ─────────────────────────────────────────────────────
   11. BOWL CARD + 3D INTERACTION
   ───────────────────────────────────────────────────── */
.bowl-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: visible; /* allow 3D shadow */
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease);
}
.bowl-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* Image wrapper — clip the image inside radius */
.bowl-card-image-wrap {
  position: relative;
  overflow: visible;
  padding: 1.25rem 1.25rem 0;
  background: transparent;
}

/* 3D scene wrapper — this is what we rotate */
.bowl-3d-scene {
  border-radius: var(--radius-md);
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1,1,1);
  will-change: transform;
  transition: transform 0.12s linear;
  cursor: grab;
  user-select: none;
  position: relative;
  background: var(--clr-secondary);
}
.bowl-3d-scene:active { cursor: grabbing; }

.bowl-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  pointer-events: none;
  display: block;
  transition: transform var(--dur-slow) var(--ease);
}

/* Specular highlight overlay — makes it feel 3D */
.bowl-shine {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0)    50%,
    rgba(0,0,0,0.06)       100%
  );
  pointer-events: none;
  transition: opacity var(--dur-base);
}

/* Dynamic shadow below bowl */
.bowl-shadow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.22) 0%, transparent 72%);
  border-radius: 50%;
  filter: blur(4px);
  transition: all 0.12s linear;
  pointer-events: none;
}

/* Card body */
.bowl-card-body {
  padding: 1.25rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bowl-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.bowl-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: rgba(178, 34, 34, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.fav-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-muted);
  transition: all var(--dur-base) var(--ease-spring);
  border: 1.5px solid var(--clr-border);
  font-size: 1rem;
}
.fav-btn:hover,
.fav-btn[aria-pressed="true"] {
  background: #FFF0F0;
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  transform: scale(1.18);
}

.bowl-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 0.45rem;
}

.bowl-desc {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 0.85rem;
  flex: 1;
}

.bowl-rating {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
}
.bowl-rating i { color: var(--clr-accent); font-size: 0.85rem; }
.rating-num {
  font-weight: 600;
  color: var(--clr-dark);
  margin-left: 0.3rem;
}
.rating-count { color: var(--clr-text-muted); }

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

.bowl-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-primary);
}


/* ─────────────────────────────────────────────────────
   12. POPULAR CATEGORIES
   ───────────────────────────────────────────────────── */
.categories-section {
  background: var(--clr-secondary);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease);
}
.category-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }

.category-img-wrap {
  position: absolute; inset: 0;
}
.category-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.category-card:hover .category-img { transform: scale(1.1); }

.category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,8,8,0.85) 0%,
    rgba(20,8,8,0.3)  50%,
    rgba(20,8,8,0.1)  100%
  );
  transition: background var(--dur-base);
}
.category-card:hover .category-overlay {
  background: linear-gradient(
    to top,
    rgba(178,34,34,0.88) 0%,
    rgba(178,34,34,0.3)  55%,
    rgba(20,8,8,0.1)     100%
  );
}

.category-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1rem;
  text-align: center;
}
.category-icon { font-size: 1.8rem; margin-bottom: 0.3rem; }
.category-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-white);
  display: block;
  margin-bottom: 0.15rem;
}
.category-count {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
}


/* ─────────────────────────────────────────────────────
   13. WHY CHOOSE US
   ───────────────────────────────────────────────────── */
.why-section { background: var(--clr-bg); }

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

.why-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--clr-border);
  transition: transform var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              border-color var(--dur-base);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(178, 34, 34, 0.25);
}

.why-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(178,34,34,0.12), rgba(212,175,55,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-primary);
  transition: background var(--dur-base), transform var(--dur-base) var(--ease-spring);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  color: var(--clr-white);
  transform: scale(1.1) rotate(-4deg);
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-dark);
}

.why-desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}


/* ─────────────────────────────────────────────────────
   14. CHEF RECOMMENDATION
   ───────────────────────────────────────────────────── */
.chef-section {
  background: linear-gradient(135deg, var(--clr-secondary) 0%, #FFF8EE 100%);
}

.chef-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.chef-image-col { position: relative; }

.chef-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.chef-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.chef-img-wrap:hover .chef-img { transform: scale(1.04); }

.chef-img-badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}
.chef-img-badge i { font-size: 0.9rem; }

.chef-content-col { display: flex; flex-direction: column; gap: 1.25rem; }

.chef-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--clr-text-muted);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--clr-accent);
  background: rgba(212,175,55,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.65;
}
.chef-quote cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--clr-accent);
  margin-top: 0.5rem;
  font-weight: 600;
}

.chef-dish-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--clr-dark);
}
.chef-dish-desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.chef-meta {
  display: flex; gap: 1.75rem;
}
.chef-meta-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: var(--clr-text-muted); font-weight: 500;
}
.chef-meta-item i { color: var(--clr-primary); font-size: 1rem; }

.ingredients-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.6rem;
}
.ingredients-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.ingredient-tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-primary);
  background: rgba(178, 34, 34, 0.08);
  border: 1px solid rgba(178, 34, 34, 0.18);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

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


/* ─────────────────────────────────────────────────────
   15. TESTIMONIALS
   ───────────────────────────────────────────────────── */
.testimonials-section { background: var(--clr-dark); }
.testimonials-section .section-tag { color: var(--clr-accent); background: rgba(212,175,55,0.12); }
.testimonials-section .section-title { color: var(--clr-white); }
.testimonials-section .section-desc { color: rgba(255,255,255,0.5); }

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.testimonial-card {
  min-width: calc(33.333% - 1rem);
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: background var(--dur-base), border-color var(--dur-base);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,175,55,0.25);
}

.testimonial-stars { display: flex; gap: 0.2rem; }
.testimonial-stars i { color: var(--clr-accent); font-size: 1rem; }

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex; align-items: center; gap: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1rem;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212,175,55,0.35);
}
.author-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-white);
}
.author-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.42);
}

/* Slider controls */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--dur-base) var(--ease-spring);
}
.slider-btn:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: scale(1.12);
}

.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background var(--dur-base), transform var(--dur-base);
}
.slider-dot.active {
  background: var(--clr-accent);
  transform: scale(1.3);
}


/* ─────────────────────────────────────────────────────
   16. RESERVATION BANNER
   ───────────────────────────────────────────────────── */
.reserve-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  text-align: center;
}

.reserve-bg {
  position: absolute; inset: 0;
}
.reserve-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.reserve-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(20,4,4,0.88) 0%,
    rgba(178,34,34,0.65) 100%
  );
}

.reserve-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.reserve-badge {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(212,175,55,0.2);
  border: 2px solid rgba(212,175,55,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--clr-accent);
  animation: floatBadge 3s ease-in-out infinite alternate;
}
@keyframes floatBadge {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

.reserve-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--clr-white);
  max-width: 700px;
  line-height: 1.15;
}

.reserve-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
}

.reserve-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.reserve-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.reserve-info i { color: var(--clr-accent); }
.info-dot { color: rgba(255,255,255,0.25); }


/* ─────────────────────────────────────────────────────
   17. FOOTER
   ───────────────────────────────────────────────────── */
.site-footer { background: #111111; }

.footer-top { padding: 5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.6fr;
  gap: 3.5rem;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 1.35rem;
}

/* Brand col */
.footer-brand { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-logo .logo-text { color: var(--clr-white); }
.footer-tagline {
  font-size: 0.78rem;
  color: var(--clr-accent);
  letter-spacing: 0.1em;
}
.footer-about {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  max-width: 320px;
}

.social-links { display: flex; gap: 0.65rem; margin-top: 0.25rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  transition: all var(--dur-base) var(--ease-spring);
}
.social-btn:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-3px) scale(1.1);
}

/* Nav links col */
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.42);
  transition: color var(--dur-base), padding-left var(--dur-base);
}
.footer-links a:hover { color: var(--clr-accent); padding-left: 4px; }

/* Hours col */
.footer-hours { display: flex; flex-direction: column; gap: 0.75rem; }
.hours-row {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hours-day {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.hours-time {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
}
.hours-row.closed .hours-time { color: rgba(178,34,34,0.6); }

/* Contact col */
.footer-contact { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.5rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  transition: color var(--dur-base);
}
.contact-item i { font-size: 1rem; color: var(--clr-accent); margin-top: 0.05rem; flex-shrink: 0; }
.contact-item:hover { color: rgba(255,255,255,0.72); }

/* Newsletter */
.newsletter-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}
.newsletter-form {
  display: flex;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: border-color var(--dur-base);
}
.newsletter-form:focus-within { border-color: rgba(212,175,55,0.45); }
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--clr-white);
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.28); }
.newsletter-btn {
  padding: 0.6rem 1rem;
  background: var(--clr-primary);
  color: var(--clr-white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-base);
}
.newsletter-btn:hover { background: var(--clr-accent); color: var(--clr-dark); }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  transition: color var(--dur-base);
}
.footer-legal a:hover { color: var(--clr-accent); }


/* ─────────────────────────────────────────────────────
   18. BACK TO TOP
   ───────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 800;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity var(--dur-base), visibility var(--dur-base),
              transform var(--dur-base) var(--ease-spring),
              background var(--dur-base);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--clr-accent);
  color: var(--clr-dark);
  transform: translateY(-4px);
}


/* ─────────────────────────────────────────────────────
   19. SCROLL ANIMATIONS
   ───────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grid children */
.bowls-grid .bowl-card.fade-up:nth-child(1) { transition-delay: 0.05s; }
.bowls-grid .bowl-card.fade-up:nth-child(2) { transition-delay: 0.13s; }
.bowls-grid .bowl-card.fade-up:nth-child(3) { transition-delay: 0.21s; }
.bowls-grid .bowl-card.fade-up:nth-child(4) { transition-delay: 0.05s; }
.bowls-grid .bowl-card.fade-up:nth-child(5) { transition-delay: 0.13s; }
.bowls-grid .bowl-card.fade-up:nth-child(6) { transition-delay: 0.21s; }

.why-grid .why-card.fade-up:nth-child(1) { transition-delay: 0.04s; }
.why-grid .why-card.fade-up:nth-child(2) { transition-delay: 0.10s; }
.why-grid .why-card.fade-up:nth-child(3) { transition-delay: 0.16s; }
.why-grid .why-card.fade-up:nth-child(4) { transition-delay: 0.22s; }
.why-grid .why-card.fade-up:nth-child(5) { transition-delay: 0.28s; }
.why-grid .why-card.fade-up:nth-child(6) { transition-delay: 0.34s; }

.categories-grid .category-card.fade-up:nth-child(1) { transition-delay: 0.04s; }
.categories-grid .category-card.fade-up:nth-child(2) { transition-delay: 0.10s; }
.categories-grid .category-card.fade-up:nth-child(3) { transition-delay: 0.16s; }
.categories-grid .category-card.fade-up:nth-child(4) { transition-delay: 0.22s; }
.categories-grid .category-card.fade-up:nth-child(5) { transition-delay: 0.28s; }
.categories-grid .category-card.fade-up:nth-child(6) { transition-delay: 0.34s; }


/* ─────────────────────────────────────────────────────
   20. RESPONSIVE BREAKPOINTS
   ───────────────────────────────────────────────────── */

/* ── Laptop 1024px ── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .chef-inner { gap: 3rem; }
  .chef-img { height: 480px; }
}

@media (max-width: 1080px) {
  .bowls-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid   { grid-template-columns: repeat(2, 1fr); }
  .search-fields { flex-wrap: wrap; }
  .search-field  { min-width: 160px; }
  .search-divider { display: none; }
}

/* ── Tablet 768px ── */
@media (max-width: 900px) {
  :root {
    --section-pt: 5rem;
    --section-pb: 5rem;
  }

  .nav-links  { display: none; }
  .nav-actions { display: none; }
  .hamburger  { display: flex; }

  /* Mobile nav drawer */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    z-index: 890;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    animation: navSlideIn 0.35s var(--ease);
  }
  @keyframes navSlideIn {
    from { opacity: 0; transform: translateX(100%); }
    to   { opacity: 1; transform: translateX(0); }
  }
  .nav-links.open .nav-link {
    font-size: 2rem;
    color: rgba(255,255,255,0.8);
    font-family: var(--font-display);
  }

  .chef-inner { grid-template-columns: 1fr; }
  .chef-image-col { order: 1; }
  .chef-content-col { order: 2; }
  .chef-img { height: 380px; }

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

  .hero-subtitle { display: block; }
  .desktop-only  { display: none; }

  .testimonial-card { min-width: calc(50% - 0.75rem); }

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

  .reserve-section { padding: 5rem 0; }
}

/* ── Mobile 480px ── */
@media (max-width: 600px) {
  .bowls-grid      { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }

  .search-fields { flex-direction: column; }
  .search-cta    { margin: 0 0.75rem 0.75rem; width: calc(100% - 1.5rem); justify-content: center; }
  .search-field  { min-width: unset; }

  .hero-title { font-size: 2.4rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .stat-dot   { display: none; }

  .testimonial-card { min-width: 100%; }

  .chef-meta    { flex-direction: column; gap: 0.75rem; }
  .chef-actions { flex-direction: column; }

  .reserve-actions { flex-direction: column; align-items: center; }
  .reserve-info    { flex-direction: column; gap: 0.5rem; }
  .info-dot        { display: none; }

  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-legal { flex-wrap: wrap; gap: 1rem; }

  .back-to-top { bottom: 1.25rem; right: 1.25rem; }
}

/* ── Large desktop 1440px+ ── */
@media (min-width: 1440px) {
  :root { --section-pt: 9rem; --section-pb: 9rem; }
  .bowls-grid { grid-template-columns: repeat(3, 1fr); }
}
