/* ===================================================================
   Grand Bakery — stylesheet
   =================================================================== */

:root {
  --maroon-dark: #430A11;
  --maroon: #7E1522;
  --maroon-light: #A31D2A;
  --gold: #C9A24A;
  --gold-light: #E7CB84;
  --cream: #FBF1DC;
  --cream-light: #FFFBF3;
  --ink: #2B1810;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-script: 'Marck Script', cursive;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  --topbar-h: 38px;
  --nav-h: 120px;

  --shadow-sm: 0 2px 10px rgba(43, 10, 6, 0.1);
  --shadow-md: 0 8px 30px rgba(43, 10, 6, 0.16);
  --shadow-lg: 0 20px 60px rgba(43, 10, 6, 0.25);

  --radius: 14px;
  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 10px); }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 92%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--maroon);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 999;
  transition: top var(--transition);
}
.skip-link:focus { top: 12px; }

/* ---------- Focus states ---------- */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--maroon-dark);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { box-shadow: var(--shadow-md); }
.btn-outline {
  border: 2px solid var(--cream);
  color: var(--cream);
  background: rgba(255,255,255,0.05);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-add {
  background: var(--maroon);
  color: var(--cream-light);
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn-add:hover { background: var(--maroon-light); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #20BA56;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:active { background: #1CA652; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn[disabled],
.btn[disabled]:hover,
.btn[disabled]:active { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--maroon);
  transition: background var(--transition), transform var(--transition);
}
.icon-btn:hover { background: var(--cream); }
.icon-btn:active { transform: scale(0.92); }

/* ---------- Section headings ---------- */
.section-eyebrow {
  font-family: var(--font-script);
  color: var(--maroon-light);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--maroon-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-sub {
  max-width: 620px;
  color: #6b4a3f;
  margin-bottom: 40px;
}

/* ===================================================================
   TOP BAR
   =================================================================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: var(--maroon-dark);
  color: var(--cream-light);
  z-index: 60;
  font-size: 0.8rem;
  transition: transform 0.35s ease;
}
.topbar.is-hidden { transform: translateY(-100%); }

.topbar__inner {
  max-width: 1600px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  gap: 16px;
}

.topbar__ticker {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.topbar__static {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.topbar__ticker-track {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.topbar__item a { color: var(--gold-light); }
.topbar__item a:hover { text-decoration: underline; }
.topbar__celebrate { color: var(--gold-light); font-weight: 500; }
.topbar__dot { opacity: 0.5; }

.topbar__whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  color: var(--cream-light);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  transition: background var(--transition);
}
.topbar__whatsapp:hover { background: rgba(255,255,255,0.18); }

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  height: var(--nav-h);
  background: var(--cream-light);
  z-index: 55;
  box-shadow: var(--shadow-sm);
  transition: top 0.35s ease;
}
.topbar.is-hidden ~ .nav { top: 0; }

.nav__inner {
  max-width: 1600px;
  margin: 0 auto;
  height: 100%;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo img { width: 140px; height: 140px; object-fit: contain; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.15; justify-content: center; }
.nav__logo-text strong {
  font-family: var(--font-display);
  color: var(--maroon-dark);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}
.nav__logo-text em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--gold);
  font-size: 1.1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-left: auto;
  margin-right: 30px;
}
.nav__links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after { width: 100%; }

.nav__dropdown {
  position: relative;
  display: inline-block;
  padding: 10px 0;
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: #ffffff;
  min-width: 200px;
  box-shadow: 0 16px 40px rgba(43, 10, 6, 0.12);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.04);
}
/* Arrow pointer */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 35px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  border-left: 1px solid rgba(0,0,0,0.04);
  border-top: 1px solid rgba(0,0,0,0.04);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.nav__dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  color: var(--ink) !important;
  border-radius: 8px;
  background: transparent;
  transition: all 0.25s ease;
  margin-bottom: 4px;
}
.nav__dropdown-menu a:last-child {
  margin-bottom: 0;
}
.nav__dropdown-menu a:hover {
  background: var(--cream-light);
  color: var(--maroon) !important;
  transform: translateX(4px);
}
.nav__dropdown-menu a::after {
  display: none !important;
}


.nav__actions { display: flex; align-items: center; gap: 8px; }

.nav__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: var(--maroon);
}
.nav__cart:hover { color: var(--maroon-light); }
.nav__cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--maroon);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--maroon-dark);
  margin: 0 auto;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO — CRÈME.d'OR LUXURY REFERENCE INSPIRED
   =================================================================== */
