/* ============================================
   SULTA ROSA — Luxury Confections & Wine
   Billion-Dollar Luxury Redesign — Ladurée-inspired
   ============================================ */

:root {
  --cream: #F5EBDA;
  --white: #FFFFFF;
  --ivory: #EDE3D0;
  --gold: #C5A355;
  --gold-light: #E8D5A3;
  --gold-dark: #A8873A;
  --rose: #D4917A;
  --rose-light: #F2DDD5;
  --blush: #F5E6E0;
  --charcoal: #2C2C2C;
  --text: #3A3A3A;
  --text-light: #7A7A7A;
  --text-lighter: #A0A0A0;
  --wine: #722F37;
  --wine-deep: #4A1C23;
  --pistachio: #8BAE6A;
  --lemon: #F5D76E;
  --lavender: #C4A8D4;
  --saffron: #E8A838;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit; font-size: inherit; border: none; outline: none;
  background: none;
}

/* ---- UTILITIES ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.section {
  padding: 140px 0;
  position: relative;
}

.section__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section__eyebrow--center { text-align: center; }
.section__eyebrow--light { color: var(--gold-light); }

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.section__title--center { text-align: center; }
.section__title--light { color: var(--white); }

.section__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.8;
}

/* ---- SECTION DIVIDER ---- */
.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 70px;
  position: relative;
}
.section-divider::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  padding: 0 12px;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ---- ANIMATIONS ---- */
.animate-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays */
.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }
.animate-in.delay-4 { transition-delay: 0.4s; }

/* Animate-in fallback: if JS fails, show content after 3s */
@keyframes animateInFallback {
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: animateInFallback 0s 3s forwards;
}
.animate-in.visible {
  animation: none;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(197, 163, 85, 0.35);
}
.btn--outline {
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-2px);
}
.btn--outline-dark {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline-dark:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* ---- PARALLAX SECTIONS ---- */
.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media (hover: none) {
  .parallax-bg { background-attachment: scroll; }
}

/* ---- PLACEHOLDER IMAGES ---- */
.placeholder-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}

/* Real product images */
.product-card__img img,
.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.product-card__img {
  position: relative;
  overflow: hidden;
}
.product-card__img img {
  aspect-ratio: 4/3;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-card__img img {
  transform: scale(1.08);
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* old baklava__images removed */

/* ==============================
   NAVIGATION
   ============================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(253, 248, 240, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 26px !important;
  border-radius: 50px !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--gold-dark) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
  border-radius: 2px;
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav gradient overlay for hero contrast */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  bottom: -60px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 1;
}
.nav.scrolled::before { opacity: 0; }
.nav:not(.scrolled) .nav__logo,
.nav:not(.scrolled) .nav__links a:not(.nav__cta),
.nav:not(.scrolled) .cart-toggle,
.nav:not(.scrolled) .nav__toggle span {
  color: #fff;
}

/* ==============================
   HERO — Full Cinematic
   ============================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
}
.hero__bg-img {
  animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.65) 100%),
    radial-gradient(ellipse at center bottom, rgba(197,163,85,0.1), transparent 60%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}
.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 1s ease-out 0.3s forwards;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 8.5rem);
  font-weight: 400;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  opacity: 0;
  animation: heroFadeUp 1.2s ease-out 0.5s forwards;
}
.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  opacity: 0;
  animation: heroFadeUp 1s ease-out 0.8s forwards;
}
.hero__sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.9;
  opacity: 0;
  animation: heroFadeUp 1s ease-out 1s forwards;
}
.hero__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s ease-out 1.2s forwards;
}
.hero__actions .btn { padding: 18px 44px; font-size: 0.82rem; }

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

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2.5s infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ==============================
   MOST-LOVED FEATURED COLLECTION
   ============================== */
.featured {
  background: var(--white);
  padding: 140px 0;
  position: relative;
}
.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 10px;
}
.featured-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}
.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}
.featured-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.featured-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.featured-card:hover .featured-card__img img {
  transform: scale(1.1);
}
.featured-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: white;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.featured-card:hover .featured-card__overlay {
  opacity: 1;
}
.featured-card__overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.featured-card__info {
  padding: 24px 28px 28px;
}
.featured-card__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.featured-card__info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}
.featured-card__price {
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 1rem;
}

/* ==============================
   BRAND STORY — Editorial
   ============================== */
