/* ============================================
   RECOSMETICS V2 — Premium Skincare CSS
   Cormorant Garamond + Jost | Royal Blue + Gold
   ============================================ */

:root {
  --blue:        #1E3A8A;
  --blue-deep:   #112265;
  --blue-mid:    #2850aa;
  --blue-light:  #3B82F6;
  --blue-pale:   #EFF4FF;
  --gold:        #D4AF37;
  --gold-light:  #e8c84a;
  --gold-dark:   #a88a20;
  --white:       #FFFFFF;
  --off:         #F9FAFB;
  --text:        #111827;
  --text-md:     #374151;
  --text-lt:     #6B7280;
  --border:      #E5E7EB;
  --border-b:    #C7D9FD;
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;
  --sh-sm: 0 2px 12px rgba(30,58,138,.08);
  --sh-md: 0 8px 36px rgba(30,58,138,.14);
  --sh-lg: 0 24px 64px rgba(30,58,138,.20);
  --sh-xl: 0 40px 100px rgba(30,58,138,.26);
  --ease:  cubic-bezier(.4,0,.2,1);
  --t:     all .35s var(--ease);
}

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; }
body { font-family:'Jost',sans-serif; color:var(--text); background:var(--white); overflow-x:hidden; line-height:1.6; }
img { display:block; max-width:100%; height:auto; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

.container { max-width:1200px; margin:0 auto; padding:0 28px; }

/* ---- PAGE LOADER ---- */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--blue-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: white;
  letter-spacing: .05em;
  margin-bottom: 24px;
}
.loader-logo span { color: var(--gold); }
.loader-bar { width: 200px; height: 2px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; background: var(--gold); border-radius: 2px; animation: loadFill 1.4s ease forwards; }
@keyframes loadFill { from { width:0; } to { width:100%; } }

/* ---- NAV ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: var(--t);
}
#navbar.scrolled { box-shadow: var(--sh-md); border-color: var(--border); }

.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  height: 72px;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 700;
  color: var(--blue); white-space: nowrap; flex-shrink: 0;
  margin-right: 16px;
}
.nav-logo .logo-mark { color: var(--gold); font-size: 1.1rem; }
.nav-logo em { color: var(--gold); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-link {
  font-size: .875rem; font-weight: 500;
  color: var(--text-lt); padding: 7px 13px;
  border-radius: var(--r-sm); transition: var(--t);
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-pale); }

.nav-wa-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: #25D366; color: white;
  font-size: .82rem; font-weight: 600;
  padding: 9px 20px; border-radius: 50px;
  margin-left: 12px; flex-shrink: 0;
  transition: var(--t);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.nav-wa-btn:hover { background: #1ea952; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO SLIDER ---- */
.hero-slider {
  position: relative; overflow: hidden;
  height: 100vh; min-height: 680px; max-height: 900px;
}
.slides-container { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute; inset: 0;
  background: var(--slide-bg);
  opacity: 0; transition: opacity .9s ease;
  display: flex; align-items: center;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: all; z-index: 2; }
.slide.prev { opacity: 0; z-index: 1; }

.slide-inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 28px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; width: 100%;
}

.slide-content { animation: slideIn .8s ease both; }
@keyframes slideIn { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
.slide.active .slide-content { animation: slideIn .8s ease both; }

.slide-badge {
  display: inline-block;
  font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.3);
  padding: 7px 18px; border-radius: 50px;
  margin-bottom: 20px;
}
.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem,5.5vw,5.2rem);
  font-weight: 700; line-height: 1.05;
  color: white; margin-bottom: 20px;
}
.slide-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.slide-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  line-height: 1.75; margin-bottom: 36px;
  max-width: 460px;
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-slide-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--blue-deep);
  font-weight: 700; font-size: .95rem;
  padding: 14px 32px; border-radius: 50px;
  transition: var(--t);
  box-shadow: 0 8px 28px rgba(212,175,55,.4);
}
.btn-slide-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(212,175,55,.55); }