.hero--creme {
  position: relative;
  min-height: calc(100vh - var(--topbar-h) - var(--nav-h));
  margin-top: calc(var(--topbar-h) + var(--nav-h));
  background: radial-gradient(ellipse at 50% 40%, #3d080e 0%, #1c0205 100%);
  color: var(--cream-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 60px;
}

/* Giant Background Backdrop Typography */
.hero__bg-typography {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vw;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.hero__bg-text {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255, 248, 235, 0.12);
  line-height: 0.85;
  text-transform: uppercase;
}

/* Hero Grid Layout Container */
.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: center;
  gap: 32px;
}

.hero__slides {
  position: relative;
  width: 100%;
}

.hero__slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(10px);
}

.hero__slide.is-active {
  display: block;
  opacity: 1;
  position: relative;
  transform: translateY(0);
}

.hero__slide-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.hero__slide-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  background: rgba(201, 162, 74, 0.15);
  border: 1px solid rgba(201, 162, 74, 0.35);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* Center Display - User Cake Showcase */
.hero__center-display {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.hero__center-image-wrap {
  position: relative;
  width: clamp(260px, 30vw, 380px);
  animation: floatCake 4s ease-in-out infinite;
}

@keyframes floatCake {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__center-cake {
  width: 100%;
  height: clamp(280px, 32vw, 420px);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
}

.btn-creme-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: all 0.35s ease;
}
.btn-creme-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Floating Glassmorphism Annotation Badge */
.hero__annotation-badge {
  position: absolute;
  bottom: 12%;
  right: -15%;
  background: rgba(30, 5, 8, 0.75);
  border: 1px solid rgba(201, 162, 74, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 12px 18px;
  max-width: 220px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  z-index: 4;
}

.annotation-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
  flex-shrink: 0;
  margin-top: 5px;
}

.annotation-text {
  font-size: 0.78rem;
  color: #f2e4d2;
  line-height: 1.45;
  margin: 0;
}

/* Left Content Column */
.hero__left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 420px;
  z-index: 4;
}

.hero__artisan-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 18px;
}

.text-gold-highlight {
  color: var(--gold-light);
}

.hero__artisan-desc {
  font-size: 0.94rem;
  color: #f0e2d0;
  line-height: 1.65;
  margin-bottom: 28px;
  opacity: 0.95;
}

.hero__left-actions {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.btn-creme-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--cream-light);
  color: var(--maroon-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.35s ease;
  border: 2px solid var(--gold-light);
}

.btn-creme-pill:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(201, 162, 74, 0.45);
}

/* Right Content Column */
.hero__right-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  z-index: 4;
}

/* Flavor Selector */
.hero__flavors {
  text-align: right;
}

.hero__flavors-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero__flavors-row {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.hero__flavor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.3s ease;
}

.hero__flavor:hover,
.hero__flavor.is-active {
  opacity: 1;
  transform: translateY(-2px);
}

.hero__flavor img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
  transition: all 0.3s ease;
}

.hero__flavor.is-active img {
  filter: drop-shadow(0 0 12px rgba(201, 162, 74, 0.8));
  transform: scale(1.15);
}

.hero__flavor span {
  font-size: 0.74rem;
  color: var(--cream-light);
  font-weight: 600;
}

/* Consultation Card */
.hero__consultation-card {
  max-width: 310px;
  background: rgba(30, 5, 8, 0.75);
  border: 1.5px solid rgba(201, 162, 74, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.consultation-card__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.consultation-card__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.consultation-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--gold);
  flex-shrink: 0;
  background: var(--cream-light);
}

