/* ===== HERO SECTION ===== */
#home {
  position: relative;
  background: linear-gradient(180deg, #fffaf3 0%, #fff 100%);
}

#home .hero-bg {
  pointer-events: none;
  z-index: 0;
}

#home .container {
  position: relative;
  z-index: 1;
}

/* Hilangkan kotak dan bayangan */
.hero-visual img.hero-img {
  display: block;
  width: 100%;
  height: auto;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  position: relative;
  z-index: 2;
}

/* ===== Efek Glow Lembut ===== */
.glow-effect {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.45) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  to { transform: translate(-50%, -50%) scale(1.15); opacity: 0.5; }
}

/* ===== Efek Masuk (Reveal) ===== */
.reveal-left {
  animation: fadeInRight 1.2s ease;
}
.reveal-right {
  animation: fadeInLeft 1.2s ease;
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Tombol Outline */
.btn-outline-brown {
  border-color: #3F2512;
  color: #3F2512;
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn-outline-brown:hover {
  background-color: #3F2512;
  color: #fff;
}

/* Badge & Ikon kecil */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .8rem;
  background: #fff3d4;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
}
.feature-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff6e0;
}

.hero-visual{
  position: relative;
  overflow: visible;          
  isolation: isolate;          
  min-height: 360px;           
}

.hero-visual .hero-img{
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.hero-visual::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 560px;                
  height: 560px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;

  background: radial-gradient(
    circle,
    rgba(191, 90, 12, 0.55) 0%,     
    rgba(245, 158, 11, 0.30) 35%,   
    rgba(245, 158, 11, 0.12) 55%,
    rgba(245, 158, 11, 0.00) 72%
  );
  filter: blur(70px);
  animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse{
  from { transform: translate(-50%, -50%) scale(1);   opacity: .85; }
  to   { transform: translate(-50%, -50%) scale(1.12); opacity: .55; }
}


:root{
  --amber-50:#fffbeb; --amber-100:#fef3c7; --amber-200:#fde68a; --amber-300:#fcd34d;
  --amber-500:#f59e0b; --amber-600:#d97706; --amber-900:#78350f;
  --brown:#89512A; --brown-2:#864819; --brown-ww: #783f16;
}
html{scroll-behavior:smooth}
.object-cover{object-fit:cover}
.bg-amber-50{background:var(--amber-50)}
.bg-brown{background:var(--brown)}
.text-amber{color:var(--amber-100)}

a.footer-link{color:var(--amber-100); text-decoration:none}
a.footer-link:hover{color:#fff}
.text-brown { color: var(--brown) !important; }  

/* ===== Navbar underline & active ===== */
#mainNav .nav-link {
  color: #3F2512; 
}
#mainNav .nav-link{
  position:relative;
  font-weight:500;
}
#mainNav .nav-link::after{
  content:"";
  position:absolute;
  left:10%;
  right:10%;
  bottom:-6px;
  height:3px;
  border-radius:3px;
  background:var(--brown-2);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .25s ease;
}
#mainNav .nav-link:hover{color:var(--brown-ww)}
#mainNav .nav-link:hover::after{transform:scaleX(1)}
#mainNav .nav-link.active{
  color:var(--brown-ww) !important;
}
#mainNav .nav-link.active::after{transform:scaleX(1)}

