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

:root {
  /* Brand Colors from Logo */
  --pink: #D91A8A;
  --pink-dark: #B01570;
  --pink-light: #FF4DB8;
  --pink-glow: rgba(217, 26, 138, 0.4);
  --orange: #FF7A00;
  --orange-dark: #E56500;
  --green: #39D353;
  --green-light: #6EE77D;

  /* Dark Theme */
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #1A1A1A;
  --bg-card-hover: #222222;
  --bg-cream: #FFF5E6;
  --bg-cream-dark: #F5E6D0;

  /* Text */
  --text-white: #FFFFFF;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dark: #1A1A1A;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-pink: 0 4px 20px rgba(217, 26, 138, 0.35);
  --shadow-pink-lg: 0 8px 40px rgba(217, 26, 138, 0.45);

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1280px;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn--pink {
  background: var(--pink);
  color: var(--text-white);
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}

.btn--pink:hover {
  background: var(--pink-light);
  border-color: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink-lg);
}

.btn--outline {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn--dark {
  background: var(--bg-primary);
  color: var(--text-white);
  border-color: var(--bg-primary);
}

.btn--dark:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.75rem;
}

.btn-icon {
  font-size: 1rem;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 70px 0;
  position: relative;
}

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

.section--cream {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  position: relative;
  display: inline-block;
}

.section__title--decorated {
  padding-bottom: 16px;
}

.section__title--decorated::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
}

.section__title--dark {
  color: var(--text-dark);
}

.section__title .highlight {
  color: var(--pink);
}

.section__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ===== DECORATIVE BORDERS ===== */
.decorative-border {
  position: relative;
  padding: 40px 20px;
}

.decorative-border::before,
.decorative-border::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid var(--pink);
  opacity: 0.3;
}

.decorative-border::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.decorative-border::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 50px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

.nav__logo-fallback {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink);
}

.nav__list {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-secondary);
  flex-direction: column;
  padding: 100px 32px 32px;
  gap: 4px;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  display: flex;
  z-index: 1000;
}

.nav__list.open {
  right: 0;
}

.nav__link {
  display: block;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-white);
  background: rgba(217, 26, 138, 0.1);
}

.nav__link--active {
  color: var(--pink);
  position: relative;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__order-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--pink);
  color: var(--text-white);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.nav__order-btn:hover {
  background: var(--pink-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-pink);
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}

.nav__overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  display: none;
}

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


.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(10, 10, 10, 0.6) 40%,
    rgba(10, 10, 10, 0.4) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero__text {
  text-align: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-white);
  margin-bottom: 16px;
}

.hero__title span {
  display: block;
}

.hero__title .hero__title-sub {
  font-size: 0.5em;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

.hero__title .hero__title-main {
  font-size: 1em;
  color: var(--text-white);
}

.hero__title .hero__title-accent {
  font-size: 1.3em;
  font-style: italic;
  color: var(--pink);
  line-height: 1;
}

.hero__title .hero__title-highlight {
  font-size: 0.55em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.hero__subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero__image {
  display: none;
}

.hero__image img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero__floating {
  position: absolute;
  z-index: 4;
  animation: float 4s ease-in-out infinite;
}

.hero__floating--left {
  left: -5%;
  bottom: 15%;
  width: 200px;
  display: none;
}

.hero__floating--right {
  right: -3%;
  top: 25%;
  width: 250px;
  display: none;
}

.hero__floating img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

.hero__watermark {
  position: absolute;
  top: calc(var(--nav-height) + 26px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.2em;
  pointer-events: none;
  z-index: 4;
  text-align: center;
  line-height: 1;
  width: 100%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .hero__watermark {
    font-size: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .hero__watermark {
    font-size: 1.8rem;
  }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--bg-cream);
  padding: 28px 0;
  border-bottom: 3px solid var(--pink);
}

.features-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: white;
  box-shadow: 0 2px 8px rgba(217, 26, 138, 0.3);
}

.feature-item__text h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-dark);
}

.feature-item__text p {
  font-size: 0.72rem;
  color: #777;
  margin-top: 2px;
}

/* ===== OUR MENU ===== */
.menu-section {
  background: var(--bg-primary);
  padding: 70px 0;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.menu__card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  group: true;
  aspect-ratio: 4/3;
}

.menu__card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(217, 26, 138, 0.2);
}

