/* =========================================================
   1. RESET
========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: clip; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select { font: inherit; border: none; background: none; color: inherit; }
button { cursor: pointer; }
ul { list-style: none; }
input:focus-visible, button:focus-visible, a:focus-visible, select:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* =========================================================
   2. VARIABLES
========================================================= */
:root {
  --primary-color: #C9A24B;
  --primary-dark: #A8843A;
  --accent-red: #C1442B;
  --text-color: #E8E6DD;
  --text-muted: #A9B0A2;
  --heading-color: #F7F4EA;
  --background-color: #FFFFFF;
  --background-dark: #14261F;
  --background-dark-alt: #1B3128;
  --background-cream: #FBF7EE;
  --dark-text: #1E1E1A;
  --dark-text-muted: #6B6F63;
  --border-color: #2E4438;
  --border-color-light: #E5E0D0;
  --container-width: 1200px;
  --transition: 0.3s ease;
  --transition-smooth: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 4px;
  --radius-md: 10px;
  --shadow-card: 0 10px 28px rgba(20,38,31,0.12);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

/* =========================================================
   3. GLOBAL STYLES
========================================================= */
body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--background-color);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}
.section-heading { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-heading h2 { font-size: 2.4rem; margin-top: 10px; color: var(--dark-text); }
.section-label {
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.section-label--light { color: var(--primary-color); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 30px;
  transition: var(--transition-smooth);
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--primary-color); color: var(--background-dark); }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 12px 24px rgba(201,162,75,0.35); color: #fff; }
.btn--outline-light { background: transparent; border: 2px solid var(--text-color); color: var(--text-color); }
.btn--outline-light:hover { background: var(--primary-color); border-color: var(--primary-color); color: var(--background-dark); transform: translateY(-3px); }

/* =========================================================
   4. CONTAINER
========================================================= */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* =========================================================
   5. HEADER
========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(20,38,31,0.94);
  backdrop-filter: blur(8px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo__text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--heading-color);
}

.nav__list { display: flex; gap: 40px; }
.nav__link {
  position: relative;
  font-weight: 500;
  color: var(--text-muted);
  padding-bottom: 4px;
  transition: color var(--transition-smooth);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-smooth);
}
.nav__link:hover, .nav__link.active { color: var(--heading-color); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--heading-color);
  transition: var(--transition-smooth);
  border-radius: 50%;
}
.icon-btn:hover { background: rgba(201,162,75,0.15); color: var(--primary-color); transform: scale(1.12); }
.icon-btn:active { transform: scale(0.95); }

