/* ============================================================
   LAMARÉ — Luxury Skincare E-Commerce
   Main Stylesheet — style.css
   ============================================================ */

/* ============================================================
   1. CSS RESET + BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #FFF8EF;
  color: #3A2A1F;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  font-family: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ============================================================
   2. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --ivory:            #FFF8EF;
  --white:            #FFFFFF;
  --gold:             #C9A45C;
  --gold-hover:       #B88E3F;
  --soft-beige:       #EFE1CC;
  --light-beige:      #F7EBDD;
  --brown:            #3A2A1F;
  --muted:            #7A6A5C;
  --dark:             #1E1712;
  --success:          #2F855A;
  --warning:          #C77700;
  --error:            #B42318;
  --whatsapp:         #25D366;
  --whatsapp-hover:   #1ebe57;

  /* Typography */
  --font-serif:  Georgia, 'Times New Roman', serif;
  --font-sans:   Arial, Helvetica, sans-serif;

  /* Spacing */
  --section-padding: 96px;
  --container-max:   1200px;
  --border-radius:   12px;
  --border-radius-lg: 20px;
  --border-radius-pill: 50px;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(58, 42, 31, 0.06);
  --shadow-md:   0 4px 24px rgba(58, 42, 31, 0.08);
  --shadow-lg:   0 8px 40px rgba(58, 42, 31, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 164, 92, 0.4);

  /* Transitions */
  --transition:      all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s ease;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--brown);
  line-height: 1.25;
  font-weight: bold;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  font-family: var(--font-sans);
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

a {
  transition: var(--transition-fast);
}

a:hover {
  color: var(--gold);
}

strong,
b {
  font-weight: 700;
  color: var(--brown);
}