.consultation-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultation-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
  line-height: 1.2;
}

.consultation-sub {
  font-size: 0.75rem;
  color: #e2d4c2;
  line-height: 1.4;
  margin: 0;
}

.btn-consultation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--maroon-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-consultation:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  transform: translateY(-2px);
}

/* Bottom Scroll & Arrow Controls */
.hero__scroll-down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream-light);
  opacity: 0.7;
  z-index: 5;
  animation: bob 2.2s ease-in-out infinite;
}
.hero__scroll-down:hover { opacity: 1; }
@keyframes bob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* Prev/next arrows */
.hero__arrows {
  position: absolute;
  bottom: 26px;
  right: 28px;
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero__arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}
.hero__arrow:hover { background: rgba(255,255,255,0.28); }

/* ===================================================================
   MENU / CAKE GRID
   =================================================================== */
.menu { padding: 80px 0; background: #fffbf5; }

.menu-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 45px 0;
}

.menu-tab {
  padding: 10px 24px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--maroon);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-tab:hover {
  background: rgba(201, 162, 74, 0.1);
}

.menu-tab.is-active {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(201, 162, 74, 0.4);
}

.hidden {
  display: none !important;
}

.cake-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.cake-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1.5px solid rgba(126, 21, 34, 0.1);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.cake-card:hover {
  box-shadow: 0 14px 35px rgba(67, 10, 17, 0.15);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.cake-media {
  position: relative;
  width: 100%;
  height: 220px;
  max-height: 220px;
  overflow: hidden;
  background: #200407;
}

.cake-image-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 220px;
  max-height: 220px;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: zoom-in;
  background: #200407;
}

.cake-photo {
  width: 100% !important;
  height: 220px !important;
  max-height: 220px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s ease;
}

.cake-image-btn:hover .cake-photo,
.cake-image-btn:focus-visible .cake-photo { transform: scale(1.06); }

.cake-info { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.cake-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--maroon-dark);
  margin-bottom: 4px;
}
.cake-tagline { font-size: 0.84rem; color: #7a5c4f; margin-bottom: 14px; flex: 1; line-height: 1.4; }
.cake-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }

/* ===================================================================
   ABOUT
   =================================================================== */
.about {
  position: relative;
  padding: 100px 0;
  background: var(--cream-light);
  overflow: hidden;
}

/* Decorative hand-drawn flourishes — pure CSS/SVG, no external image */
.about__flourish {
  position: absolute;
  width: 170px;
  height: auto;
  color: var(--gold);
  opacity: 0.14;
  z-index: 0;
  pointer-events: none;
}
.about__flourish--left { top: 30px; left: 4%; }
.about__flourish--right { bottom: 20px; right: 4%; transform: scaleX(-1) scaleY(-1); }

.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about__media { position: relative; }
.about__collage { position: relative; }
.about__img {
  display: block;
  object-fit: cover;
}
.about__img--main {
  width: 100%;
  aspect-ratio: 4/3.3;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.about__logo-card {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 130px;
  height: 130px;
  border-radius: 20px;
  background: #ffffff;
  border: 4.5px solid var(--cream-light);
  box-shadow: 0 16px 40px rgba(67, 10, 17, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  z-index: 2;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about__logo-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 50px rgba(67, 10, 17, 0.25);
}
.about__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about__badge {
  position: absolute;
  left: -20px;
  bottom: -15px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  border: 4px solid var(--cream-light);
  z-index: 3;
}
.about__badge img { width: 34px; height: 34px; object-fit: contain; }
.about__badge span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--maroon-dark);
}

.about__content .section-eyebrow { text-align: left; }
.about__content .section-title { text-align: left; }
.about__text {
  color: #6b4a3f;
  font-size: 1rem;
  margin-bottom: 18px;
  max-width: 560px;
}
.about__quote {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--maroon-light);
  margin: 10px 0 4px;
}