.btn-slide-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  font-weight: 600; font-size: .95rem;
  padding: 14px 32px; border-radius: 50px;
  transition: var(--t);
}
.btn-slide-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }

.slide-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: slideImgIn .8s ease .15s both;
}
@keyframes slideImgIn { from { opacity:0; transform:translateX(30px) scale(.95); } to { opacity:1; transform:translateX(0) scale(1); } }
.slide.active .slide-visual { animation: slideImgIn .8s ease .15s both; }

.slide-glow {
  position: absolute; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(212,175,55,.18), transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.slide-img {
  max-width: 400px; max-height: 400px;
  width: 100%; object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,30,.5));
  animation: floatImg 5s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes floatImg {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(.5deg); }
}

/* Slider controls */
.slide-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t); backdrop-filter: blur(8px);
}
.slide-arrow:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.5); transform: translateY(-50%) scale(1.06); }
.slide-prev { left: 28px; }
.slide-next { right: 28px; }

.slide-dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer;
  transition: var(--t);
}
.dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

.slide-progress-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,.1); z-index: 10;
}
.slide-progress-fill {
  height: 100%; background: var(--gold);
  width: 0; transition: width .1s linear;
}

/* ---- MARQUEE ---- */
.marquee-strip { background: var(--blue); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 48px; animation: marquee 25s linear infinite; width: max-content; }
.marquee-track span { color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 500; letter-spacing: .06em; white-space: nowrap; }
.marquee-track span:nth-child(4n+2) { color: var(--gold); }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ---- COMMON LABELS ---- */
.pill-label {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-light);
  background: var(--blue-pale); border: 1px solid var(--border-b);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 14px;
}
.pill-label.light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.85); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem,4vw,3.2rem);
  font-weight: 700; line-height: 1.15;
  color: var(--text); margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--blue); }
.section-title.white { color: white; }
.gold-text { color: var(--gold) !important; font-style: italic; }

.section-sub { font-size: 1rem; color: var(--text-lt); max-width: 520px; margin: 0 auto; }
.white-sub { color: rgba(255,255,255,.7); }

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