em,
i {
  font-style: italic;
}

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Primary — Gold Fill */
.btn-primary {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(201, 164, 92, 0.25);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Secondary — Outline */
.btn-secondary {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* WhatsApp */
.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* Sizes */
.btn-lg {
  padding: 17px 38px;
  font-size: 17px;
}

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

/* ============================================================
   6. ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  height: 40px;
  background-color: var(--dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

.announcement-bar span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   7. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(58, 42, 31, 0.08);
  height: 70px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar__inner,
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .btn {
  font-size: 14px;
  padding: 10px 22px;
}

.nav-links .btn::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 0;
  background-color: var(--soft-beige);
  border: 1px solid rgba(58, 42, 31, 0.12);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.hamburger:hover {
  background-color: var(--gold);
  border-color: var(--gold);
}

.hamburger:hover span {
  background-color: var(--white);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background-color: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger span:nth-child(2) {
  width: 13px;
  align-self: flex-start;
  margin-left: 12px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  width: 18px;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 18px;
}

/* ============================================================
   MOBILE SIDEBAR DRAWER
   ============================================================ */

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(30, 23, 18, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

/* Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 80vw;
  max-width: 360px;
  height: 100%;
  height: 100dvh;
  background-color: var(--ivory);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px 0 0 20px;
  box-shadow: -12px 0 48px rgba(30, 23, 18, 0.18);
  overflow: hidden;
}

.nav-drawer.open {
  transform: translateX(0);
}

/* Drawer Header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--soft-beige);
  flex-shrink: 0;
}

.drawer-logo {
  display: flex;
  align-items: center;
  opacity: 1;
  transition: var(--transition-fast);
}

.drawer-logo:hover {
  opacity: 0.75;
}

.drawer-logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--soft-beige);
  border: 1px solid rgba(58, 42, 31, 0.1);
  color: var(--brown);
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.drawer-close:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Drawer Nav */
.drawer-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 0;
}

.drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-link {
  display: flex;
  align-items: center;
  padding: 15px 24px;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: 0.3px;
  border-left: 3px solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.drawer-link:hover {
  color: var(--gold);
  background-color: rgba(201, 164, 92, 0.06);
  border-left-color: var(--gold);
}

.drawer-link.active {
  color: var(--gold);
  border-left-color: var(--gold);
  font-weight: 600;
}

.drawer-order-item {
  padding: 16px 20px 4px;
}

.drawer-order-btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
}

/* Drawer Footer */
.drawer-footer {
  border-top: 1px solid var(--soft-beige);
  padding: 14px 24px 20px;
  flex-shrink: 0;
  background-color: var(--light-beige);
}

.drawer-trust {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.drawer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.2px;
}

.drawer-trust-icon {
  color: var(--gold);
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FFF8EF 0%, #F7EBDD 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  min-height: 90vh;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
}

.hero__content {
  flex: 1;
  padding-right: 20px;
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(201, 164, 92, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: var(--border-radius-pill);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 24px;
  font-weight: bold;
}

.hero__title span {
  color: var(--gold);
}

.hero__subtitle {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 8px;
}

.hero__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* Hero Image */
.hero__image {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.18) 0%, rgba(201, 164, 92, 0) 70%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

.hero__image img {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  position: relative;
  z-index: 1;
  object-fit: cover;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-badge__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--light-beige);
  border: 1px solid rgba(201, 164, 92, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.trust-badge__label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* ============================================================
   9. SECTION GENERIC
   ============================================================ */
.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background-color: rgba(201, 164, 92, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: var(--border-radius-pill);
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   10. BENEFITS SECTION
   ============================================================ */
.benefits-section {
  background-color: var(--ivory);
  padding: var(--section-padding) 0;
}

.benefits-banner {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 64px;
  display: block;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.benefit-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(58, 42, 31, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(58, 42, 31, 0.12);
  border-color: rgba(201, 164, 92, 0.2);
}

.benefit-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-beige), var(--soft-beige));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.benefit-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--brown);
  margin-bottom: 12px;
  font-weight: bold;
  line-height: 1.3;
}

.benefit-card__desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   11. PRODUCT SHOWCASE
   ============================================================ */
.product-showcase {
  background: linear-gradient(135deg, #F7EBDD 0%, #FFF8EF 100%);
  padding: var(--section-padding) 0;
}

.product-showcase__inner {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
}

.product-showcase__images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-showcase__images .main-img {
  grid-column: 1 / -1;
}

.product-showcase__images img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  height: 240px;
}

.product-showcase__images .main-img img {
  height: 360px;
}

.product-showcase__content {
  flex: 1;
  max-width: 520px;
}

.product-showcase__content h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--brown);
  margin-bottom: 20px;
  line-height: 1.2;
}

.product-highlights {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.product-highlights li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1;
}

.product-sale-price {
  font-size: 22px;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 12px;
  font-weight: normal;
  opacity: 0.7;
}

.product-cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   12. HOW TO USE
   ============================================================ */
.how-to-use {
  background-color: var(--ivory);
  padding: var(--section-padding) 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 40px;
  right: -14px;
  color: var(--gold);
  font-size: 20px;
  opacity: 0.5;
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(201, 164, 92, 0.35);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--brown);
  margin-bottom: 10px;
  font-weight: bold;
}

.step-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.warning-note {
  margin-top: 48px;
  background-color: var(--ivory);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
}

/* ============================================================
   13. GALLERY
   ============================================================ */