/* ===================================================================
   RIBBON BAND
   =================================================================== */
.ribbon {
  background: linear-gradient(160deg, var(--maroon-dark), var(--maroon) 60%);
  color: var(--cream-light);
  padding: 45px 0;
  text-align: center;
  border-top: 1px solid rgba(201, 162, 74, 0.2);
  border-bottom: 1px solid rgba(201, 162, 74, 0.2);
}
.ribbon__inner { display: flex; flex-direction: column; align-items: center; }
.ribbon__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  gap: 30px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}
.stat__label { font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; color: #d9bfa4; }

/* ===================================================================
   SPECIALITIES
   =================================================================== */
.specialities { padding: 90px 0; background: var(--cream); }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.spec-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.spec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.spec-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.spec-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--maroon-dark);
  margin-bottom: 8px;
}
.spec-card p { font-size: 0.9rem; color: #6b4a3f; }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials {
  padding: 95px 0;
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
  position: relative;
}

.testimonials__wrapper {
  position: relative;
  margin-top: 40px;
}

.testimonials__grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 15px 5px; /* Padding for shadows */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.testimonials__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  box-shadow: 0 4px 15px rgba(67, 10, 17, 0.1);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.testimonials__nav-btn:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
  transform: translateY(-50%) scale(1.08);
}

.testimonials__nav-btn.prev {
  left: -20px;
}

.testimonials__nav-btn.next {
  right: -20px;
}

