/* =====================================================================
   MIST & CO. V7 — Light Glassmorphism, Refined
   Font: Plus Jakarta Sans (ultra-legível, moderna)
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,500&family=Playfair+Display:ital,wght@0,500;0,700;1,500&display=swap');

/* =====================================================================
   TOKENS
   ===================================================================== */
:root {
  --bg: #F7F4EE;
  /* Creme quente */
  --bg2: #EDEADE;
  /* Um tom abaixo */
  --card: rgba(255, 255, 255, 0.72);
  --card-border: rgba(255, 255, 255, 0.9);
  --glass-hdr: rgba(247, 244, 238, 0.85);

  --ink: #111111;
  --ink2: #444444;
  --muted: #888888;

  --gold: #B8862E;
  --gold-lt: #D4AB5A;
  --gold-bg: rgba(184, 134, 46, 0.1);

  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;

  --r: 16px;
  --r-sm: 8px;
  --r-pill: 100px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =====================================================================
   RESET
   ===================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(200, 160, 80, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(180, 220, 200, 0.08) 0%, transparent 60%);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
video {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  font-family: var(--sans);
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.hidden-content {
  display: none !important;
}

body.no-scroll {
  overflow: hidden;
}

/* =====================================================================
   LAYOUT
   ===================================================================== */
.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 18px;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  transition: all 0.2s var(--ease);
  cursor: pointer;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border: none;
  box-shadow: 0 4px 18px rgba(184, 134, 46, 0.35);
}

.btn-primary:hover {
  background: var(--gold-lt);
  box-shadow: 0 6px 24px rgba(184, 134, 46, 0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink2);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* =====================================================================
   AGE GATE
   ===================================================================== */
.age-gate-wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(200, 190, 170, 0.5);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.age-gate-wrapper.active {
  opacity: 1;
  pointer-events: all;
}

/* Full-screen video behind the age gate modal */
.age-gate-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.35) saturate(0.7);
}

.age-gate-content {
  max-width: 400px;
  width: 100%;
  text-align: center;
  background: var(--card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 44px 28px;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.5s var(--ease);
}

.age-gate-wrapper.active .age-gate-content {
  transform: translateY(0) scale(1);
}

.age-gate-logo {
  max-width: 90px;
  margin: 0 auto 32px;
}

.age-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}

.age-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}