.story {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(197,163,85,0.04));
  pointer-events: none;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.story__text {
  position: relative;
  z-index: 1;
}
.story__body {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 1.08rem;
  line-height: 1.9;
}
.story__body:first-of-type {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
}
.story__stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(197,163,85,0.2);
}
.stat__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-lighter);
}

/* ==============================
   ANGEL DELIGHTS
   ============================== */
.delights { background: var(--white); }

.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
}
.tab {
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
  border: 1.5px solid transparent;
}
.tab:hover { color: var(--gold); border-color: var(--gold-light); }
.tab.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.product-card__img {
  aspect-ratio: 1/1;
  position: relative;
}
.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
}
.product-card__info {
  padding: 22px 24px 24px;
}
.product-card__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card__info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
}
.product-card__price {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.05rem;
  display: block;
}

/* ==============================
   BAKLAVA
   ============================== */
.baklava { background: var(--cream); }

/* Baklava Showcase Cards */
.baklava-showcase {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}
.baklava-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(197,163,85,0.12);
}
.baklava-card:hover {
  box-shadow: 0 12px 48px rgba(197,163,85,0.15), 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}
.baklava-card--reverse {
  grid-template-columns: 1.2fr 1fr;
  direction: rtl;
}
.baklava-card--reverse > * {
  direction: ltr;
}
.baklava-card__text {
  padding: 55px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.baklava-card__text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.baklava-card__text h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 14px;
  transition: width 0.4s ease;
}
.baklava-card:hover .baklava-card__text h3::after {
  width: 70px;
}
.baklava-card__text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 22px;
}
.baklava-card__price {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.baklava-card__qty {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  padding: 6px 14px;
  background: rgba(197,163,85,0.04);
}
.baklava-card__qty .qty-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--gold-dark);
  padding: 4px 8px;
  transition: color 0.3s ease;
}
.baklava-card__qty .qty-btn:hover {
  color: var(--gold);
}
.baklava-card__qty .qty-num {
  font-size: 1rem;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
  color: var(--text);
}
.baklava-card__img {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}
.baklava-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.baklava-card:hover .baklava-card__img img {
  transform: scale(1.06);
}

/* Hover photo swap effect */
.baklava-card__img .baklava-hover-primary,
.baklava-card__img .baklava-hover-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.baklava-card__img .baklava-hover-primary {
  opacity: 1;
}
.baklava-card__img .baklava-hover-secondary {
  opacity: 0;
}
.baklava-card:hover .baklava-card__img .baklava-hover-primary {
  opacity: 0;
}
.baklava-card:hover .baklava-card__img .baklava-hover-secondary {
  opacity: 1;
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .baklava-showcase { gap: 36px; margin-top: 30px; }
  .baklava-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .baklava-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .baklava-card__text {
    padding: 28px 24px;
    order: 2;
  }
  .baklava-card__text h3 { font-size: 1.4rem; }
  .baklava-card__img {
    min-height: 260px;
    order: 1;
  }
}

/* ==============================
   CORPORATE & EVENTS — NEW
   ============================== */
.corporate {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.corporate::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(197,163,85,0.08), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(197,163,85,0.05), transparent 40%);
}
.corporate__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.corporate__content .section__eyebrow { color: var(--gold-light); }
.corporate__content .section__title { color: var(--white); }
.corporate__body {
  color: rgba(255,255,255,0.65);
  font-size: 1.08rem;
  line-height: 1.9;
  margin-bottom: 60px;
}
.corporate__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.corporate__card {
  padding: 40px 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}
.corporate__card:hover {
  border-color: rgba(197,163,85,0.3);
  background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
}
.corporate__card-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}
.corporate__card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.corporate__card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ==============================
   GIFTS & CORPORATE
   ============================== */
.gifts { background: var(--ivory); }
.gifts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.gift-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
}
.gift-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-light);
}
.gift-card__icon {
  font-size: 2.8rem;
  margin-bottom: 24px;
}
.gift-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.gift-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}
.gifts__cta {
  text-align: center;
  margin-top: 56px;
}

/* ==============================
   WHOLESALE
   ============================== */
.wholesale { background: var(--white); }
.wholesale__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.wholesale__body {
  color: var(--text-light);
  margin-bottom: 36px;
  font-size: 1.05rem;
  line-height: 1.9;
}
.wholesale__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wholesale__list li {
  padding-left: 28px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}