@media (max-width: 1024px) {
  .testimonials__nav-btn {
    display: none;
  }
}
.testimonial-card {
  flex: 0 0 auto;
  width: 400px;
  max-width: 85vw;
  scroll-snap-align: center;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 10px 30px rgba(67, 10, 17, 0.06);
  border: 1.5px solid rgba(201, 162, 74, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(67, 10, 17, 0.12);
  border-color: var(--gold);
}

.testimonial-card__stars {
  color: #e5a93c;
  font-size: 1.25rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testimonial-card__quote {
  font-size: 0.98rem;
  color: #4a342c;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(126, 21, 34, 0.08);
  padding-top: 18px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(67, 10, 17, 0.2);
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-info strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--maroon-dark);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: #8a6a5c;
}

@media (max-width: 768px) {
  .testimonials { padding: 60px 0; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card { padding: 24px 20px; }
}

/* ===================================================================
   FIND US NEAR YOU (LOCATIONS)
   =================================================================== */
.locations { padding: 90px 0; background: var(--cream); }

.locations__layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.locations__map-panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  min-height: 420px;
  background: var(--cream-light);
}
.locations__map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

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

.location-card {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.location-card.is-active {
  border-color: var(--gold);
  box-shadow: 0 10px 28px rgba(201, 162, 74, 0.35);
  background: linear-gradient(180deg, #fff, var(--cream-light));
}

.location-card__pin { font-size: 1.3rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.location-card__body { flex: 1; min-width: 0; }
.location-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--maroon-dark);
  margin-bottom: 6px;
}
.location-card.is-active .location-card__name { color: var(--maroon); }
.location-card__address {
  font-size: 0.86rem;
  color: #6b4a3f;
  line-height: 1.5;
  margin-bottom: 14px;
}

.location-card__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.location-card__btn {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.location-card__btn--view {
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
  background: transparent;
}
.location-card__btn--view:hover { background: var(--maroon); color: #fff; }
.location-card__btn--dir {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--maroon-dark);
  box-shadow: var(--shadow-sm);
}
.location-card__btn--dir:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--maroon-dark); color: #e9d3bd; padding: 70px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr 1.3fr;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo { width: 120px; height: auto; object-fit: contain; margin-bottom: 14px; position: relative; z-index: 1; pointer-events: none; }
.footer__tagline { font-size: 0.95rem; margin-bottom: 0; color: #f2e4d2; line-height: 1.5; position: relative; z-index: 2; }
.footer__col h4 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 0.9rem; color: #e9d3bd; transition: color var(--transition); }
.footer__col a:hover { color: var(--gold-light); }
.footer__note { font-size: 0.82rem; color: #ffffff; margin-top: 6px; }
.footer__bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: #b99b84;
}

/* ===================================================================
   CART DRAWER
   =================================================================== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(43,10,6,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition);
  z-index: 90;
}
.overlay.is-visible { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  bottom: 0;
  width: min(400px, 92vw);
  background: var(--cream-light);
  z-index: 95;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(126,21,34,0.1);
}
.cart-drawer__header h2 { font-family: var(--font-display); color: var(--maroon-dark); font-size: 1.3rem; }

.cart-drawer__items { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart-empty { color: #8a6a5c; text-align: center; margin-top: 40px; font-size: 0.92rem; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(126,21,34,0.1);
  align-items: center;
}
.cart-item img { width: 72px; height: 72px; border-radius: 12px; object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.cart-item__body { flex: 1; min-width: 0; }
.cart-item__name { font-weight: 600; font-size: 1rem; color: var(--maroon-dark); margin-bottom: 10px; line-height: 1.3; }
.cart-item__row { display: flex; align-items: center; justify-content: space-between; }
.qty-control { display: flex; align-items: center; gap: 8px; background: #fff; padding: 4px; border-radius: 999px; border: 1px solid rgba(126,21,34,0.15); box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.qty-control button {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--cream-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--maroon-dark);
  font-size: 1.1rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.qty-control button:hover { background: var(--maroon); color: #fff; }
.qty-control span { min-width: 20px; text-align: center; font-weight: 700; color: var(--maroon-dark); font-size: 0.95rem; }
.cart-item__remove { color: #8a6a5c; font-size: 0.8rem; text-decoration: underline; transition: color var(--transition); }
.cart-item__remove:hover { color: var(--maroon); }

.cart-drawer__footer {
  padding: 24px;
  border-top: 1px solid rgba(126,21,34,0.1);
  background: var(--cream-light);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.03);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon-dark);
  margin-bottom: 16px;
}

/* ===================================================================
   LIGHTBOX
   =================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(43,10,6,0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition);
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__content {
  position: relative;
  width: 90vw;
  max-width: 700px;
  height: 80vh;
  max-height: 700px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.94);
  transition: transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open .lightbox__content { transform: scale(1); }

.lightbox__content img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--maroon-dark);
  z-index: 105;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}

.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  color: var(--maroon-dark);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  z-index: 105;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background var(--transition), transform 0.2s ease;
}
.lightbox__prev:hover, .lightbox__next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* ===================================================================
   TOAST
   =================================================================== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 20px);
  background: var(--maroon-dark);
  color: var(--cream-light);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 120;
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1080px) {
  .cake-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .ribbon__stats { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .about__inner { grid-template-columns: 1fr; gap: 44px; }
  .about__media { max-width: 480px; margin: 0 auto; }

  .locations__layout { grid-template-columns: 1fr; }
  .locations__map-panel,
  .locations__map { min-height: 340px; }
}

/* Nav switches to the hamburger/dropdown layout well above the general
   tablet breakpoint below — with 8 links plus the crest logo, the desktop
   row runs out of room anywhere under ~1180px and was pushing the cart
   icon off the edge of the viewport. */
@media (max-width: 1180px) {
  :root { --nav-h: 120px; }

  .nav__logo img { width: 120px; height: 120px; }
  .nav__logo { gap: 10px; }
  .nav__logo-text strong { font-size: 1.3rem; }
  .nav__logo-text em { font-size: 1rem; }

  .nav__links {
    position: fixed;
    top: calc(var(--topbar-h) + var(--nav-h));
    left: 0; right: 0;
    width: 100%;
    margin: 0;
    background: var(--cream-light);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }
  .topbar.is-hidden ~ .nav .nav__links { top: var(--nav-h); }
  .nav__links.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid rgba(126,21,34,0.08); }
  .nav__hamburger { display: flex; }
}

@media (max-width: 860px) {
  .hero--creme { padding: 32px 20px 90px; }
  .hero__container { grid-template-columns: 1fr; gap: 40px; }
  .hero__slide-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero__left-content { align-items: center; max-width: 100%; }
  .hero__left-actions { align-items: center; }
  .hero__center-display { order: -1; }
  .hero__right-content { align-items: center; }
  .hero__flavors { text-align: center; }
  .hero__flavors-row { justify-content: center; }
  .hero__consultation-card { max-width: 420px; }
  .hero__arrows { right: 16px; bottom: 16px; }
  .hero__annotation-badge { position: static; margin-top: 14px; max-width: 320px; }

  .about { padding: 60px 0; }
  .about__content .section-eyebrow,
  .about__content .section-title { text-align: center; }
  .about__content { text-align: center; }
  .about__text { margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  :root { 
    --topbar-h: 54px; 
    --nav-h: 110px;
  }
  .topbar__static { font-size: 0.75rem; line-height: 1.4; padding: 4px 0; }
  .topbar__whatsapp-text { display: none; }

  .nav__inner { padding: 0 16px; gap: 8px; justify-content: space-between; }
  
  .nav__logo { gap: 8px; flex-shrink: 1; overflow: hidden; }
  .nav__logo img { width: 95px; height: 95px; flex-shrink: 0; }
  .nav__logo-text { flex-shrink: 1; }
  .nav__logo-text strong { font-size: 1.15rem; white-space: normal; line-height: 1.1; display: block; margin-bottom: 2px; }
  .nav__logo-text em { font-size: 0.9rem; white-space: nowrap; display: block; }

  .nav__actions { gap: 8px; flex-shrink: 0; }
  .nav__cart { width: 40px; height: 40px; }
  .nav__hamburger { width: 36px; height: 36px; }

  .hero__bg-text { font-size: clamp(3rem, 16vw, 6rem); }
  .hero__flavors-label { display: none; }
  .hero__flavor span { display: none; }
  .hero__flavor img { width: 34px; height: 34px; }
  .hero__flavors-row { gap: 10px; justify-content: center; }
  .hero__consultation-card { display: none; }
  .hero__scroll-down { display: none; }
  .hero__arrows { right: 12px; bottom: 12px; }

  .cake-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: left; }
  .ribbon__stats { grid-template-columns: repeat(2, 1fr); }
  .menu, .specialities, .ribbon { padding: 60px 0; }

  .locations { padding: 60px 0; }
  .locations__map-panel,
  .locations__map { min-height: 260px; }
  .location-card { flex-direction: column; }
  .location-card__pin { display: none; }
  .location-card__actions { flex-direction: column; }
  .location-card__btn { min-width: 100%; }
}

@media (max-width: 340px) {
  :root { --nav-h: 100px; }
  .nav__inner { padding: 0 12px; gap: 4px; }
  .nav__logo { gap: 6px; }
  .nav__logo img { width: 80px; height: 80px; }
  .nav__logo-text strong { font-size: 1rem; }
  .nav__logo-text em { font-size: 0.75rem; }
  .nav__actions { gap: 4px; }
  .nav__cart { width: 36px; height: 36px; }
  .nav__hamburger { width: 36px; height: 36px; }
}

/* ===================================================================
   CREATIVE CENTERED CAKE SHOWCASE
   =================================================================== */
.lookbook {
  padding: 100px 0;
  background: linear-gradient(180deg, #180205 0%, #2a070c 50%, #180205 100%);
  color: var(--cream-light);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.6);
}

/* Background floating decorative elements */
.lookbook__bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  user-select: none;
}

.lookbook__bg-text {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 15rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  opacity: 0.025;
  white-space: nowrap;
}

.lookbook__floating-particle {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.4;
  animation: particleFloat 8s ease-in-out infinite alternate;
}
.particle-1 { top: 15%; left: 8%; animation-delay: 0s; }
.particle-2 { top: 25%; right: 10%; animation-delay: 2s; }
.particle-3 { bottom: 20%; left: 12%; animation-delay: 4s; }
.particle-4 { bottom: 15%; right: 8%; animation-delay: 6s; }

@keyframes particleFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  100% { transform: translateY(-20px) rotate(15deg); opacity: 0.6; }
}