.gallery-section {
  background-color: var(--ivory);
  padding: var(--section-padding) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(58, 42, 31, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay__icon {
  color: var(--white);
  font-size: 36px;
  line-height: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.8;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
}

.lightbox__close:hover {
  opacity: 1;
  color: var(--gold);
  transform: scale(1.1);
}

/* ============================================================
   14. LIFESTYLE SECTION
   ============================================================ */
.lifestyle-section {
  background: linear-gradient(135deg, #1E1712 0%, #2A1F18 100%);
  padding: var(--section-padding) 0;
}

.lifestyle__inner {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
}

.lifestyle__image {
  flex: 1;
}

.lifestyle__image img {
  border-radius: var(--border-radius-lg);
  width: 100%;
  object-fit: cover;
}

.lifestyle__content {
  flex: 1;
}

.lifestyle__content h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.lifestyle__content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.lifestyle-points {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lifestyle-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.5;
}

.lifestyle-points li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.lifestyle__content .btn {
  margin-top: 36px;
}

/* ============================================================
   15. CTA OFFER SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 23, 18, 0.72);
  pointer-events: none;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  display: block;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 20px;
  color: var(--white);
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 16px;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ============================================================
   16. REVIEWS SECTION
   ============================================================ */
.reviews-section {
  background-color: #1E1712;
  padding: var(--section-padding) 0;
}

.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  margin-top: 1.25rem;
}

.reviews-summary__stars {
  color: var(--gold, #C9A45C);
  font-size: 1.4rem;
  letter-spacing: 4px;
}

.reviews-summary__label {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  margin: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}

.review-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(201, 164, 92, .15);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 164, 92, .4);
  background: rgba(255, 255, 255, .07);
}

.review-card__quote {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--gold, #C9A45C);
  line-height: .75;
  margin-bottom: .75rem;
  opacity: .4;
}

.star-rating {
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 1rem;
}

.review-text {
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 1.5rem;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold, #C9A45C);
  color: #1E1712;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author {
  font-weight: 600;
  color: #fff;
  font-size: .9rem;
}

.review-verified {
  font-size: .75rem;
  color: #66bb6a;
  margin-top: .15rem;
}

/* ============================================================
   17. FAQ SECTION
   ============================================================ */
.faq-section {
  background-color: var(--beige, #EFE1CC);
  padding: var(--section-padding) 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 4rem;
  align-items: start;
}

.faq-intro {
  color: var(--muted, #7A6A5C);
  font-size: 1rem;
  line-height: 1.8;
  margin: 1rem 0 2rem;
}

.faq-header-cta {
  padding-top: 2rem;
  border-top: 1px solid rgba(58, 42, 31, .12);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(58, 42, 31, .14);
  transition: background .2s ease;
}

.faq-item:first-child {
  border-top: 1px solid rgba(58, 42, 31, .14);
}

.faq-item:hover {
  background: rgba(255, 255, 255, .45);
}

.faq-item.open {
  background: rgba(255, 255, 255, .7);
}

.faq-question {
  padding: 1.2rem 1rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: background .2s ease;
}

.faq-question:hover {
  background: transparent;
}

.faq-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold, #C9A45C);
  letter-spacing: .1em;
  flex-shrink: 0;
  width: 22px;
}

.faq-question span:not(.faq-num):not(.faq-icon) {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--brown, #3A2A1F);
  flex: 1;
  line-height: 1.45;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gold, #C9A45C);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #C9A45C);
  flex-shrink: 0;
  transition: transform .3s ease, background .25s ease, color .25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--gold, #C9A45C);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: .25rem 1rem 1.4rem 3rem;
}

.faq-answer-inner p {
  color: var(--muted, #7A6A5C);
  line-height: 1.8;
  font-size: .95rem;
}

/* ============================================================
   18. ORDER SECTION
   ============================================================ */
.order-section {
  background: linear-gradient(135deg, #F7EBDD 0%, #FFF8EF 100%);
  padding: var(--section-padding) 0;
}

.order-form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 40px rgba(58, 42, 31, 0.10);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--soft-beige);
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--brown);
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.12);
}

.form-control::placeholder {
  color: rgba(122, 106, 92, 0.5);
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6A5C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: none;
  color: var(--error);
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

.form-group.has-error .form-error {
  display: block;
}

.form-group.has-error .form-control {
  border-color: var(--error);
  background-color: rgba(180, 35, 24, 0.03);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.order-submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 18px;
  border-radius: var(--border-radius-pill);
  margin-top: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
  color: var(--white);
  border: none;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 164, 92, 0.4);
  transition: var(--transition);
  font-family: var(--font-sans);
}