.badge-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--accent-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.badge-count.pulse { animation: badgePulse 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes badgePulse { 0% { transform: scale(1); } 40% { transform: scale(1.5); } 100% { transform: scale(1); } }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger span { width: 22px; height: 2px; background: var(--heading-color); transition: var(--transition-smooth); border-radius: 2px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search overlay */
.search-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--background-dark);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
  z-index: 600;
  pointer-events: none;
}
.search-overlay.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
.search-overlay__inner { display: flex; align-items: center; gap: 16px; padding-top: 22px; padding-bottom: 22px; }
.search-overlay__input {
  flex: 1;
  font-size: 1.1rem;
  padding: 10px 4px;
  border-bottom: 2px solid var(--border-color);
  color: var(--heading-color);
}
.search-overlay__input::placeholder { color: var(--text-muted); }
.search-overlay__input:focus { border-color: var(--primary-color); outline: none; }
.search-overlay .icon-btn { color: var(--heading-color); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--background-dark);
  z-index: 700;
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  box-shadow: -8px 0 24px rgba(0,0,0,0.3);
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav__list { display: flex; flex-direction: column; gap: 26px; }
.mobile-nav__link { font-size: 1.05rem; font-weight: 500; color: var(--text-muted); display: inline-block; transition: var(--transition-smooth); }
.mobile-nav.active .mobile-nav__link { animation: navLinkIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
.mobile-nav__list li:nth-child(1) .mobile-nav__link { animation-delay: 0.05s; }
.mobile-nav__list li:nth-child(2) .mobile-nav__link { animation-delay: 0.1s; }
.mobile-nav__list li:nth-child(3) .mobile-nav__link { animation-delay: 0.15s; }
.mobile-nav__list li:nth-child(4) .mobile-nav__link { animation-delay: 0.2s; }
.mobile-nav__list li:nth-child(5) .mobile-nav__link { animation-delay: 0.25s; }
.mobile-nav__list li:nth-child(6) .mobile-nav__link { animation-delay: 0.3s; }
.mobile-nav__list li:nth-child(7) .mobile-nav__link { animation-delay: 0.35s; }
@keyframes navLinkIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
.mobile-nav__link:hover { color: var(--primary-color); transform: translateX(6px); }

.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 650;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.overlay.active { opacity: 1; pointer-events: auto; }
.header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );

  opacity: 0.5;
}.logo__text {
  display: inline-block;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.logo__text:hover {
  transform: translateY(-2px);
  color: var(--primary-color);
  text-shadow: 0 0 16px rgba(201, 162, 75, 0.35);
}.nav__link {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.nav__link:hover {
  transform: translateY(-2px);
}

.nav__link::after {
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}.icon-btn {
  position: relative;
  overflow: visible;
}

.icon-btn::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.icon-btn:hover::before {
  border-color: rgba(201, 162, 75, 0.35);
  box-shadow: 0 0 14px rgba(201, 162, 75, 0.12);
}

.icon-btn:hover {
  transform: translateY(-2px) scale(1.08);
}.badge-count {
  box-shadow: 0 0 0 2px rgba(20, 38, 31, 0.95);
}

.badge-count.pulse {
  animation:
    badgePulse 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    badgeGlow 1.2s ease-in-out 0.4s;
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 0 0 2px rgba(20, 38, 31, 0.95);
  }

  50% {
    box-shadow:
      0 0 0 2px rgba(20, 38, 31, 0.95),
      0 0 12px rgba(201, 70, 61, 0.55);
  }
}.search-overlay {
  background: rgba(9, 28, 22, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.search-overlay__input {
  transition:
    border-color 0.3s ease,
    padding-left 0.3s ease;
}

.search-overlay__input:focus {
  padding-left: 10px;
}.search-overlay.active .search-overlay__input {
  animation: searchInputIn 0.5s ease-out both;
}

@keyframes searchInputIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}.hamburger {
  border-radius: 50%;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.hamburger:hover {
  background: rgba(201, 162, 75, 0.12);
  transform: scale(1.06);
}

.hamburger:hover span {
  background: var(--primary-color);
}.header {
  animation: headerEntrance 0.7s ease-out both;
}

@keyframes headerEntrance {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================================
   6. HERO
========================================================= */
.hero {
  position: relative;
  min-height: 640px;
  padding: 80px 0 60px;
  background: var(--background-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__decor { position: absolute; inset: 0; pointer-events: none; }
.hero__leaf { position: absolute; border-radius: 50% 0; background: var(--background-dark-alt); opacity: 0.6; }
.hero__leaf--1 { width: 240px; height: 240px; top: -60px; left: -60px; transform: rotate(20deg); }
.hero__leaf--2 { width: 180px; height: 180px; bottom: -40px; left: 8%; transform: rotate(-15deg); opacity: 0.4; }

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.hero__eyebrow {
  display: block;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.hero__title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 4.4rem;
  color: var(--heading-color);
  margin-bottom: 16px;
  line-height: 1.05;
}
.hero__tagline { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 32px; }
.hero__thumbs { display: flex; gap: 14px; }
.hero__thumb {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  opacity: 0.6;
}
.hero__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero__thumb:hover { opacity: 1; transform: translateY(-4px); }
.hero__thumb.active { border-color: var(--primary-color); opacity: 1; transform: scale(1.08); }

.hero__media { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__img {
  max-width: 480px;
  width: 100%;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
  animation: heroFloat 4s ease-in-out infinite;
  transition: opacity 0.3s ease;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
}

.hero__dots { display: none; }

/* =========================================================
   FEATURES STRIP
========================================================= */
.features { background: var(--primary-color); padding: 28px 0; }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.feature-item { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--background-dark); }
.feature-item i { font-size: 1.4rem; }
.feature-item span { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; }

/* =========================================================
   MENU
========================================================= */
.menu { position: relative; padding: 100px 0; background: var(--background-dark); overflow: hidden; }
.menu__decor { position: absolute; inset: 0; pointer-events: none; }
.menu__leaf { position: absolute; border-radius: 50% 0; background: var(--background-dark-alt); opacity: 0.5; }
.menu__leaf--1 { width: 200px; height: 200px; top: 40px; right: -60px; transform: rotate(30deg); }
.menu__leaf--2 { width: 150px; height: 150px; bottom: 60px; left: -50px; transform: rotate(-10deg); opacity: 0.35; }
.menu__leaf--3 { width: 100px; height: 100px; bottom: 200px; right: 10%; opacity: 0.3; }
.menu .section-heading h2 { color: var(--heading-color); }
.menu .section-label { color: var(--primary-color); }
.menu .container { position: relative; z-index: 2; }

.menu__categories { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.category-tab {
  padding: 11px 26px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  background: transparent;
}
.category-tab:hover { border-color: var(--primary-color); color: var(--primary-color); transform: translateY(-2px); }
.category-tab.active { background: var(--primary-color); color: var(--background-dark); border-color: var(--primary-color); transform: scale(1.05); }

.menu__toolbar { display: flex; justify-content: flex-end; margin-bottom: 36px; }
.sort { display: flex; align-items: center; gap: 10px; }
.sort__label { font-size: 0.9rem; color: var(--text-muted); }
.sort__select {
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--background-dark-alt);
  color: var(--heading-color);
}

.menu__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.menu__empty { text-align: center; padding: 60px 0; color: var(--text-muted); }

.menu-card {
  background: var(--background-dark-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.menu-card:hover { transform: translateY(-10px); box-shadow: 0 22px 40px rgba(0,0,0,0.35); }
.menu-card__media { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.menu-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.menu-card:hover .menu-card__media img { transform: scale(1.14); }
.menu-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent-red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 20px;
}
.menu-card__fav {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(20,38,31,0.6);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}
.menu-card__fav:hover, .menu-card__fav.active { background: var(--accent-red); }
.menu-card__fav.active i { animation: heartPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes heartPop { 0% { transform: scale(1); } 50% { transform: scale(1.4); } 100% { transform: scale(1); } }

.menu-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.menu-card__name { font-family: var(--font-heading); font-size: 1.05rem; color: var(--heading-color); }
.menu-card__desc { color: var(--text-muted); font-size: 0.82rem; }
.menu-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.menu-card__price { font-weight: 700; color: var(--primary-color); font-size: 1.05rem; }
.menu-card__add {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--background-dark);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-smooth);
}
.menu-card__add:hover { background: #fff; transform: scale(1.14) rotate(90deg); }
/* =========================================================
   MENU PREMIUM ENHANCEMENTS
========================================================= */

.menu {
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(201, 162, 75, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(255, 255, 255, 0.025),
      transparent 25%
    ),
    var(--background-dark);
}.menu__leaf--1 {
  animation: leafFloat1 8s ease-in-out infinite alternate;
}

.menu__leaf--2 {
  animation: leafFloat2 10s ease-in-out infinite alternate;
}

.menu__leaf--3 {
  animation: leafFloat3 7s ease-in-out infinite alternate;
}

@keyframes leafFloat1 {
  from {
    transform: rotate(30deg) translate(0, 0);
  }

  to {
    transform: rotate(36deg) translate(-15px, 12px);
  }
}

@keyframes leafFloat2 {
  from {
    transform: rotate(-10deg) translate(0, 0);
  }

  to {
    transform: rotate(-16deg) translate(18px, -10px);
  }
}

@keyframes leafFloat3 {
  from {
    transform: rotate(0deg) translate(0, 0);
  }

  to {
    transform: rotate(8deg) translate(-10px, 15px);
  }
}.category-tab {
  position: relative;
  overflow: hidden;
}

.category-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );

  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.category-tab:hover::before {
  transform: translateX(100%);
}.menu-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.045);
}

.menu-card:hover {
  border-color: rgba(201, 162, 75, 0.25);

  box-shadow:
    0 22px 40px rgba(0,0,0,0.35),
    0 0 25px rgba(201,162,75,0.06);
}.menu-card__media::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.12),
    transparent 35%,
    transparent 70%,
    rgba(0,0,0,0.15)
  );

  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.menu-card:hover .menu-card__media::after {
  opacity: 1;
}.menu-card__fav {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.1);
}

.menu-card__fav:hover {
  transform: scale(1.1);
}

.menu-card__fav.active {
  box-shadow: 0 0 15px rgba(201, 70, 61, 0.3);
}.menu-card__add {
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(201,162,75,0.15);
}

.menu-card__add::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;

  background: rgba(255,255,255,0.2);

  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.menu-card__add:hover::before {
  transform: translateY(0);
}
/* =========================================================
   ABOUT
========================================================= */
.about { padding: 100px 0; background: var(--background-cream); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--background-dark);
  color: var(--heading-color);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 16px 32px rgba(20,38,31,0.3);
}
.about__badge-num { font-family: var(--font-heading); font-size: 1.9rem; color: var(--primary-color); display: block; }
.about__badge-label { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.04em; }
.about__content h2 { font-size: 2.3rem; margin: 12px 0 18px; color: var(--dark-text); }
.about__content > p { color: var(--dark-text-muted); margin-bottom: 24px; }
.about__list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 14px; }
.about__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--dark-text); }
.about__list i { color: var(--primary-dark); background: rgba(201,162,75,0.15); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }
/* =========================================
   ABOUT PREMIUM EFFECTS
========================================= */