/* ---- BTN PRIMARY ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: white;
  font-weight: 600; font-size: .95rem;
  padding: 14px 34px; border-radius: 50px;
  border: 2px solid var(--blue); transition: var(--t);
}
.btn-primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(30,58,138,.35); }

/* ---- REVEAL ANIMATION ---- */
.reveal-section { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal-section.revealed { opacity: 1; transform: translateY(0); }

/* ---- ABOUT ---- */
.about { padding: 110px 0; background: var(--off); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-slider-wrap { position: relative; width: 100%; max-width: 360px; margin: 0 auto; }
.swiper-container.offer-slider { width: 100%; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.swiper-container.offer-slider .swiper-slide { background: white; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; aspect-ratio: 1; }
.swiper-container.offer-slider .swiper-slide img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--r-lg); padding: 20px; }
.offer-pagination { position: absolute; bottom: -28px !important; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; }
.offer-pagination .swiper-pagination-bullet { background: var(--blue); opacity: 0.4; width: 8px; height: 8px; }
.offer-pagination .swiper-pagination-bullet-active { opacity: 1; }

.about-stat-pill {
  margin-top: 36px; display: inline-flex; flex-direction: column;
  background: var(--blue); color: white;
  border-radius: var(--r-md); padding: 16px 24px;
  text-align: center; box-shadow: var(--sh-md);
}
.about-stat-pill strong { display: block; font-family: 'Cormorant Garamond',serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.about-stat-pill span { font-size: .78rem; color: rgba(255,255,255,.75); letter-spacing: .06em; }

.about-para { font-size: 1rem; color: var(--text-lt); line-height: 1.85; margin-bottom: 14px; }
.about-para strong { color: var(--blue); font-weight: 600; }

.about-pillars { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 36px; }
.pillar { display: flex; align-items: center; gap: 14px; }
.pillar-icon { font-size: 1.6rem; width: 48px; height: 48px; background: var(--blue-pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pillar strong { display: block; font-size: .95rem; font-weight: 700; color: var(--text); }
.pillar span { font-size: .82rem; color: var(--text-lt); }

/* ---- PRODUCTS ---- */
.products { padding: 110px 0; background: var(--white); }

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
  position: relative;
  opacity: 0; transform: translateY(30px);
}
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-card:hover { box-shadow: var(--sh-xl); border-color: var(--border-b); transform: translateY(-10px); }

.product-card.featured {
  box-shadow: var(--sh-lg);
  border-color: var(--border-b);
}

.card-badge {
  position: absolute; top: 14px; left: 14px; z-index: 4;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px; color: white;
}
.card-badge.pink { background: #e91e8c; }
.card-badge.gold { background: linear-gradient(135deg,var(--gold-dark),var(--gold)); color: var(--blue-deep); }
.card-badge.blue { background: var(--blue-light); }
.card-badge.teal { background: #0891b2; }

.card-img-wrap {
  position: relative; overflow: hidden;
  background: var(--off); aspect-ratio: 1;
}
.card-img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 20px; transition: transform .6s ease;
}
.product-card:hover .card-img { transform: scale(1.07); }

.card-hover-overlay {
  position: absolute; inset: 0;
  background: rgba(17,34,101,.78);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  opacity: 0; transition: var(--t);
  backdrop-filter: blur(4px);
}
.product-card:hover .card-hover-overlay { opacity: 1; }

.btn-quick-view {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--blue);
  font-weight: 700; font-size: .82rem;
  padding: 10px 22px; border-radius: 50px;
  border: none; cursor: pointer;
  transform: translateY(8px); opacity: 0;
  transition: var(--t) .05s;
}
.product-card:hover .btn-quick-view { transform: translateY(0); opacity: 1; }
.btn-quick-view:hover { background: var(--blue); color: white; }

.btn-card-order {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: white;
  font-weight: 600; font-size: .82rem;
  padding: 9px 20px; border-radius: 50px;
  transform: translateY(8px); opacity: 0;
  transition: var(--t) .1s;
}
.product-card:hover .btn-card-order { transform: translateY(0); opacity: 1; }

.card-body { padding: 20px 22px 22px; }
.card-brand { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 6px; }
.card-title { font-family: 'Cormorant Garamond',serif; font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.card-desc { font-size: .82rem; color: var(--text-lt); line-height: 1.7; margin-bottom: 12px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.card-tags span { font-size: .68rem; font-weight: 600; color: var(--blue); background: var(--blue-pale); border: 1px solid var(--border-b); padding: 3px 9px; border-radius: 50px; }

.card-footer { display: flex; flex-direction: column; align-items: flex-start; padding-top: 14px; border-top: 1px solid var(--border); gap: 8px; }
.card-stars { font-size: .82rem; color: var(--gold); }
.card-stars small { color: var(--text-lt); font-size: .75rem; }
.card-price-wrap { display: flex; align-items: center; }
.card-price { font-size: 1.05rem; font-weight: 700; color: var(--blue); letter-spacing: .3px; }
.card-footer .btn-order { align-self: flex-end; margin-top: 2px; }

.btn-order {
  display: inline-block; background: var(--blue); color: white;
  font-size: .78rem; font-weight: 700;
  padding: 8px 18px; border-radius: 50px; transition: var(--t); white-space: nowrap;
}
.btn-order:hover { background: var(--blue-deep); transform: translateY(-1px); }

/* ---- PRODUCT MODAL ---- */
.product-modal {
  position: fixed; inset: 0; z-index: 5000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: var(--t);
}
.product-modal.open { opacity: 1; visibility: visible; }

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,20,60,.75); backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-box {
  position: relative; z-index: 2;
  background: white; border-radius: var(--r-xl);
  max-width: 860px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  box-shadow: 0 40px 120px rgba(0,0,0,.4);
  transform: scale(.92) translateY(20px);
  transition: var(--t);
}
.product-modal.open .modal-box { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--off); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-lt); transition: var(--t);
}
.modal-close:hover { background: var(--border); color: var(--text); }

.modal-inner { display: grid; grid-template-columns: 1fr 1fr; }

.modal-img-side {
  background: var(--off);
  border-radius: var(--r-xl) 0 0 var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 32px; min-height: 400px;
}
.modal-img-main img {
  max-width: 280px; max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(30,58,138,.2));
  animation: floatImg 5s ease-in-out infinite;
}

.modal-info-side { padding: 48px 40px; }
.modal-brand { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 8px; }
.modal-title { font-family: 'Cormorant Garamond',serif; font-size: 1.9rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.2; }
.modal-stars { color: var(--gold); font-size: .9rem; margin-bottom: 16px; }
.modal-stars span { color: var(--text-lt); font-size: .82rem; margin-left: 6px; }
.modal-desc { font-size: .92rem; color: var(--text-lt); line-height: 1.8; margin-bottom: 16px; }
.modal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.modal-tags span { font-size: .7rem; font-weight: 600; color: var(--blue); background: var(--blue-pale); border: 1px solid var(--border-b); padding: 4px 10px; border-radius: 50px; }
.modal-benefits { margin-bottom: 28px; }
.modal-benefits p { font-size: .87rem; color: var(--text-md); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.modal-benefits p::before { content: '✓'; color: #22c55e; font-weight: 700; }

.btn-modal-order {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: white;
  font-weight: 700; font-size: 1rem;
  padding: 16px 32px; border-radius: 50px;
  transition: var(--t); box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-modal-order:hover { background: #1ea952; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,211,102,.5); }

/* ---- WHY US ---- */
.why-us {
  padding: 110px 0; position: relative;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 50%, #1a337d 100%);
  overflow: hidden;
}
.why-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 20% 80%, rgba(212,175,55,.08) 0, transparent 40%),
                    radial-gradient(circle at 80% 20%, rgba(59,130,246,.08) 0, transparent 40%);
}

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 36px 28px; text-align: center;
  transition: var(--t); backdrop-filter: blur(8px);
}
.why-card:hover { background: rgba(255,255,255,.12); border-color: rgba(212,175,55,.4); transform: translateY(-6px); }
.why-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(212,175,55,.15); border: 1px solid rgba(212,175,55,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 18px;
  transition: var(--t);
}
.why-card:hover .why-icon-wrap { background: rgba(212,175,55,.25); transform: scale(1.08); }
.why-card h3 { font-family: 'Cormorant Garamond',serif; font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 10px; }
.why-card p { font-size: .87rem; color: rgba(255,255,255,.65); line-height: 1.75; }

/* ---- LIFESTYLE BANNER ---- */
.lifestyle-banner { padding: 110px 0; background: var(--off); }
.lifestyle-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.lifestyle-imgs { position: relative; height: 420px; }
.limg { position: absolute; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.limg img { width: 100%; height: 100%; object-fit: contain; background: white; }
.limg-top { width: 240px; height: 240px; top: 0; right: 20px; animation: floatImg 5s ease-in-out infinite; }
.limg-bottom { width: 260px; height: 260px; bottom: 0; left: 0; animation: floatImg 5s ease-in-out infinite 2s; }
.ingredient-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.ingr-chip {
  font-size: .82rem; font-weight: 500;
  color: var(--blue); background: var(--blue-pale);
  border: 1px solid var(--border-b);
  padding: 8px 16px; border-radius: 50px;
  transition: var(--t);
}
.ingr-chip:hover { background: var(--blue); color: white; border-color: var(--blue); transform: translateY(-2px); }

/* ---- REVIEWS ---- */
.reviews { padding: 110px 0; background: var(--white); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: var(--t); position: relative; overflow: hidden;
}
.review-card:hover { box-shadow: var(--sh-md); border-color: var(--border-b); transform: translateY(-4px); }

.featured-rv {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-color: var(--blue);
}
.rv-quote {
  position: absolute; top: 8px; left: 16px;
  font-family: 'Cormorant Garamond',serif; font-size: 5rem; line-height: 1;
  color: rgba(255,255,255,.1); pointer-events: none;
}
.rv-stars { color: var(--gold); font-size: .95rem; letter-spacing: 2px; margin-bottom: 12px; }
.gold-stars { color: var(--gold-light); }
.review-card p { font-size: .88rem; color: var(--text-lt); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.featured-rv p { color: rgba(255,255,255,.82); }
.reviewer { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.featured-rv .reviewer { border-color: rgba(255,255,255,.15); }
.rv-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue),var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.gold-av { background: linear-gradient(135deg,var(--gold-dark),var(--gold)); color: var(--blue-deep); }
.reviewer strong { display: block; font-size: .88rem; color: var(--text); }
.featured-rv .reviewer strong { color: white; }
.reviewer small { font-size: .75rem; color: var(--text-lt); }
.featured-rv .reviewer small { color: rgba(255,255,255,.55); }

/* ---- CONTACT ---- */
.contact { padding: 110px 0; background: var(--off); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 18px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 22px 26px;
  transition: var(--t);
}
.contact-card:hover { box-shadow: var(--sh-sm); border-color: var(--border-b); }
.cc-icon { font-size: 1.8rem; flex-shrink: 0; }
.wa-icon-wrap { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.cc-content h4 { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.cc-content p { font-size: .87rem; color: var(--text-lt); margin-bottom: 5px; }
.cc-content a { font-size: .82rem; font-weight: 600; color: var(--blue); transition: var(--t); }
.cc-content a:hover { color: var(--blue-light); }
.wa-link-text { color: #25D366 !important; }
.wa-link-text:hover { color: #1ea952 !important; }

.contact-cta-box {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
}
.cta-box-inner {
  padding: 48px 40px; display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 12px;
  height: 100%; position: relative;
}
.cta-glow {
  position: absolute; top: -60px; right: -60px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(37,211,102,.1), transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.cta-wa-icon {
  width: 72px; height: 72px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
}
.cta-box-inner h3 { font-family:'Cormorant Garamond',serif; font-size:1.7rem; font-weight:700; color:var(--text); }
.cta-box-inner p { font-size:.9rem; color:var(--text-lt); max-width:280px; }

.btn-whatsapp-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  font-weight: 700; font-size: .98rem;
  padding: 16px 36px; border-radius: 50px;
  transition: var(--t); box-shadow: 0 8px 24px rgba(37,211,102,.35);
  margin-top: 4px;
}
.btn-whatsapp-big:hover { background: #1ea952; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(37,211,102,.5); }

.social-row { margin-top: 8px; width: 100%; }
.social-row span { display: block; font-size: .72rem; color: var(--text-lt); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; text-align: center; }
.social-row-icons { display: flex; gap: 10px; justify-content: center; }
.sicon {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-lt); transition: var(--t);
}
.sicon:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); transform: translateY(-2px); }

/* ---- FOOTER ---- */
.footer { background: var(--blue-deep); color: rgba(255,255,255,.75); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 48px; padding: 80px 0 60px;
}
.footer-logo {
  font-family: 'Cormorant Garamond',serif; font-size:1.7rem; font-weight:700;
  color:white; margin-bottom:14px; display:block;
}
.footer-logo em { color:var(--gold); font-style:normal; }
.footer-brand-col p { font-size:.875rem; line-height:1.75; color:rgba(255,255,255,.6); margin-bottom:20px; max-width:260px; }

.footer-socials { display:flex; gap:10px; }
.fsoc {
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.65); transition:var(--t);
}
.fsoc:hover { background:var(--gold); color:var(--blue-deep); transform:translateY(-2px); }

.footer-col h5 { font-size:.8rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:white; margin-bottom:18px; }
.footer-col ul { display:flex; flex-direction:column; gap:9px; }
.footer-col a { font-size:.87rem; color:rgba(255,255,255,.55); transition:var(--t); }
.footer-col a:hover { color:var(--gold); padding-left:6px; }
.footer-col p { font-size:.87rem; color:rgba(255,255,255,.55); margin-bottom:7px; }

.footer-wa {
  display:inline-flex; align-items:center; gap:8px;
  background:#25D366; color:white;
  font-size:.82rem; font-weight:600;
  padding:9px 18px; border-radius:50px; margin-top:14px;
  transition:var(--t);
}
.footer-wa:hover { background:#1ea952; transform:translateY(-1px); }

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.1);
  padding:22px 0; text-align:center;
  font-size:.82rem; color:rgba(255,255,255,.4);
}

/* ---- FLOATING WHATSAPP ---- */
.wa-float {
  position:fixed; bottom:30px; right:30px; z-index:999;
  display:flex; align-items:center; gap:10px;
  background:#25D366; color:white;
  padding:14px 22px 14px 16px; border-radius:50px;
  box-shadow:0 8px 32px rgba(37,211,102,.5);
  transition:var(--t);
  animation:waBounce 4s ease-in-out infinite;
}
.wa-float:hover { background:#1ea952; transform:scale(1.06); box-shadow:0 12px 44px rgba(37,211,102,.65); animation:none; }
.wa-float-label { font-weight:700; font-size:.85rem; white-space:nowrap; }
@keyframes waBounce {
  0%,80%,100% { transform:translateY(0); }
  90% { transform:translateY(-6px); }
}

/* ---- RESPONSIVE ---- */
@media (max-width:1100px) {
  .slide-inner { grid-template-columns:1fr; text-align:center; padding-top:100px; }
  .slide-visual { order:-1; }
  .slide-actions { justify-content:center; }
  .slide-img { max-width:260px; max-height:260px; }
  .slide-glow { width:260px; height:260px; }

  .about-grid { grid-template-columns:1fr; gap:48px; }
  .about-slider-wrap { max-width:360px; margin:0 auto; }
  .products-grid { grid-template-columns:repeat(2,1fr); }
  .lifestyle-inner { grid-template-columns:1fr; gap:48px; }
  .lifestyle-imgs { max-width:480px; margin:0 auto; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .footer-brand-col { grid-column:1/-1; }
}

@media (max-width:900px) {
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .reviews-grid { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
  .contact-grid { grid-template-columns:1fr; }
  .modal-inner { grid-template-columns:1fr; }
  .modal-img-side { border-radius:var(--r-xl) var(--r-xl) 0 0; min-height:280px; }
  .modal-info-side { padding:28px; }
}

@media (max-width:768px) {
  .nav-links, .nav-wa-btn { display:none; }
  .hamburger { display:flex; }
  .nav-links.open {
    display:flex; flex-direction:column; gap:4px;
    position:fixed; top:72px; left:0; right:0;
    background:white; padding:20px;
    box-shadow:var(--sh-lg); z-index:999; border-top:1px solid var(--border);
  }
  .nav-links.open .nav-link { padding:13px 16px; border-radius:var(--r-sm); display:block; }

  .products-grid { grid-template-columns:1fr; max-width:380px; margin:0 auto; }
  .why-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:28px; }
  .about-slider-wrap { max-width: 300px; }
}

@media (max-width:480px) {
  .slide-title { font-size:2rem; }
  .slide-subtitle { font-size: 0.9rem; }
  .section-title { font-size:1.7rem; }
  .wa-float-label { display:none; }
  .wa-float { padding:14px; border-radius:50%; }
  .btn-slide-primary, .btn-slide-ghost { padding: 10px 18px; font-size: 0.85rem; }
  .slide-inner { padding: 80px 16px 24px; }
  .slide-img { max-width: 200px; max-height: 200px; }
  .about-left { display: flex; justify-content: center; }
  .about-slider-wrap { max-width: 260px; }
  .product-card { max-width: 100%; }
  .card-body { padding: 16px; }
  .lifestyle-imgs { flex-direction: column; align-items: center; }
  .limg { max-width: 220px; }
  .section-sub { font-size: 0.9rem; }
  .container { padding: 0 14px; }
  .review-card { padding: 20px; }
  .why-card { padding: 22px; }
  .contact-card { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* 3D Product Effect */
.product-card {
    perspective: 1000px;
}
.product-card img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.product-card:hover img {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