.menu__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.menu__card:hover .menu__card-img {
  transform: scale(1.08);
}

.menu__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition);
}

.menu__card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.menu__card-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.menu__card .btn--sm {
  align-self: flex-start;
}

/* 5th card spanning full width on mobile */
.menu__card:last-child {
  grid-column: 1 / -1;
}

/* ===== POPULAR ICE CREAM ===== */
.icecream-section {
  background: var(--bg-secondary);
  padding: 70px 0;
  overflow: hidden;
}

.icecream__scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.icecream__scroll::-webkit-scrollbar {
  display: none;
}

.icecream__card {
  flex: 0 0 160px;
  text-align: center;
  scroll-snap-align: start;
  transition: var(--transition);
  cursor: pointer;
}

.icecream__card:hover {
  transform: translateY(-8px);
}

.icecream__card-img-wrap {
  width: 140px;
  height: 180px;
  margin: 0 auto 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  position: relative;
  background: rgba(0, 0, 0, 0.5);
}

.icecream__card:hover .icecream__card-img-wrap {
  border-color: var(--pink);
  box-shadow: 0 0 20px rgba(217, 26, 138, 0.3);
}

.icecream__card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-slow);
}

.icecream__card:hover .icecream__card-img-wrap img {
  transform: scale(1.05);
}

.global-hover-popup {
  position: fixed;
  width: 250px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0,0,0,0.9);
  border: 2px solid var(--pink);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  transform-origin: bottom center;
  transform: translate(-50%, -100%) scale(0.5);
}

.global-hover-popup.active {
  transform: translate(-50%, -100%) scale(1);
  opacity: 1;
}

.icecream__card-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.icecream__card-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink);
}

.icecream__cta {
  text-align: center;
  margin-top: 24px;
}

/* ===== SHARING MEALS BANNER ===== */
.sharing-banner {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background: var(--bg-primary);
}

.sharing-banner__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sharing-banner__image {
  height: 250px;
  overflow: hidden;
}

.sharing-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sharing-banner__content {
  padding: 30px 24px;
}

.sharing-banner__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pink);
  margin-bottom: 8px;
}

.sharing-banner__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.sharing-banner__subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sharing-banner__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.sharing-banner__list li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
}

.sharing-banner__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.sharing-banner__price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.sharing-banner__price-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.sharing-banner__price-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink);
}

/* ===== REVIEWS + GALLERY SPLIT ===== */
.reviews-gallery {
  background: var(--bg-primary);
  padding: 70px 0;
}

.reviews-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Reviews */
.reviews__header {
  margin-bottom: 24px;
}

.reviews__header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.reviews__header h3 .highlight {
  color: var(--pink);
}

.reviews__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review__card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}