.wholesale__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 2px solid var(--gold);
}

/* ---- FORMS ---- */
.form {
  background: var(--ivory);
  padding: 44px;
  border-radius: var(--radius-lg);
}
.form__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: var(--charcoal);
}
.form__group { margin-bottom: 18px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,163,85,0.1);
}
.form input::placeholder,
.form textarea::placeholder {
  color: var(--text-lighter);
}
.form select { cursor: pointer; color: var(--text-lighter); }
.form select:valid { color: var(--text); }
.form textarea { resize: vertical; }

/* ==============================
   WINE BAR
   ============================== */
.winebar {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}
.winebar__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2C1018, #4A1C23, #1A0A0E);
}
.winebar__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(114, 47, 55, 0.4), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(197, 163, 85, 0.12), transparent 50%);
}
.winebar__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}
.winebar__body {
  color: rgba(255,255,255,0.75);
  font-size: 1.08rem;
  margin-bottom: 56px;
  line-height: 1.9;
}
.winebar__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.winebar__feature {
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.winebar__feature:hover {
  border-color: rgba(197, 163, 85, 0.3);
  background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
}
.winebar__feature h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.winebar__feature p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.winebar__hours {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  font-style: italic;
}

/* ==============================
   FLAGSHIP STORE — Enhanced
   ============================== */
.flagship {
  background: var(--cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.flagship::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,163,85,0.06), transparent 70%);
  pointer-events: none;
}
.flagship__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.flagship__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.flagship__images img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
}
.flagship__images img:first-child {
  grid-row: span 2;
  height: 100%;
}
.flagship__text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold-dark);
  margin-bottom: 8px;
  margin-top: 28px;
}
.flagship__text h3:first-of-type { margin-top: 0; }
.flagship__text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}
.flagship__text .btn { margin-top: 36px; }

/* ==============================
   VISIT US
   ============================== */
.visit { background: var(--white); }
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  margin-top: 20px;
}
.visit__detail {
  margin-bottom: 32px;
}
.visit__detail h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.visit__detail p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ==============================
   CONTACT
   ============================== */
.contact { background: var(--cream); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact__body {
  color: var(--text-light);
  margin-bottom: 36px;
  font-size: 1.05rem;
  line-height: 1.9;
}
.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__channels p {
  font-size: 0.95rem;
  color: var(--text);
}
.contact__channels a {
  color: var(--gold);
  transition: color 0.3s;
}
.contact__channels a:hover { color: var(--gold-dark); }

/* ==============================
   FOOTER — Luxurious
   ============================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 100px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.2fr;
  gap: 64px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--white); }

.footer__newsletter h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.footer__newsletter p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  line-height: 1.7;
}
.footer__newsletter-form {
  display: flex;
  gap: 8px;
}
.footer__newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.85rem;
  transition: border-color 0.3s;
}
.footer__newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.footer__newsletter-form input:focus { border-color: var(--gold); }
.footer__newsletter-form .btn {
  padding: 14px 28px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ==============================
   CART TOGGLE & BADGE
   ============================== */
.cart-toggle {
  position: relative;
  cursor: pointer;
  color: var(--charcoal);
  padding: 8px;
  transition: color 0.3s;
  margin-left: 8px;
}
.cart-toggle:hover { color: var(--gold); }
.cart-badge {
  position: absolute;
  top: 0;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-bounce { animation: cartBounce 0.5s ease; }
@keyframes cartBounce {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

/* ==============================
   CART OVERLAY & DRAWER
   ============================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: -10px 0 40px rgba(0,0,0,0.12);
}
.cart-drawer.open { right: 0; }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cart-drawer__header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
}
.cart-drawer__close {
  cursor: pointer;
  color: var(--text-light);
  padding: 4px;
  transition: color 0.3s;
}
.cart-drawer__close:hover { color: var(--charcoal); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  padding-bottom: 40px;
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--text-light);
}
.cart-empty p { margin-bottom: 20px; font-size: 0.95rem; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
}
.cart-item__img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ivory);
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__details { flex: 1; min-width: 0; }
.cart-item__name {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--charcoal);
}
.cart-item__price {
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-item__qty span {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  transition: all 0.2s;
  background: var(--white);
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }

.cart-item__remove {
  position: absolute;
  top: 16px;
  right: 0;
  cursor: pointer;
  color: var(--text-lighter);
  padding: 4px;
  transition: color 0.2s;
}
.cart-item__remove:hover { color: #c0392b; }

.cart-drawer__footer {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
  flex-shrink: 0;
}

.cart-totals__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.cart-totals__row--total {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 4px;
  margin-bottom: 16px;
}

/* ==============================
   ADD TO CART BUTTONS
   ============================== */
.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 12px;
  width: 100%;
}
.add-to-cart-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197,163,85,0.3);
}
.add-to-cart-btn.added {
  background: #8BAE6A;
  pointer-events: none;
}
.add-to-cart-btn--sm {
  padding: 9px 20px;
  font-size: 0.68rem;
  margin-top: 14px;
  width: auto;
}