.lookbook .container {
  position: relative;
  z-index: 2;
}

.lookbook__header {
  margin-bottom: 50px;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.lookbook .section-title {
  color: #FFFBF3;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  text-align: center;
}

.lookbook .section-sub {
  color: #D9BFA4;
  max-width: 620px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

/* Main Showcase Centered Layout */
.showcase--centered {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.showcase__spotlight {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 203, 132, 0.25) 0%, rgba(201, 162, 74, 0.08) 50%, transparent 75%);
  filter: blur(30px);
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.showcase__cake-container {
  width: 380px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
}

/* Positioning root for the cake image + hotspot pins + desktop popover only —
   kept separate from .mobile-showcase-card so its height (and therefore the
   hotspot pins' percentage offsets) never changes when the mobile card below
   it changes size. */
.showcase__cake-media {
  position: relative;
  width: 100%;
}

.showcase__cake-img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.7));
  animation: cakeFloatGentle 5s ease-in-out infinite alternate;
}

@keyframes cakeFloatGentle {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* Hotspots on Center Cake */
.showcase__hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hotspot-pin {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #430a11, #7e1522);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
  border: 2px solid var(--gold);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.hotspot-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  opacity: 0.6;
  animation: hotspotRingPulse 2s ease-out infinite;
  z-index: 1;
}

.showcase__hotspot:hover,
.showcase__hotspot.is-active {
  transform: translate(-50%, -50%) scale(1.24);
}

.showcase__hotspot:hover .hotspot-pin,
.showcase__hotspot.is-active .hotspot-pin {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--maroon-dark);
  box-shadow: 0 0 22px rgba(231, 203, 132, 0.95);
}