.about__media {
  transition: transform 0.5s ease;
}

.about__media:hover {
  transform: translateY(-6px);
}

.about__media img {
  transition: transform 0.6s ease;
}

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

.about__badge {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.about__media:hover .about__badge {
  transform: translate(-6px, -6px);
  box-shadow: 0 20px 40px rgba(20, 38, 31, 0.4);
}

.about__list li {
  transition: transform 0.3s ease;
}

.about__list li:hover {
  transform: translateX(6px);
}

.about__list i {
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.about__list li:hover i {
  transform: scale(1.12);
  background: rgba(201,162,75,0.25);
}
/* =========================================================
   PROMO BANNER
========================================================= */
.promo-banner { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.promo-banner__bg { position: absolute; inset: 0; }
.promo-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.promo-banner__bg::after { content:''; position:absolute; inset:0; background: rgba(20,38,31,0.78); }
.promo-banner__content { position: relative; z-index: 2; text-align: center; }
.promo-banner__content h2 { color: var(--heading-color); font-size: 2.4rem; margin: 14px 0 12px; font-style: italic; }
.promo-banner__content p { color: var(--text-muted); margin-bottom: 28px; }

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials { padding: 100px 0; background: var(--background-color); }
.testimonials__track-wrap { position: relative; display: flex; align-items: center; gap: 24px; }
.testimonials__track { flex: 1; overflow: hidden; }
.testimonials__slides { display: flex; transition: transform var(--transition-smooth); }
.testimonial-slide { min-width: 100%; display: flex; justify-content: center; }
.testimonial-card { max-width: 680px; text-align: center; padding: 40px; }
.testimonial-card__stars { color: var(--primary-color); margin-bottom: 20px; font-size: 0.95rem; }
.testimonial-card__quote { font-family: var(--font-heading); font-style: italic; font-size: 1.25rem; color: var(--dark-text); margin-bottom: 28px; line-height: 1.7; }
.testimonial-card__person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-card__person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial-card__name { font-weight: 700; color: var(--dark-text); }
.testimonial-card__role { font-size: 0.82rem; color: var(--dark-text-muted); }

.testi-nav {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-color-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-text);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}
.testi-nav:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; transform: scale(1.1); }

.testimonials__dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testimonials__dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--border-color-light); transition: var(--transition-smooth); }
.testimonials__dots button.active { background: var(--primary-color); width: 24px; border-radius: 4px; }