.order-submit-btn:hover {
  box-shadow: 0 8px 32px rgba(201, 164, 92, 0.55);
  transform: translateY(-2px);
}

.order-submit-btn:active {
  transform: translateY(0);
}

.order-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
}

/* ============================================================
   19. FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp svg,
.floating-whatsapp img {
  width: 28px;
  height: 28px;
  color: var(--white);
  fill: var(--white);
}

/* ============================================================
   20. MOBILE INTRO ACTION BAR (intro-zone triggered, mobile only)
   Actual show/hide lives in section 26 via body.mobile-intro-visible
   ============================================================ */
.mobile-sticky {
  display: none;
}

.mobile-sticky a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-radius: var(--border-radius-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  transition: var(--transition);
}

.mobile-sticky .sticky-primary {
  background-color: var(--gold);
  color: var(--white);
}

.mobile-sticky .sticky-primary:hover {
  background-color: var(--gold-hover);
}

.mobile-sticky .sticky-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
}

.mobile-sticky .sticky-whatsapp:hover {
  background-color: var(--whatsapp-hover);
}

/* ============================================================
   21. FOOTER
   ============================================================ */
.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 0;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: bold;
  color: var(--white);
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo:hover {
  color: var(--gold);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.8;
  max-width: 280px;
  margin-top: 12px;
}

.footer-section h4 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(201, 164, 92, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ============================================================
   22. ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  from {
    background-position: -1000px 0;
  }
  to {
    background-position: 1000px 0;
  }
}

.animate-float {
  animation: floatSoft 4s ease-in-out infinite;
}

.animate-fade-up {
  animation: fadeUp 0.8s ease both;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; animation-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; animation-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; animation-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; animation-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; animation-delay: 0.5s; }