/* ==============================
   CHECKOUT PAGE
   ============================== */
.checkout-page {
  padding: 120px 0 80px;
  min-height: 100vh;
  background: var(--cream);
}
.checkout-page__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 40px;
  text-align: center;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.checkout-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
}
.checkout-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.checkout-section__sub {
  font-size: 0.85rem;
  color: var(--text-lighter);
  margin-bottom: 20px;
}

.checkout-form { background: transparent; padding: 0; }
.checkout-form .form__group { margin-bottom: 14px; }
.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.form__group--half { flex: 0.5; }

.payment-method { margin-bottom: 24px; }
.payment-method__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
}
.payment-method__option input { display: none; }
.payment-method__radio {
  width: 20px; height: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
}
.payment-method__option--active .payment-method__radio::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.card-fields {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.10);
  border-radius: var(--radius);
  overflow: hidden;
}
.card-fields__row { padding: 0; }
.card-fields__row--split {
  display: flex;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.card-fields__row--split .card-field { flex: 1; }
.card-fields__row--split .card-field:first-child {
  border-right: 1px solid rgba(0,0,0,0.08);
}
.card-field { padding: 14px 18px; }
.card-field__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.card-field__input { min-height: 28px; }
.card-field__input iframe { height: 28px !important; }

.payment-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.payment-secure svg { color: var(--pistachio); flex-shrink: 0; }

.clover-frame-wrap {
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
  min-height: 60px;
}

.checkout-error {
  margin-top: 16px;
  padding: 14px 18px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  color: #b91c1c;
  font-size: 0.88rem;
}

.checkout-pay-btn { margin-top: 4px; }

.checkout-sidebar__inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.checkout-sidebar__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.checkout-sidebar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.checkout-sidebar__item-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: var(--ivory);
}
.checkout-sidebar__item-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-sidebar__item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-sidebar__item-info { flex: 1; }
.checkout-sidebar__item-name {
  font-size: 0.85rem;
  color: var(--charcoal);
  display: block;
}
.checkout-sidebar__item-price {
  font-size: 0.82rem;
  color: var(--text-light);
}

.checkout-sidebar__totals {
  padding-top: 20px;
  margin-top: 8px;
}
.checkout-sidebar__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.checkout-sidebar__row--total {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 4px;
}

.checkout-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--text-light);
}
.checkout-empty p { margin-bottom: 24px; font-size: 1.1rem; }