@keyframes hotspotRingPulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Dynamic Side Popover Card (Positioned dynamically relative to hotspot pin) */
.hotspot-popover {
  position: absolute;
  width: 270px;
  background: rgba(28, 3, 6, 0.95);
  border: 1px solid var(--gold);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75), inset 0 0 15px rgba(201, 162, 74, 0.12);
  backdrop-filter: blur(16px);
  padding: 16px 18px;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92) translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hotspot-popover.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.popover-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.popover-num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--maroon-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201, 162, 74, 0.4);
}

.popover-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  flex: 1;
  margin: 0;
  line-height: 1.2;
}

.popover-icon {
  font-size: 1.2rem;
}

.popover-desc {
  font-size: 0.86rem;
  color: #D9BFA4;
  line-height: 1.5;
  margin: 0;
}

/* Connector Line between Popover Card and Hotspot Pin */
.popover-connector {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 8px rgba(231, 203, 132, 0.9);
  top: 24px;
}

.hotspot-popover.side-left .popover-connector {
  right: -30px;
  width: 24px;
}

.hotspot-popover.side-right .popover-connector {
  left: -30px;
  width: 24px;
}

/* Integrated Card Progress Bar Track & Fill */
.popover-timer-track,
.mobile-timer-track {
  margin-top: 14px;
  width: 100%;
  height: 4px;
  background: rgba(231, 203, 132, 0.15);
  border: 1px solid rgba(231, 203, 132, 0.2);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.popover-timer-fill,
.mobile-timer-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(231, 203, 132, 0.8);
}

.popover-timer-fill.is-animating,
.mobile-timer-fill.is-animating {
  animation: trackProgressFill 5s linear forwards;
}

@keyframes trackProgressFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Mobile Active Card (Anchored below cake) */
.mobile-showcase-card {
  display: none;
  background: linear-gradient(135deg, rgba(126, 21, 34, 0.45), rgba(67, 10, 17, 0.75));
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 16px 18px;
  margin: 20px auto 0;
  max-width: 440px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.mobile-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.mobile-card-num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--maroon-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  flex: 1;
  margin: 0;
  letter-spacing: 0.3px;
}