/* =========================================================
   GALLERY
========================================================= */
.gallery { padding: 100px 0; background: var(--background-cream); }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: pointer; transition: transform var(--transition-smooth), box-shadow var(--transition-smooth); }
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(20,38,31,0.18); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* =========================================================
   NEWSLETTER
========================================================= */
.newsletter { padding: 90px 0; text-align: center; background: var(--background-dark); }
.newsletter__inner h2 { font-size: 2.1rem; color: var(--heading-color); margin-bottom: 14px; font-style: italic; }
.newsletter__inner p { color: var(--text-muted); margin-bottom: 30px; }
.newsletter__form { display: flex; justify-content: center; gap: 12px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; }
.newsletter__input {
  flex: 1;
  min-width: 220px;
  padding: 15px 20px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  background: var(--background-dark-alt);
  color: var(--heading-color);
}
.newsletter__input::placeholder { color: var(--text-muted); }
.newsletter__input:focus { border-color: var(--primary-color); outline: none; }

/* =========================================================
   FOOTER
========================================================= */
.footer { padding: 72px 0 0; background: var(--background-dark); color: var(--text-muted); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; }
.footer__brand h3 { font-family: var(--font-body); font-weight: 800; letter-spacing: 0.06em; font-size: 1.4rem; margin-bottom: 16px; color: var(--heading-color); }
.footer__brand p { color: var(--text-muted); font-size: 0.9rem; }
.footer__col h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 18px; color: var(--heading-color); }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: var(--text-muted); font-size: 0.92rem; transition: var(--transition-smooth); }
.footer__col a:hover { color: var(--primary-color); padding-left: 4px; }
.footer__social { display: flex; gap: 14px; margin-bottom: 20px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-smooth);
}
.footer__social a:hover { background: var(--primary-color); border-color: var(--primary-color); color: var(--background-dark); transform: translateY(-4px) scale(1.1); }
.footer__hours { font-size: 0.85rem; }
.footer__bottom { border-top: 1px solid var(--border-color); padding: 24px 0; text-align: center; font-size: 0.85rem; }