/* ============================================================
   23. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- Tablet: 1024px --- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 72px;
  }

  h1, .hero__title { font-size: 46px; }
  h2, .section-title { font-size: 34px; }

  .hero__inner {
    gap: 40px;
  }

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

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

  .step-card:nth-child(3)::after {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-header .section-title {
    text-align: center;
  }

  .faq-intro {
    text-align: center;
  }

  .faq-header-cta {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .lifestyle__inner {
    gap: 40px;
  }

  .product-showcase__inner {
    gap: 40px;
  }

  .cta-content h2 {
    font-size: 40px;
  }
}

/* --- Mobile: 768px --- */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  /* Navbar */
  .navbar {
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero__inner {
    flex-direction: column;
    gap: 40px;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 48px;
    text-align: center;
  }

  .hero__content {
    padding-right: 0;
    max-width: 100%;
    order: 1;
  }

  .hero__image {
    order: 2;
    width: 100%;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .hero__buttons {
    justify-content: center;
  }

  .trust-badges {
    justify-content: center;
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Product showcase */
  .product-showcase__inner {
    flex-direction: column;
    gap: 40px;
  }

  .product-showcase__images {
    width: 100%;
  }

  .product-showcase__content {
    max-width: 100%;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .step-card::after {
    display: none;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 200px;
  }

  /* Lifestyle */
  .lifestyle__inner {
    flex-direction: column;
    gap: 40px;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    overflow-x: auto;
    display: flex;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-top: 2rem;
  }

  .review-card {
    min-width: 85vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  /* FAQ */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Section */
  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Order form */
  .order-form-wrapper {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* CTA */
  .cta-content {
    padding: 80px 20px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer {
    padding: 56px 0 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

}

/* --- Small Mobile: 480px --- */
@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }

  h2, .section-title {
    font-size: 26px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 240px;
  }

  .reviews-grid {
    gap: 0;
  }

  .review-card {
    min-width: 92vw;
    padding: 1.5rem 1.25rem;
  }

  .faq-answer-inner {
    padding: .25rem .75rem 1.25rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-badges {
    gap: 16px;
  }

  .product-showcase__images {
    grid-template-columns: 1fr;
  }

  .order-form-wrapper {
    padding: 28px 20px;
  }

  .cta-content {
    padding: 64px 16px;
  }

  .announcement-bar {
    font-size: 11px;
    letter-spacing: 0.5px;
    height: auto;
    min-height: 40px;
    padding: 8px 16px;
  }

  .nav-logo-img {
    height: 100px;
  }
}

/* ============================================================
   24. UTILITY CLASSES
   ============================================================ */

/* Text alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Margin top */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

/* Margin bottom */
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

/* Padding top */
.pt-1 { padding-top: 8px; }
.pt-2 { padding-top: 16px; }
.pt-3 { padding-top: 24px; }
.pt-4 { padding-top: 32px; }
.pt-5 { padding-top: 40px; }

/* Padding bottom */
.pb-1 { padding-bottom: 8px; }
.pb-2 { padding-bottom: 16px; }
.pb-3 { padding-bottom: 24px; }
.pb-4 { padding-bottom: 32px; }
.pb-5 { padding-bottom: 40px; }

/* Display */
.hidden { display: none !important; }
.show   { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

/* Brand colors */
.gold-text  { color: var(--gold) !important; }
.brown-text { color: var(--brown) !important; }
.muted-text { color: var(--muted) !important; }
.white-text { color: var(--white) !important; }

/* Font families */
.serif { font-family: var(--font-serif) !important; }
.sans  { font-family: var(--font-sans) !important; }

/* Font weights */
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* Backgrounds */
.bg-ivory      { background-color: var(--ivory); }
.bg-white      { background-color: var(--white); }
.bg-light-beige { background-color: var(--light-beige); }
.bg-dark       { background-color: var(--dark); }

/* Borders */
.border-gold { border: 1px solid var(--gold); }
.border-round { border-radius: var(--border-radius-pill); }

/* Flex utilities */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* Width */
.w-100 { width: 100%; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Position */
.position-relative { position: relative; }
.position-absolute { position: absolute; }

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--soft-beige);
  margin: 48px 0;
}

/* Gold separator line */
.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hover));
  border-radius: 2px;
  margin: 16px auto 0;
}

.gold-line.left {
  margin-left: 0;
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--soft-beige) 25%, var(--light-beige) 50%, var(--soft-beige) 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
  border-radius: 8px;
}

/* ============================================================
   25. MOBILE PRODUCT-FIRST HERO + VIDEO SHOWCASE
   ============================================================ */

/* Hidden by default on desktop */
.mobile-product-first-hero,
.mobile-video-showcase {
  display: none;
}

@media (max-width: 767px) {

  /* Show mobile sections, hide desktop hero */
  .mobile-product-first-hero,
  .mobile-video-showcase {
    display: block;
  }

  .desktop-hero {
    display: none;
  }

  /* ── Mobile hero wrapper ── */
  .mobile-product-first-hero {
    padding: 12px 16px 0;
    background: linear-gradient(135deg, #FFF8EF 0%, #F7EBDD 100%);
    animation: fadeUp 0.55s ease both;
  }

  /* Photo card */
  .mobile-hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(58, 42, 31, 0.15);
  }

  .mobile-hero-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 24px;
  }

  /* Dark gradient overlay at bottom of photo */
  .mobile-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 20px;
    background: linear-gradient(
      to top,
      rgba(30, 23, 18, 0.86) 0%,
      rgba(30, 23, 18, 0.46) 55%,
      transparent 100%
    );
    border-radius: 0 0 24px 24px;
    animation: fadeUp 0.7s ease 0.2s both;
  }

  .mobile-hero-overlay .eyebrow {
    display: block;
    font-family: var(--font-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
  }

  .mobile-hero-overlay h1 {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 4px;
    line-height: 1.2;
  }

  .mobile-hero-overlay p {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 11px;
    line-height: 1.5;
  }

  .mobile-hero-overlay .cod-pill {
    display: inline-block;
    background: rgba(201, 164, 92, 0.2);
    border: 1px solid rgba(201, 164, 92, 0.56);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 50px;
  }

  /* Three mini-badge row below the card */
  .mobile-hero-badges {
    display: flex;
    gap: 8px;
    padding: 12px 0 0;
  }

  .mobile-hero-badge {
    flex: 1;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(201, 164, 92, 0.22);
    border-radius: 14px;
    padding: 10px 4px;
    box-shadow: 0 2px 10px rgba(58, 42, 31, 0.05);
  }

  .mobile-hero-badge-icon {
    font-size: 18px;
    margin-bottom: 4px;
    display: block;
    line-height: 1;
  }

  .mobile-hero-badge-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: 0.5px;
    display: block;
    text-transform: uppercase;
  }

  /* ── Mobile video section ── */
  .mobile-video-showcase {
    padding: 16px 16px 0;
  }

  .mobile-video-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(58, 42, 31, 0.08);
    border: 1px solid rgba(201, 164, 92, 0.14);
  }

  .mobile-video-title {
    padding: 14px 20px 10px;
    text-align: center;
  }

  .mobile-video-title span {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: bold;
    color: var(--brown);
    letter-spacing: 0.5px;
  }

  /* Square video — matches typical short-form content */
  .mobile-video-card video {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
  }

}