.review__card:hover {
  border-color: rgba(217, 26, 138, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.review__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 14px;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}

.review__author-info strong {
  font-size: 0.82rem;
  color: var(--text-white);
}

.review__author-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.review__stars {
  color: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.reviews__cta {
  margin-top: 16px;
}

/* Gallery */
.gallery__header {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery__header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
  transition: var(--transition);
}

.gallery__item:hover {
  transform: scale(1.03);
  z-index: 2;
}

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

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(217, 26, 138, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
  background: rgba(217, 26, 138, 0.3);
}

.gallery__item-overlay span {
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery__item:hover .gallery__item-overlay span {
  opacity: 1;
  transform: scale(1);
}

.gallery__cta {
  margin-top: 16px;
  text-align: center;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.open .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox__nav:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.lightbox__nav--prev {
  left: 20px;
}

.lightbox__nav--next {
  right: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0D0D0D;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__logo-img {
  height: 45px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 16px;
}

.footer__links ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

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

.footer__contact li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer__contact li span.icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__social {
  margin-bottom: 20px;
}

.footer__social-icons {
  display: flex;
  gap: 10px;
}

.social__link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social__link:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-2px);
}

.social__link svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.7);
}

.social__link:hover svg {
  fill: white;
}

/* Newsletter */
.footer__newsletter p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.newsletter__form {
  display: flex;
  gap: 8px;
}

.newsletter__input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.newsletter__input:focus {
  border-color: var(--pink);
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter__btn {
  padding: 10px 20px;
  background: var(--pink);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.newsletter__btn:hover {
  background: var(--pink-light);
}

.footer__bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__bottom a {
  color: var(--pink);
  transition: var(--transition);
}

.footer__bottom a:hover {
  color: var(--pink-light);
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered reveal */
[data-delay="1"] { transition-delay: 80ms !important; }
[data-delay="2"] { transition-delay: 160ms !important; }
[data-delay="3"] { transition-delay: 240ms !important; }
[data-delay="4"] { transition-delay: 320ms !important; }
[data-delay="5"] { transition-delay: 400ms !important; }
[data-delay="6"] { transition-delay: 480ms !important; }

/* ===== KEYFRAMES ===== */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 26, 138, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(217, 26, 138, 0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SELECTION ===== */
::selection {
  background: var(--pink);
  color: var(--text-white);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--pink);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-pink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--pink-light);
  transform: translateY(-3px);
}

/* ============================================ */
/* ===== TABLET (768px+) ===== */
/* ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .section {
    padding: 90px 0;
  }

  .section__title {
    font-size: 2.5rem;
  }

  /* Nav */
  .nav__order-btn {
    display: flex;
  }

  /* Hero */
  .hero__content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    padding: 80px 0;
  }

  .hero__text {
    text-align: left;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    margin-left: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__image {
    display: block;
  }

  .hero__floating--right {
    display: block;
  }

  /* Features */
  .features-strip__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  /* Menu */
  .menu__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .menu__card:nth-child(4),
  .menu__card:nth-child(5) {
    grid-column: auto;
  }

  .menu__card:last-child {
    grid-column: auto;
  }

  .menu__card-title {
    font-size: 1.2rem;
  }

  /* Ice Cream */
  .icecream__scroll {
    gap: 24px;
  }

  .icecream__card {
    flex: 0 0 180px;
  }

  .icecream__card-img-wrap {
    width: 150px;
    height: 150px;
  }

  /* Sharing Banner */
  .sharing-banner__inner {
    grid-template-columns: 1fr 1fr;
  }

  .sharing-banner__image {
    height: 100%;
    min-height: 350px;
  }

  .sharing-banner__content {
    padding: 40px;
  }

  .sharing-banner__title {
    font-size: 2.2rem;
  }

  /* Reviews & Gallery */
  .reviews-gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  /* Footer */
  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
  }
}

/* ============================================ */
/* ===== DESKTOP (1024px+) ===== */
/* ============================================ */
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .section {
    padding: 100px 0;
  }

  .section__title {
    font-size: 2.8rem;
  }

  .section__header {
    margin-bottom: 56px;
  }

  /* Nav */
  .nav__toggle {
    display: none;
  }

  .nav__overlay {
    display: none;
  }

  .nav__list {
    position: static;
    width: auto;
    height: auto;
    background: none;
    flex-direction: row;
    padding: 0;
    gap: 2px;
    box-shadow: none;
    flex: 1;
    justify-content: center;
  }

  .nav__link {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  /* Hero */
  .hero__title {
    font-size: 4rem;
  }

  .hero__floating--left {
    display: block;
  }

  .hero__floating--right {
    width: 300px;
  }

  /* Menu */
  .menu__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .menu__card {
    aspect-ratio: 3/4;
  }

  /* Ice Cream */
  .icecream__card {
    flex: 0 0 160px;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

/* ============================================ */
/* ===== LARGE DESKTOP (1440px+) ===== */
/* ============================================ */
@media (min-width: 1440px) {
  .hero__title {
    font-size: 5rem;
  }

  .container {
    padding: 0 60px;
  }

  .menu__card-title {
    font-size: 1.3rem;
  }
}

/* ===== MENU MODAL ===== */
.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.menu-modal__content {
  position: relative;
  background: var(--bg-secondary);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-modal.active .menu-modal__content {
  transform: translateY(0) scale(1);
}

.menu-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--text-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.menu-modal__close:hover {
  background: var(--pink);
}

.menu-modal__header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(to bottom, rgba(217, 26, 138, 0.05), transparent);
}

.menu-modal__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--pink);
  margin: 0;
}

.menu-modal__body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}

.menu-item {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.menu-item__name {
  font-weight: 600;
  color: var(--text-white);
  padding-right: 16px;
}

.menu-item__price {
  font-weight: 700;
  color: var(--pink);
  white-space: nowrap;
}

.menu-item__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