/* =========================================================
   MODAL (Item Details)
========================================================= */
.modal { position: fixed; inset: 0; z-index: 900; display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0; transition: opacity var(--transition-smooth), visibility var(--transition-smooth); padding: 24px; }
.modal.active { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(20,38,31,0.7); backdrop-filter: blur(2px); }
.modal__dialog {
  position: relative;
  background: var(--background-cream);
  border-radius: var(--radius-md);
  max-width: 900px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(30px);
  transition: transform var(--transition-smooth);
}
.modal.active .modal__dialog { transform: scale(1) translateY(0); }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-smooth);
}
.modal__close:hover { transform: rotate(90deg) scale(1.1); background: var(--primary-color); color: #fff; }
.modal__content { display: grid; grid-template-columns: 1fr 1fr; }
.modal__img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: var(--radius-md) 0 0 var(--radius-md); }
.modal__info { padding: 40px; display: flex; flex-direction: column; gap: 14px; }
.modal__category { align-self: flex-start; background: var(--primary-color); color: var(--background-dark); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 5px 14px; border-radius: 20px; }
.modal__name { font-size: 1.7rem; color: var(--dark-text); }
.modal__desc { color: var(--dark-text-muted); }
.modal__price { font-size: 1.5rem; font-weight: 700; color: var(--primary-dark); }
.modal__qty { display: flex; align-items: center; gap: 14px; }
.modal__qty button { width: 34px; height: 34px; border: 1px solid var(--border-color-light); border-radius: 50%; font-size: 1rem; transition: var(--transition-smooth); }
.modal__qty button:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }
.modal__actions { margin-top: 12px; }
.modal__actions .btn { width: 100%; }

/* =========================================================
   CART DRAWER
========================================================= */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 90vw);
  height: 100vh;
  background: var(--background-cream);
  z-index: 800;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  box-shadow: -8px 0 24px rgba(0,0,0,0.2);
}
.cart-drawer.active { transform: translateX(0); }
.cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--border-color-light); }
.cart-drawer__header h3 { color: var(--dark-text); }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 18px; }
.cart-drawer__empty { color: var(--dark-text-muted); text-align: center; margin-top: 40px; }
.cart-item { display: flex; gap: 14px; align-items: center; animation: cartItemIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
@keyframes cartItemIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-item__info { flex: 1; }
.cart-item__name { font-weight: 600; font-size: 0.92rem; color: var(--dark-text); }
.cart-item__price { color: var(--dark-text-muted); font-size: 0.85rem; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item__qty button { width: 22px; height: 22px; border: 1px solid var(--border-color-light); border-radius: 4px; font-size: 0.8rem; transition: var(--transition-smooth); }
.cart-item__qty button:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; transform: scale(1.1); }
.cart-item__remove { color: var(--accent-red); font-size: 0.9rem; transition: var(--transition-smooth); }
.cart-item__remove:hover { transform: scale(1.2) rotate(90deg); }
.cart-drawer__footer { padding: 24px; border-top: 1px solid var(--border-color-light); }
.cart-drawer__total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 16px; color: var(--dark-text); font-size: 1.1rem; }
.cart-drawer__checkout { width: 100%; }
/* =========================================================
   CART DRAWER PREMIUM EFFECTS
========================================================= */