.checkout-success {
  text-align: center;
  padding: 80px 0;
}
.checkout-success__icon {
  width: 80px;
  height: 80px;
  background: #8BAE6A;
  color: #fff;
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.checkout-success h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.checkout-success p { color: var(--text-light); margin-bottom: 8px; }
.checkout-success__id {
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 32px !important;
}

/* ==============================
   GENERAL MOBILE POLISH
   ============================== */
a, button, .tab, .qty-btn, .add-to-cart-btn, .cart-toggle, .nav__toggle {
  -webkit-tap-highlight-color: transparent;
}
button, .btn, .tab, .qty-btn, .add-to-cart-btn, .cart-toggle {
  touch-action: manipulation;
}
body {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Tabs horizontal scroll */
.tabs {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
}
.tabs::-webkit-scrollbar { display: none; }
.tab { flex-shrink: 0; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .gifts__grid { grid-template-columns: repeat(2, 1fr); }
  .winebar__features { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .featured__grid { grid-template-columns: repeat(2, 1fr); }
  .corporate__grid { grid-template-columns: repeat(2, 1fr); }
  .flagship__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 100px 0; }
  .container { padding: 0 24px; }

  .checkout-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .checkout-sidebar { order: -1; }
  .checkout-sidebar__inner { position: static; }
  .checkout-section { padding: 24px; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav__links.open { right: 0; }
  .nav__links a { font-size: 1rem; }
  .nav:not(.scrolled) .nav__links a:not(.nav__cta) { color: var(--text); }

  .story__grid,
  .wholesale__grid,
  .contact__grid,
  .visit__grid,
  .flagship__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-card__info { padding: 14px; }
  .product-card__info h3 { font-size: 0.95rem; }
  .product-card__info p { font-size: 0.8rem; margin-bottom: 8px; }

  .gifts__grid { grid-template-columns: 1fr; }
  .featured__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .corporate__grid { grid-template-columns: 1fr; }
  .story__stats { gap: 24px; }

  .hero__title { margin-bottom: 16px; }

  .form { padding: 28px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__newsletter-form { flex-direction: column; }
  .footer__newsletter-form .btn { width: 100%; }

  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
    right: -100vw;
  }
  .cart-drawer__header {
    padding: 16px 20px;
    position: sticky;
    top: 0;
    background: var(--cream);
    z-index: 10;
  }
  .cart-drawer__body {
    padding: 16px 20px;
    -webkit-overflow-scrolling: touch;
  }
  .cart-item { gap: 12px; padding: 14px 0; }
  .cart-item__img { width: 50px; height: 50px; }
  .cart-item__name { font-size: 0.85rem; }
  .cart-item__price { font-size: 0.8rem; }
  .cart-item__qty { gap: 8px; }
  .qty-btn { width: 32px; height: 32px; font-size: 1rem; }
  .cart-item__remove {
    position: relative; top: auto; right: auto;
    flex-shrink: 0; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
  }
  .cart-drawer__footer {
    padding: 16px 20px calc(24px + env(safe-area-inset-bottom));
    flex-shrink: 0;
    background: var(--white);
  }
  .cart-drawer__footer .btn {
    padding: 16px;
    font-size: 1rem;
    min-height: 52px;
    font-weight: 700;
  }
  .add-to-cart-btn { padding: 12px 20px; font-size: 0.85rem; min-height: 44px; }

  .checkout-grid { gap: 20px; }
  .checkout-section { padding: 20px; }
  .checkout-pay-btn {
    padding: 18px;
    font-size: 1.1rem;
    min-height: 56px;
    font-weight: 700;
    margin-bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .product-card { border-radius: 10px; }

  .flagship__images {
    grid-template-columns: 1fr 1fr;
  }
  .flagship__images img:first-child { grid-row: auto; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card__info { padding: 10px; }
  .product-card__info h3 { font-size: 0.85rem; }
  .product-card__info p { display: none; }
  .product-card__price { font-size: 0.85rem; }
  .add-to-cart-btn { padding: 10px 14px; font-size: 0.75rem; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .featured__grid { grid-template-columns: 1fr; }

  .hero__scroll { display: none; }
}

@media (max-width: 380px) {
  .cart-drawer__header h3 { font-size: 1.1rem; }
  .cart-item__name { font-size: 0.8rem; }
  .section { padding: 70px 0; }
  .hero__title { font-size: 2.5rem; }
}

@media (max-height: 600px) {
  .hero__scroll { display: none; }
}

/* ---- Product Quantity Selector ---- */
.product-qty-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.product-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}
.product-qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
  color: #3A3A3A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.product-qty-btn:hover {
  background: #EDE3D0;
}
.product-qty-value {
  min-width: 28px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3A3A3A;
  user-select: none;
}
.product-qty-row .add-to-cart-btn {
  flex: 1;
}

/* ---- Checkout Quantity Controls ---- */
.checkout-sidebar__item-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.3rem;
}
.checkout-qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #3A3A3A;
}
.checkout-qty-btn:hover {
  background: #EDE3D0;
  border-color: #C5A355;
}
.checkout-qty-value {
  min-width: 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}
.checkout-item-remove {
  font-size: 0.75rem;
  color: #999;
  cursor: pointer;
  margin-left: 0.5rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.checkout-item-remove:hover {
  color: #c00;
}

@media (max-width: 768px) {
  .product-qty-row {
    gap: 0.4rem;
  }
  .product-qty-btn {
    width: 28px;
    height: 28px;
  }
}