.age-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 380px) {
  .age-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.age-error {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #D0462E;
  margin-top: 16px;
  text-transform: uppercase;
  animation: fadeUp 0.3s var(--ease);
}

/* =====================================================================
   HEADER
   ===================================================================== */
/* Main header wrapper removed for minimal look */
.main-header {
  display: none;
}

.header-container {
  pointer-events: auto;
  /* Re-enable for the icons */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.floating-logo {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: block;
}

.floating-logo img {
  height: 72px;
  /* Mantendo o tamanho que você gostou */
  display: block;
}

.menu-toggle {
  position: fixed;
  top: 25px;
  left: 20px;
  z-index: 1001;
  width: 36px;
  height: 36px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 8px 6px;
}

.menu-toggle .bar {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.28s var(--ease);
}

.menu-toggle .bar:nth-child(1) {
  width: 22px;
}

.menu-toggle .bar:nth-child(2) {
  width: 15px;
}

.menu-toggle .bar:nth-child(3) {
  width: 22px;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  width: 22px;
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 22px;
}

/* Cart button hidden — not in use yet */
.cart-btn {
  display: none;
}

/* SIDE DRAWER MENU */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(15, 12, 8, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.nav-content {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  background: var(--bg);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 100px 30px 40px;
  /* More padding top for logo space */
  z-index: 901;
}

.nav-content::before {
  content: 'MIST & CO.';
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(184, 134, 46, 0.2);
  padding-bottom: 15px;
}

.nav-overlay.active .nav-content {
  transform: translateX(0);
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  margin-top: 60px;
}

.nav-link {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-link:hover {
  color: var(--gold);
}

.dropdown-toggle {
  width: 100%;
  background: transparent;
}

.dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.has-dropdown.active .dropdown-menu {
  display: flex;
}

.dropdown-link {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.dropdown-link:hover {
  color: var(--ink);
}

/* =====================================================================
   VIDEO HERO (Back by popular demand)
   ===================================================================== */
.video-hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* =====================================================================
   BRAND HERO (replaces video-hero — no video, clean glass)
   ===================================================================== */
.brand-hero {
  padding: 120px 0 72px;
  background: linear-gradient(160deg, #F7F4EE 0%, #EDE9DF 60%, #E2DDCf 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  /* Centered for consistency */
}

.brand-hero-inner {
  position: relative;
}

.brand-hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 11vw, 5.5rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 18px;
}

.brand-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.brand-hero-desc {
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 340px;
}

.video-hero {
  display: block;
}


.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.45) saturate(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(15, 12, 8, 0.95) 0%, rgba(15, 12, 8, 0.4) 35%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 18px 56px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  /* Centered as requested */
}

.hero-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}

.hero-title em {
  font-style: italic;
  color: #F5D898;
}

.hero-desc {
  font-size: 0.98rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 400px;
  /* Increased slightly for center balance */
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centered */
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.scroll-line {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* =====================================================================
   MANIFESTO
   ===================================================================== */
.manifesto-strip {
  padding: 64px 0;
  background: var(--bg2);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 4.5vw, 1.9rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
}

.manifesto-text strong {
  font-style: normal;
  color: var(--gold);
}

/* =====================================================================
   PRODUCTS SECTION — 2-column grid, big cards
   ===================================================================== */
.products-section {
  padding: 64px 0 80px;
}

.section-eye {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 40px;
  line-height: 1.2;
}

/* 2-column grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Individual card — tall, image-first */
.product-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  /* for badges */
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card:active {
  transform: scale(0.98);
}

/* === BADGES === */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.badge-hot {
  background: #FF5A1F;
  color: #fff;
  box-shadow: 0 2px 10px rgba(255, 90, 31, 0.4);
}

/* CRITICAL: contains the hot.gif to exactly 18x18 — prevents GIF from expanding */
.badge-hot img {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.badge-soon {
  background: rgba(0, 0, 0, 0.08);
  color: var(--muted);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.badge-soon {
  background: rgba(0, 0, 0, 0.08);
  color: var(--muted);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* EM BREVE pill on PDP */
.pdp-soon-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Image wrapper — tall rectangle, badge overlays the image itself */
.product-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(155deg, #fff 0%, #EDE9DF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px 10px;
  overflow: hidden;
  position: relative;
  /* badge inside image */
}

.product-img-wrap img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.2));
  transition: transform 0.4s var(--ease);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08) translateY(-5px);
}

/* Card info */
.product-info {
  padding: 12px 14px 16px;
  flex: 1;
}

.product-info h4 {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 6px;
}

.product-info p {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.product-link-hint {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s var(--ease);
}

.product-card:hover .product-link-hint {
  gap: 8px;
}

/* =====================================================================
   VIDEO INLINE SECTION
   ===================================================================== */
.video-inline-section {
  padding: 0;
  background: var(--ink);
  overflow: hidden;
}

.video-inline-section video {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.8);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.main-footer {
  padding: 52px 0 32px;
  background: var(--bg2);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.footer-logo {
  max-width: 140px;
  margin: 0 auto 28px;
  opacity: 0.65;
}

.warning-text {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.copyright {
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.25);
}

/* =====================================================================
   PRODUCT DETAIL PAGE — Kings Crest style
   ===================================================================== */
/* No more margin/padding needed for a solid header */
.padded-main {
  padding-top: 0;
  padding-bottom: 72px;
}

.pdp-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  transition: color 0.2s;
}

.pdp-back-btn:hover {
  color: var(--ink);
}

.pdp-back-btn svg {
  transition: transform 0.2s var(--ease);
}

.pdp-back-btn:hover svg {
  transform: translateX(-4px);
}

/* BIG product image — taller, click to zoom */
.product-image-box {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(155deg, #fff 0%, #EDE9DF 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.product-image-box::after {
  content: '⤡';
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.product-image-box img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.22));
  transition: transform 0.5s var(--ease);
}

.product-image-box:hover img {
  transform: scale(1.04) translateY(-6px);
}

/* PDP text */
.pdp-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.pdp-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 7vw, 2.6rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}

#pdp-price {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}

#pdp-desc {
  font-size: 0.96rem;
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 32px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(184, 134, 46, 0.2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* === SELECTOR SYSTEM === */
.selectors {
  margin-bottom: 28px;
}

.selector-group {
  margin-bottom: 22px;
}

.selector-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.radio-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radio-pill input[type="radio"] {
  display: none;
}

.radio-pill span {
  display: inline-block;
  padding: 11px 20px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink2);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.radio-pill input[type="radio"]:checked+span {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(184, 134, 46, 0.35);
}

.radio-pill:hover span {
  border-color: var(--gold-lt);
  color: var(--ink);
}

/* Type tabs — bigger, prominent */
#type-selector .radio-pill span {
  font-size: 0.95rem;
  padding: 13px 28px;
  font-weight: 700;
}

/* BUY BUTTON */
.btn-buy-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #25D366;
  /* WhatsApp green — clear CTA */
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.22s var(--ease);
  margin-bottom: 12px;
}

.btn-buy-full:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.btn-buy-full:active {
  transform: scale(0.97);
}

.shipping-info {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 36px;
}

/* Flavor profile */
.flavor-profile {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 28px;
  margin-top: 4px;
}

.flavor-title {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.flavor-profile ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flavor-profile li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--ink2);
}

.flavor-profile span {
  color: var(--gold);
  letter-spacing: 3px;
}

/* =====================================================================
   ANIMATIONS
   ===================================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* =====================================================================
   IMAGE LIGHTBOX
   ===================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 460px;
  width: 100%;
  transform: scale(0.9);
  transition: transform 0.35s var(--ease);
}

.lightbox.open .lightbox-inner {
  transform: scale(1);
}

.lightbox-inner img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -18px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}