/* ============================================================
   26. MOBILE INTRO ACTION BAR + FLOATING WHATSAPP FIXES
   ============================================================ */

/* ── Intro-only action bar: hidden at all sizes by default ── */
.mobile-intro-actions {
  display: none;
}

@media (max-width: 767px) {

  /* Floating pill bar — rendered but invisible until intro zone shows */
  .mobile-intro-actions {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    z-index: 900;
    justify-content: center;
    align-items: center;
    padding: 0;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  /* Show when IntersectionObserver detects the intro zone */
  body.mobile-intro-visible .mobile-intro-actions {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Single centered Order Now button — 85% wide, pill shape */
  .mobile-intro-actions .mobile-sticky-btn {
    width: 85%;
    max-width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    line-height: 1.2;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  }

  .mobile-intro-actions .mobile-sticky-order {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201, 164, 92, 0.4);
  }

  .mobile-intro-actions .mobile-sticky-order:active {
    transform: scale(0.97);
    box-shadow: 0 2px 10px rgba(201, 164, 92, 0.3);
  }

  /* ── Floating WhatsApp button — mobile overrides ── */
  .floating-whatsapp {
    right: 16px;
    bottom: calc(22px + env(safe-area-inset-bottom, 0px));
    width: 54px;
    height: 54px;
    z-index: 950;
    overflow: visible;
    transition: bottom 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Lift above the Order Now bar when it is visible */
  body.mobile-intro-visible .floating-whatsapp {
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  /* Hide "Chat" label on mobile — icon-only circle */
  .floating-whatsapp-label {
    display: none;
  }

}

/* ============================================================
   27. DESKTOP IMAGE FIXES (min-width: 992px)
   ============================================================ */

@media (min-width: 992px) {

  /* Hero — keep image from growing unbounded; preserve product */
  .hero__image {
    max-height: 640px;
    overflow: visible;
  }

  .hero__image img {
    max-height: 600px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
  }

  /* Product showcase — show the full bottle, no cropping */
  .product-showcase__images {
    align-self: start;
  }

  .product-showcase__images img {
    object-fit: contain;
    background-color: rgba(247, 235, 221, 0.35);
  }

  .product-showcase__images img.product-img-main {
    height: 360px;
    object-fit: contain;
  }

  .product-showcase__images img.product-img-secondary {
    height: 260px;
    object-fit: contain;
  }

  /* Gallery — uniform 4:5 portrait cards */
  .gallery-item {
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Lifestyle — full-height cover photo, no overflow */
  .lifestyle__image {
    max-height: 520px;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
  }

  .lifestyle__image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-lg);
  }

}