.mobile-card-icon {
  font-size: 1.15rem;
}

.mobile-card-desc {
  font-size: 0.85rem;
  color: rgba(217, 191, 164, 0.9);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .showcase--centered {
    max-width: 780px;
  }
  .hotspot-popover {
    display: none !important; /* Tablet and Mobile use mobile-showcase-card below cake */
  }
  .mobile-showcase-card {
    display: block;
  }
  .showcase__cake-container {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  /* Inherits bottom card layout from 992px */
  .showcase__cake-container {
    max-width: 290px;
  }
}

@media (max-width: 480px) {
  .lookbook { padding: 60px 0; }
  .showcase__cake-container {
    max-width: 270px;
  }
}

/* ===================================================================
   PERFECT MINIMALIST WHATSAPP CTA BANNER
   =================================================================== */
.wa-cta-section {
  padding: 65px 0;
  background: var(--cream-light);
}

.wa-cta-card {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, #430a11 0%, #200407 100%);
  border: 2.5px solid var(--gold);
  border-radius: 28px;
  padding: 48px 56px;
  box-shadow: 0 25px 60px rgba(67, 10, 17, 0.35);
  color: var(--cream-light);
}

.wa-cta-visual {
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--gold-light);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
}

.wa-cta-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.wa-cta-visual:hover .wa-cta-img {
  transform: scale(1.04);
}

.wa-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wa-cta-badge {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  background: rgba(201, 162, 74, 0.15);
  border: 1px solid rgba(201, 162, 74, 0.35);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.wa-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 12px;
}

.wa-cta-desc {
  font-size: 0.96rem;
  color: #f2e4d2;
  line-height: 1.58;
  margin-bottom: 24px;
  max-width: 540px;
}

/* ONLY 1 PROMINENT WHATSAPP BUTTON */
.btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.35s ease;
}

.btn-wa-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #32E374 0%, #159C8C 100%);
}

.wa-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.wa-btn-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: normal;
  opacity: 1;
  margin-bottom: 2px;
}

.wa-btn-num {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

/* Responsive Overrides */
@media (max-width: 868px) {
  .wa-cta-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
    text-align: center;
  }
  .wa-cta-content {
    align-items: center;
  }
  .wa-cta-desc {
    max-width: 100%;
  }
  .wa-cta-img {
    height: 220px;
  }
  .btn-wa-hero {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================================================
   SCROLL REVEAL
   One shared IntersectionObserver (see script.js) toggles .is-inview on
   any .reveal element the moment it enters the viewport, once. A handful
   of small grids (spec cards, location cards) get a light stagger via
   :nth-child so their 3-4 items don't all pop in on the same frame.
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-inview { opacity: 1; transform: none; }

.spec-grid > .reveal:nth-child(1), .location-card.reveal:nth-child(1) { transition-delay: 0ms; }
.spec-grid > .reveal:nth-child(2), .location-card.reveal:nth-child(2) { transition-delay: 90ms; }
.spec-grid > .reveal:nth-child(3), .location-card.reveal:nth-child(3) { transition-delay: 180ms; }
.spec-grid > .reveal:nth-child(4), .location-card.reveal:nth-child(4) { transition-delay: 270ms; }

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .topbar__ticker-track { animation: none; }
  .hero__center-image-wrap { animation: none; }
  .hero__scroll-down { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; transition-delay: 0ms !important; }
}

/* ===================================================================
   FLOATING WHATSAPP
   =================================================================== */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 40; /* stays below .overlay (90) so the cart drawer and lightbox naturally cover it instead of floating on top of their content/buttons */
  transition: all 0.3s ease;
  animation: pulse-wa 2s infinite;
}
.floating-wa:hover {
  transform: translateY(-5px) scale(1.05);
  background: #1ebe57;
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
  color: white;
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 768px) {
  .floating-wa {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
}