.cart-drawer {
  box-shadow:
    -20px 0 50px rgba(0, 0, 0, 0.22),
    -2px 0 15px rgba(201, 162, 75, 0.08);

  border-left: 1px solid rgba(20, 38, 31, 0.08);
}.cart-drawer__header {
  position: relative;
  background: rgba(255, 255, 255, 0.25);
}

.cart-drawer__header::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    transparent
  );
  opacity: 0.5;
}.cart-item {
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(20, 38, 31, 0.04);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.cart-item:hover {
  transform: translateX(-4px);
  background: rgba(201, 162, 75, 0.08);
  box-shadow: 0 8px 20px rgba(20, 38, 31, 0.08);
}.cart-item__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  border-radius: 50%;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.cart-item__remove:hover {
  background: rgba(201, 70, 61, 0.1);
  transform: scale(1.15) rotate(90deg);
}.cart-drawer__footer {
  background: rgba(20, 38, 31, 0.035);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.05);
}.cart-drawer__checkout {
  position: relative;
  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cart-drawer__checkout::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: rgba(255, 255, 255, 0.18);

  transition: left 0.45s ease;
}

.cart-drawer__checkout:hover::before {
  left: 100%;
}

.cart-drawer__checkout:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 25px rgba(20, 38, 31, 0.2),
    0 0 18px rgba(201, 162, 75, 0.12);
}@media (max-width: 480px) {
  .cart-drawer {
    width: 92vw;
  }

  .cart-drawer__header {
    padding: 20px;
  }

  .cart-drawer__items {
    padding: 14px 18px;
  }

  .cart-drawer__footer {
    padding: 20px;
  }

  .cart-item {
    gap: 10px;
  }

  .cart-item img {
    width: 58px;
    height: 58px;
  }
}
/* =========================================================
   TOAST
========================================================= */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 1000; display: flex; flex-direction: column; gap: 12px; }
.toast {
  background: var(--background-dark);
  color: var(--heading-color);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: toastIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  min-width: 240px;
  border-left: 3px solid var(--primary-color);
}
.toast.hide { animation: toastOut 0.3s ease forwards; }
.toast i { color: var(--primary-color); }
@keyframes toastIn { from { opacity: 0; transform: translateX(50px) scale(0.9); } to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(50px) scale(0.9); } }

/* =========================================================
   RESPONSIVE MEDIA QUERIES
========================================================= */
@media (max-width: 1200px) {
  .container { padding: 0 20px; }
  .menu__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .hero__title { font-size: 3.6rem; }
}

@media (max-width: 992px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero__thumbs { justify-content: center; }
  .hero__media { order: -1; }
  .hero__img { max-width: 320px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 480px; margin: 0 auto; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .modal__content { grid-template-columns: 1fr; }
  .modal__img { border-radius: var(--radius-md) var(--radius-md) 0 0; min-height: 260px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .hero { padding: 56px 0 40px; min-height: auto; }
  .hero__title { font-size: 2.8rem; }
  .about, .menu, .testimonials, .gallery { padding: 72px 0; }
  .menu__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .promo-banner__content h2 { font-size: 1.8rem; }
  .section-heading h2 { font-size: 1.8rem; }
  .testimonials__track-wrap { flex-direction: column; }
  .testi-nav { display: none; }
  .menu__toolbar { justify-content: center; }
}

@media (max-width: 576px) {
  .hero__title { font-size: 2.3rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gallery-item--wide { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__social { justify-content: center; }
  .newsletter__form { flex-direction: column; }
  .about__badge { position: static; margin-top: -30px; margin-left: 16px; margin-right: 16px; }
  .features__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 425px) {
  .container { padding: 0 16px; }
  .logo__text { font-size: 1.15rem; }
  .hero__title { font-size: 2rem; }
  .section-heading h2 { font-size: 1.5rem; }
}