.hero{ background: radial-gradient(1200px 400px at 20% -10%, #fff, #fff),
radial-gradient(900px 300px at 90% 10%, #fff7ea, #fff),
linear-gradient(180deg, #fff, #fffef9); }
.hero-badge{ display:inline-flex; gap:.5rem; align-items:center; padding:.35rem .7rem; border-radius:999px; font-weight:600; font-size:.9rem; background:#fff7ea; border:1px solid #fde68a }

/* Tombol outline coklat */
.btn-outline-brown {
  border: 2px solid #89512A;      
  color: #89512A;                
  background: transparent;        
  font-weight: 500;
  transition: all .25s ease;
  border-radius: 8px;             
  padding: .5rem 1.25rem;
}

.btn-outline-brown:hover,
.btn-outline-brown:focus {
  background: #89512A;
  color: #fff;
  border-color: #89512A;
  box-shadow: 0 6px 14px rgba(63, 37, 18, 0.25);
}

/* ===== Hero image sizing ===== */
.hero-visual{max-width:520px; height:360px}
@media (min-width:992px){
  .hero-visual{max-width:520px; height:420px}
}

/* ====== Judul & Garis ====== */
.section-title{
  font-weight: 800;
  letter-spacing: .2px;
}
.section-hr{
  width: 96px;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  border-radius: 999px;
}

/* ====== Kartu Produk ====== */
:root{
  --card-brown-soft: #5a3a1f;  
  --card-brown-soft-2: #4b311b; 
  --cream-soft: #FFF8EC;
}

.product-box{
  position: relative;
  background: linear-gradient(180deg, var(--card-brown-soft) 0%, var(--card-brown-soft-2) 100%);
  border-radius: 18px;
  padding: 0.5rem 0.5rem 0.7rem;
  max-width: 350px;           
  height: 100%;
  margin-inline: auto;        
  overflow: visible;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  transition: transform .18s ease, box-shadow .18s ease;
  isolation: isolate;
}
.product-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.section-header-products{
  margin-bottom: clamp(5rem, 8vw, 9rem);
}

.product-figure{
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -48%); 
  z-index: 2;
  width: clamp(200px, 80%, 400px);
  filter: drop-shadow(0 16px 28px rgba(52, 50, 50, 0.18));
  pointer-events: none;
  margin-top: 10px;
}

.product-img{
  display: block;
  width: 95%;          
  max-width: none;      
  height: auto;
  transform: translateX(0%); 
}

.product-spacer{ height: 180px; }

/* Konten */
.product-body{ position: relative; z-index: 1; }
.text-cream{ color: var(--cream-soft); }

/* Chip kontras di background soft */
.nutri-chip.dark{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  color: #FFE7B8;
  font-weight: 600;
}

/* Glow disoftkan agar tidak mencolok */
.product-box::before{
  content:"";
  position:absolute;
  left:50%; top:0;
  transform:translate(-50%, -60%);
  width: 460px; height: 460px; border-radius:50%;
  background: radial-gradient(
    circle,
    rgba(245,158,11,.25) 0%,
    rgba(245,158,11,.10) 38%,
    rgba(245,158,11,0) 68%
  );
  filter: blur(60px);
  z-index: 0;
  pointer-events:none;
}

/* ============== BREAKPOINTS ============== */
/* Mobile */
@media (max-width: 576px){
  .product-figure{
    width: clamp(100px, 50vw, 150px);
    transform: translate(-50%, -46%);
  }
  .product-img{
    width: 89%;
    transform: translateX(4%);
  }
  .product-spacer{
    height: 120px;
  }
  .product-box {
    height: 95%;
    width: 65%;
  }
  .product-figure{
    margin-top: 35px;
  }
  .section-header-products{
  margin-bottom: clamp(3.5rem, 6.5vw, 7rem);
}
}

@media (min-width: 576px) and (max-width: 768px){
  .product-figure{
    width: clamp(100px, 50%, 195px);
    transform: translate(-50%, -48%);
  }
  .product-img{
    width: 89%;
    transform: translateX(3%);
  }
  .product-spacer{
    height: 130px;
  }
  .product-box {
    height: 93%;
    width: 80%;
  }
  .product-figure{
    margin-top: 40px;
  }
  .section-header-products{
  margin-bottom: clamp(3.5rem, 6.5vw, 7rem);
}
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px){
  .product-figure{
    width: clamp(200px, 58%, 250px);
    transform: translate(-50%, -48%);
  }
  .product-img{
    width: 93%;
    transform: translateX(0%);
  }
  .product-spacer{
    height: 125px;
  }

  .product-box {
    height: 95%;
  }
  .section-header-products{
  margin-bottom: clamp(4rem, 9vw, 9rem);
}
}

/* ===== Tentang Kami (About) ===== */
#about-cta { scroll-margin-top: 90px; }

/* Heading + garis memanjang */
.section-heading h2{
  font-weight: 800;
  color: var(--brown, #3F2512);
}
.heading-hr{
  height: 4px;
  flex: 1 1 auto;
  background: linear-gradient(90deg, var(--amber-500,#f59e0b), var(--amber-600,#d97706));
  border-radius: 999px;
  min-width: 120px;
}

.about-photo{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--amber-200,#fde68a);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  background: #fff7e6;
  margin: 0;              
}
.about-photo img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-points li{
  display:flex; align-items:center; gap:.6rem;
  padding:.35rem 0; color:#4b5563;
}
.about-points i{
  color: var(--amber-600,#d97706);
  background:#fff3cc; width:32px; height:32px; border-radius:10px;
  display:grid; place-items:center; font-size:16px;
  border:1px solid #ffe8a3;
}

/* ===== Animasi masuk & keluar (on scroll) ===== */
.reveal-on-scroll{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible{
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce){
  .reveal-on-scroll{ opacity:1 !important; transform:none !important; transition:none !important; }
}

/* ==== PRODUK ==== */
/* Mobile */
#produk .scroll-belt{ grid-auto-columns: 80% !important; }

/* Tablet */
@media (min-width: 576px){
  #produk .scroll-belt{ grid-auto-columns: calc(46% - .5rem) !important; }
}

/* Desktop */
@media (min-width: 992px){
  #produk .scroll-belt{ grid-auto-columns: calc(31% - .67rem) !important; }
}

#produk .p-card .thumb{
  aspect-ratio: 4 / 3;  
}

#produk .p-card .p-3{ padding-top: 0.9rem; padding-bottom: 1.0rem; }

/* ===== MANFAAT ===== */
#benefits { scroll-margin-top: 90px; }

.benefit-hr{
  height:4px; flex:1 1 auto; min-width:120px; border-radius:999px;
  background: linear-gradient(270deg, var(--amber-600, #d97706), var(--amber-500, #f59e0b));
}

.benefit-figure{
  margin:0; border-radius:20px; overflow:hidden;
  border:1px solid rgba(245, 158, 11, .25);
  box-shadow:0 12px 28px rgba(0,0,0,.08);
  background:#fffef9;
}
.benefit-figure img{ display:block; width:100%; height:auto; object-fit:cover; }

/* List manfaat */
.benefit-list li{
  display:flex; align-items:flex-start; gap:.6rem; padding:.38rem 0; color:#4b5563;
}
.benefit-list i{
  color: var(--amber-600, #d97706);
  background:#fff3cc; width:28px; height:28px; border-radius:10px;
  display:grid; place-items:center; font-size:14px;
  border:1px solid #ffe8a3; margin-top:.15rem;
}

/* Reveal-on-scroll */
.reveal-benefits{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal-benefits.is-visible{
  opacity: 1;
  transform: none;
}

@media (max-width: 575.98px){
  .benefit-list li{ padding:.45rem 0; }
}


/* ===== Kandungan (Ingredients) ===== */
#ingredients-ww { scroll-margin-top: 90px; }

/* Heading garis kiri/kanan */
.ing-hr{
  height:4px; flex:1 1 auto; min-width:120px; border-radius:999px;
  background: linear-gradient(90deg, var(--amber-500,#f59e0b), var(--amber-600,#d97706));
}

.ing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
}

/* Desktop */
@media (min-width: 992px){
  .ing-grid{ grid-template-columns: repeat(4, 1fr); } 
}
/* Large desktop */
@media (min-width: 1200px){
  .ing-grid{ grid-template-columns: repeat(5, 1fr); }
}

.ing-item{
  text-align:center;
}

.ing-img{
  width: 100%;
  aspect-ratio: 1 / 1;      
  object-fit: contain;       
  background: transparent;   
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.08));
  transition: transform .22s ease, filter .22s ease;
}
.ing-item:hover .ing-img{
  transform: translateY(-3px);
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.10));
}

/* Judul & teks */
.ing-title{
  margin: .5rem 0 .25rem;
  font-weight: 800;
  color: var(--brown-800,#6b2f0b);
  font-size: 1rem;
}
.ing-text{
  margin: 0 auto;
  color: #4b5563;
  font-size: .95rem;
  max-width: 28ch; 
}

/* Reveal-on-scroll */
.reveal-ingredients{
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal-ingredients.is-visible{ opacity: 1; transform: none; }

/* Progress bar halus (opsional) */
.ing-progress{ height:4px; width:100%; background:#f7f4ec; border-radius:999px; overflow:hidden; }
.ing-progress span{ display:block; height:100%; width:0%; background:linear-gradient(90deg, var(--amber-500), var(--amber-600)); transition: width .6s ease; }


/* ===== Uji Lab ===== */
.lab-card{
  background:#fffdf5;
  border:1px solid #ffe8a3;
  border-radius:16px;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
  overflow:hidden;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  height:100%; display:flex; flex-direction:column;
  max-width:520px;         
  margin-inline:auto;     
}
.lab-card:hover{
  transform: translateY(-3px);
  box-shadow:0 16px 34px rgba(0,0,0,.08);
  border-color:#f7c74c;
}
.lab-head{ display:flex; align-items:center; gap:.75rem; padding:1rem 1rem .5rem; }
.pdf-chip{
  display:inline-flex; align-items:center; gap:.35rem;
  background:#fee2e2; color:#b91c1c; border:1px solid #fecaca;
  padding:.15rem .55rem; border-radius:999px; font-size:.8rem; font-weight:600;
}
.lab-meta strong{ display:block; color:#4a2c12; }
.lab-meta small{ font-size:.8rem; }

.lab-metrics{ padding:.5rem 1rem 0; }
.lab-metrics li{
  display:grid; grid-template-columns:1fr auto auto; align-items:center;
  gap:.75rem; padding:.4rem 0; border-bottom:1px dashed #ffe8a3;
}
.lab-metrics li:last-child{ border-bottom:0; }
.lab-metrics span{ color:#6b7280; }
.lab-metrics b{ color:#4a2c12; }
.lab-metrics i{
  font-style:normal; font-size:.72rem; padding:.15rem .5rem; border-radius:999px;
  border:1px solid #d1fae5; background:#ecfdf5; color:#0f766e; font-weight:700;
}
.lab-metrics i.warn{ border-color:#fee8a3; background:#fff7db; color:#b7791f; }

.lab-actions{ margin-top:auto; padding: .75rem 1rem 1rem; display:flex; gap:.5rem; flex-wrap:wrap; justify-content:center; }

/* Reveal animasi */
.reveal-ready #uji-lab .reveal{ opacity:0; transform: translateY(12px); }
#uji-lab .reveal.in-view{ opacity:1; transform:none; transition: opacity .45s ease, transform .45s ease; }

/* Modal PDF responsif*/
.ratio-embed{ --bs-aspect-ratio: 75%; }          
@media (min-width:768px){ .ratio-embed{ --bs-aspect-ratio: 56.25%; } } 
.modal-xl{ --bs-modal-width: min(1140px, 96vw); }

section[id]{ scroll-margin-top: 88px; } 

/* Reveal animasi */
.reveal-ready #uji-lab .reveal{ opacity:0; transform: translateY(12px); }
#uji-lab .reveal.in-view{ opacity:1; transform:none; transition: opacity .45s ease, transform .45s ease; }

/* Responsif kecil */
@media (max-width: 575px){
  .lab-metrics li{ grid-template-columns: 1fr auto; }
  .lab-metrics i{ display:none; } 
}

/* ===== Testimonials ===== */
.stars{ color:#f59e0b; letter-spacing:.15em }
.testi-card{ border:1px solid #ffe8a3; background:#fffdf5; border-radius:16px }

/* ===== FAQ ===== */
.faq-list{ display:grid; gap:.75rem }
.faq-item{ border:1px solid #ffe8a3; background:#fff; border-radius:16px; overflow:hidden }
.faq-toggle{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  gap:1rem; padding:1rem 1.25rem; background:#fff; border:0; text-align:left; font-weight:600
}
.faq-toggle i{ transition: transform .2s ease }
.faq-item.open .faq-toggle{ color:#bb7a00; background:#fff9ea }
.faq-item.open .faq-toggle i{ transform:rotate(90deg) }
.faq-content{ display:none; padding:0 1.25rem 1rem; color:#6b7280 }
.faq-item.open .faq-content{ display:block }

/* ===== Video testimonials ===== */
.video-scroller{ position:relative; }
.video-scroller::before,
.video-scroller::after{
  content:""; position:absolute; top:0; bottom:0; width:48px; z-index:2; pointer-events:none;
}
.video-scroller::before{
  left:-2px;  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.video-scroller::after{
  right:-2px; background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}

.video-belt{
  --gap: 1rem;
  display:grid; grid-auto-flow: column;
  gap: var(--gap);
  overflow-x:auto;
  padding: .25rem 2px .5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.video-belt{ grid-auto-columns: 88%; }
@media (min-width:576px){ .video-belt{ grid-auto-columns: 58%; } }
@media (min-width:992px){ .video-belt{ grid-auto-columns: calc((100% - (var(--gap) * 2)) / 3); } }

.video-card{
  scroll-snap-align: start;
  background:#fffdf5; border:1px solid #ffe8a3; border-radius:16px;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
  overflow:hidden;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.video-card:hover{
  transform: translateY(-3px);
  box-shadow:0 16px 34px rgba(0,0,0,.08);
  border-color:#f7c74c;
}
.video-meta{ padding:.9rem 1rem 1rem; }
.video-meta h6{ color:#4a2c12; }
.video-meta small{ color:#6b7280; }

/* scrollbar amber */
.video-belt::-webkit-scrollbar{ height: 10px; }
.video-belt::-webkit-scrollbar-track{ background:#fff5d6; border-radius:999px; }
.video-belt::-webkit-scrollbar-thumb{
  background: linear-gradient(90deg, #f59e0b, #fcd34d); border-radius:999px;
}
.video-belt{ scrollbar-color:#f59e0b #fff5d6; scrollbar-width:thin; }

/* ===== Review (text) horizontal cards ===== */
.review-scroller{ position:relative; margin-top:.5rem; }
.review-scroller::before,
.review-scroller::after{
  content:""; position:absolute; top:0; bottom:0; width:48px; z-index:2; pointer-events:none;
}
.review-scroller::before{
  left:-2px;  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.review-scroller::after{
  right:-2px; background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}

.review-belt{
  --gap: 1rem;
  display:grid; grid-auto-flow: column;
  gap: var(--gap);
  overflow-x:auto;
  padding: .25rem 2px .5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.review-belt{ grid-auto-columns: 88%; }
@media (min-width:576px){ .review-belt{ grid-auto-columns: 58%; } }
@media (min-width:992px){ .review-belt{ grid-auto-columns: calc((100% - (var(--gap) * 2)) / 3); } }

.review-card{
  scroll-snap-align: start;
  background:#fffdf5; border:1px solid #ffe8a3; border-radius:16px;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
  overflow:hidden;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.review-card:hover{
  transform: translateY(-3px);
  box-shadow:0 16px 34px rgba(0,0,0,.08);
  border-color:#f7c74c;
}
.review-body{ padding:1rem 1rem 1.05rem; }
.stars{ color:#f59e0b; letter-spacing:.15em; }

/* scrollbar amber */
.review-belt::-webkit-scrollbar{ height: 10px; }
.review-belt::-webkit-scrollbar-track{ background:#fff5d6; border-radius:999px; }
.review-belt::-webkit-scrollbar-thumb{
  background: linear-gradient(90deg, #f59e0b, #fcd34d); border-radius:999px;
}
.review-belt{ scrollbar-color:#f59e0b #fff5d6; scrollbar-width:thin; }

.reveal-ready #testi .video-card,
.reveal-ready #testi .review-card{
  opacity:0; transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;
  will-change: opacity, transform;
}
#testi .video-card.in-view,
#testi .review-card.in-view{
  opacity:1; transform:none;
}

.video-scroller::before,
.video-scroller::after,
.review-scroller::before,
.review-scroller::after {
  display: none !important;
}

.video-belt,
.review-belt{
  scrollbar-width: none !important;    
  -ms-overflow-style: none !important; 
}
.video-belt::-webkit-scrollbar,
.review-belt::-webkit-scrollbar{
  display: none !important;            
}

/* ===== Footer ===== */
.social-btn{ color:#fcd34d; text-decoration:none }
.social-btn:hover{ color:#fff }

.btn-shopee {
  background: #ee4d2d;       
  border-color: #ee4d2d;
  color: #fff;
}
.btn-shopee:hover,
.btn-shopee:focus {
  background: #d8431f;
  border-color: #d8431f;
  color: #fff;
}

.btn-lazada {
  background: #1f2a5a;         
  border-color: #1f2a5a;
  color: #fff;
}
.btn-lazada:hover,
.btn-lazada:focus {
  background: #172046;
  border-color: #172046;
  color: #fff;
}

:root{ --wa:#25d366; }

.btn-outline-warning.btn-wa{
  border-color: var(--wa);
  color: var(--wa);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-outline-warning.btn-wa:hover,
.btn-outline-warning.btn-wa:focus,
.btn-outline-warning.btn-wa:active{
  background: var(--wa);
  border-color: var(--wa);
  color: #fff;
}
.btn-outline-warning.btn-wa:focus-visible{
  box-shadow: 0 0 0 .25rem rgba(37,211,102,.35);
}

.floating-shops {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2.5vh;          
  z-index: 1050;
  display: flex;
  gap: 0.75rem;            
  background: transparent; 
  padding: 0;              
  border: 0;
  box-shadow: none;
}

.shop-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;       
  height: 40px;
  padding: 0 12px;      
  border-radius: 999px;   
  background: #fff;       
  border: 1px solid #eaeaea;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}

.shop-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  background: #fefefe;
}

.shop-badge img {
  width: 80px;
  height: auto;    
  display: block;
  object-fit: contain;
}

@media (max-width: 575px) {
  .shop-badge {
    min-width: 70px;
    height: 36px;
    padding: 0 10px;
  }
  .shop-badge img { width: 20px; }

.floating-shops{
  bottom: clamp(12px, 2.5vh, 40px);
  gap: clamp(6px, 1.5vw, 14px);
}

.shop-badge{
  --h: clamp(36px, 5.5vw, 48px);  
  --px: clamp(10px, 2vw, 18px);       
  height: var(--h);
  min-width: clamp(70px, 16vw, 120px); 
  padding: 0 var(--px);
  border-radius: 999px;
}

.shop-badge img{
  height: calc(var(--h) * 0.62); 
  width: auto;
  max-width: clamp(20px, 10vw, 90px);
  object-fit: contain;
  display: block;
}
}

.wa-fab{
  position:fixed;right:18px;bottom:18px;z-index:1051;width:56px;height:56px;border-radius:50%;
  display:grid;place-items:center;background:#25d366;color:#fff;box-shadow:0 10px 24px rgba(0,0,0,.18)
}
.wa-fab i {
  font-size: 24px; 
  line-height: 1;
}
.wa-fab:hover{filter:brightness(.95)}

#testi .video-card iframe{ background:#000; }

@media (max-width:576px){
  .shop-dock{ bottom:72px }
}

#testi .video-card,
#testi .review-card{
  backface-visibility: hidden;
  will-change: transform, opacity;
  transform: translateZ(0);
}

.video-belt { scroll-snap-type: x proximity; }

#testi .video-card,
#testi .video-card iframe,
#testi .review-card{
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform, opacity;
}

.video-belt, .review-belt{
  will-change: scroll-position;
  contain: content;
}

.video-belt, .review-belt { scroll-snap-type: x proximity !important; }

#testi .ratio { 
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
  contain: paint;            
}
#testi iframe {
  display:block; width:100%; height:100%;
  border:0;
  backface-visibility: hidden;
  transform: translateZ(0);
}

#testi .video-card:hover{ transform:none; box-shadow:0 16px 34px rgba(0,0,0,.08); }
