/*
Theme Name: Mamamood
Theme URI: https://www.mamamood.co.id
Author: Jasa Digital Marketing
Author URI: https://www.jasadigitalmarketing.id
*/

/* =========================
   CART OVERLAY
========================= */

.cart-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.4);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:9998;
}

.cart-overlay.active{
  opacity:1;
  visibility:visible;
}

/* =========================
   CART DRAWER
========================= */

.cart-drawer{
  position:fixed;
  top:0;
  right:0;
  width:100%;
  max-width:430px;
  height:100dvh;
  background:#f8f7f5;
  display:flex;
  flex-direction:column;
  transform:translateX(100%);
  transition:transform .35s ease;
  z-index:9999;
  box-shadow:-8px 0 30px rgba(0,0,0,.08);
}

.cart-drawer.active{
  transform:translateX(0);
}

.cart-top{
  padding:24px;
  border-bottom:1px solid #e5e5e5;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.cart-top h2{
  font-size:22px;
  font-family:"Playfair Display", serif;
  font-weight:500;
  color:#3b342f;
}

.close-cart{
  background:none;
  border:none;
  font-size:28px;
  color:#555;
  cursor:pointer;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.cart-body{
  flex:1;
  overflow-y:auto;
  padding:24px;
  min-height:0;
  -webkit-overflow-scrolling:touch;
}

.cart-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  border-bottom:1px solid #e5e5e5;
  padding-bottom:15px;
}

.cart-image{
  position:relative;
  flex-shrink:0;
}

.cart-image img{
  width:78px;
  height:78px;
  object-fit:cover;
  border-radius:10px;
}

.cart-badge{
  position:absolute;
  top:-8px;
  right:-8px;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#35c2a5;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
}

.cart-info{ flex:1; }

.cart-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}

.cart-row h4{
  font-size:15px;
  line-height:1.45;
  font-weight:400;
  color:#3f3a35;
  max-width:190px;
}

.cart-row strong{
  font-size:15px;
  color:#222;
  white-space:nowrap;
}

.cart-info p{
  margin-top:6px;
  font-size:14px;
  color:#888;
}

.cart-actions{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:12px;
}

.qty-box{
  display:flex;
  align-items:center;
  border:1px solid #ddd;
  border-radius:6px;
  overflow:hidden;
  height:38px;
}

.qty-box button{
  width:34px;
  height:38px;
  border:none;
  background:none;
  cursor:pointer;
  font-size:18px;
  color:#444;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.qty-box span{
  width:34px;
  text-align:center;
  font-size:14px;
}

.delete-item{
  border:none;
  background:none;
  cursor:pointer;
  font-size:16px;
  opacity:.7;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.cart-footer{
  flex-shrink:0;
  padding:22px 24px;
  border-top:1px solid #e5e5e5;
  background:#f8f7f5;
  position:sticky;
  bottom:0;
}

.subtotal{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
  font-size:16px;
  color:#3b342f;
}

.subtotal strong{ font-size:18px; }

.checkout-btn{
  width:100%;
  height:52px;
  border-radius:6px;
  background:#35c2a5;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  letter-spacing:.5px;
  transition:.25s ease;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.checkout-btn:hover{ opacity:.9; }

.view-bag{
  display:block;
  text-align:center;
  margin-top:14px;
  font-size:13px;
  color:#666;
  text-decoration:underline;
}

/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:"Inter",sans-serif;
  color:#222;
  overflow-x:hidden;
}

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

/* =========================
   HEADER
========================= */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:75px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 60px;
  z-index:9999;
}

.logo{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.logo img{
  width:160px;
  height:auto;
  display:block;
  object-fit:contain;
  transition:0.25s ease;
}

.logo:hover img{ opacity:0.8; }

.desktop-nav{ display:block; }

.desktop-nav ul{
  display:flex;
  align-items:center;
  gap:40px;
  list-style:none;
}

.desktop-nav li{ position:static; }

.desktop-nav a{
  font-size:18px;
  transition:.25s ease;
}

.desktop-nav a:hover{ opacity:.7; }

.mega-parent{ position:static; }

.mega-menu{
  position:fixed;
  top:75px;
  left:0;
  width:100vw;
  background:#f7f5f4;
  display:grid;
  grid-template-columns:220px 220px 220px 220px 1fr;
  gap:60px;
  padding:55px 70px;
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:999;
}

.mega-parent:hover .mega-menu{
  opacity:1;
  visibility:visible;
}

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

.mega-column h4{
  font-size:18px;
  margin-bottom:10px;
}

.mega-column a{
  font-size:17px;
  color:#4f4a45;
}

.promo{ display:flex; gap:25px; }

.promo-card{ width:250px; }

.promo-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:12px;
}

.promo-card h5{
  font-size:20px;
  margin-top:14px;
  margin-bottom:8px;
}

.promo-card p{ color:#666; }

.icons{
  display:flex;
  align-items:center;
  gap:0;
}

.icons a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  transition:.25s ease;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.icons a:hover{ background:#f2f2f2; }

.hamburger{
  display:none;
  font-size:34px;
  cursor:pointer;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.mobile-overlay{
  position:fixed;
  inset:0;
  background:#fff;
  transform:translateX(-100%);
  transition:.4s ease;
  z-index:99999;
  overflow-y:auto;
}

.mobile-overlay.active{ transform:translateX(0); }

.mobile-header{
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
  border-bottom:1px solid #eee;
}

.mobile-logo{
  font-size:40px;
  font-family:"Playfair Display", serif;
}

.close-menu{
  font-size:30px;
  cursor:pointer;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.mobile-nav{ padding:25px 20px; }

.accordion-item{ border-bottom:1px solid #ddd; }

.accordion-btn{
  width:100%;
  background:none;
  border:none;
  padding:24px 0;
  font-size:20px;
  font-weight:600;
  text-align:left;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.accordion-btn span{ transition:0.3s; }

.accordion-item.active .accordion-btn span{ transform:rotate(90deg); }

.accordion-content{
  max-height:0;
  overflow:hidden;
  transition:0.35s ease;
  display:flex;
  flex-direction:column;
}

.accordion-content a{
  padding:14px 0 14px 20px;
  font-size:17px;
  color:#555;
}

.mobile-bottom{
  padding:30px 25px;
  display:flex;
  flex-direction:column;
  gap:24px;
}

.mobile-bottom a{ font-size:18px; }

.mobile-nav a{
  display:block;
  padding:18px 0;
  border-bottom:1px solid #eee;
  font-size:18px;
}

/* =========================
   HERO
========================= */

.hero{
  height:80vh;
  background:url("https://mamamood.co.id/assets/images/cover-website-1.gif") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.3);
}

.hero-content{
  position:relative;
  text-align:center;
  color:white;
  max-width:800px;
}

.hero h1{
  font-size:55px;
  line-height:1;
  font-family:"Outfit SemiBold", serif;
}

.hero p{
  margin:30px 0;
  font-size:22px;
}

.buttons{
  display:flex;
  justify-content:center;
  gap:20px;
}

.btn{
  padding:18px 40px;
  border-radius:5px;
  font-size:18px;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.primary{
  background:#38c8b5;
  color:white;
}

.secondary{
  border:1px solid white;
  color:white;
}

/* =========================
   COLLECTION HOMEPAGE
========================= */

.collection-homepage{
  width:100%;
  background:#f7f5f4;
  padding-top:90px;
  padding-bottom:90px;
  padding-left:5.625%;
  padding-right:5.625%;
}

.collection-container{
  max-width:1800px;
  margin:0 auto;
}

.collection-heading{
  text-align:center;
  margin-bottom:60px;
}

.collection-heading h2{
  font-size:48px;
  line-height:1.1;
  font-family:"Outfit SemiBold";
  color:#000000;
  margin-bottom:22px;
}

.collection-heading p{
  font-size:20px;
  color:#5c5752;
}

.collection-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.collection-card{
  position:relative;
  overflow:hidden;
  border-radius:10px;
  height:calc(65vh - 10px);
  cursor:pointer;
}

.collection-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s ease;
}

.collection-card:hover img{ transform:scale(1.04); }

.collection-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,.05));
}

.collection-content{
  position:absolute;
  left:50%;
  bottom:45px;
  transform:translateX(-50%);
  width:100%;
  padding:0 30px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.collection-content span{
  color:white;
  font-size:20px;
  text-align:center;
  margin-bottom:28px;
}

.collection-content a{
  min-width:320px;
  height:40px;
  background:#37c6a7;
  color:white;
  border-radius:4px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  letter-spacing:.5px;
  transition:.25s ease;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.collection-content a:hover{ opacity:.9; }

/* =========================
   FOOTER
========================= */

.mamamood-footer{
  background:#99C1B6;
  padding:70px 70px 60px;
  font-family:'Poppins',sans-serif;
  color:white;
}

.footer-container{
  display:flex;
  justify-content:space-between;
  gap:100px;
}

.footer-left{ width:30%; }

.footer-logo{
  font-weight:700;
  line-height:3;
}

.footer-left p{
  font-size:14px;
  line-height:1.8;
  margin-bottom:22px;
}

.footer-socials{
  display:flex;
  align-items:center;
  gap:22px;
  margin-top:40px;
}

.footer-socials a{
  width:42px;
  height:42px;
  border:2px solid rgba(255,255,255,0.85);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.footer-right{
  flex:1;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:60px;
}

.footer-column h4{
  font-size:16px;
  margin-bottom:24px;
  font-family: "Outfit SemiBold";
}

.footer-column a{
  display:block;
  margin-bottom:16px;
  font-size:16px;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media screen and (min-width:1600px){
  .hero{ height:88vh; }
  .collection-card{ height:720px; }
  .collection-heading h2{ font-size:78px; }
}

/* =========================================================
   DESKTOP
========================================================= */

@media screen and (max-width:1440px){
  .header{ padding:0 30px; }
  .desktop-nav ul{ gap:28px; }
  .desktop-nav a{ font-size:16px; }
  .mega-menu{ gap:40px; padding:45px; }
  .collection-card{ height:calc(58vh - 10px); }
}

/* =========================================================
   SMALL LAPTOP
========================================================= */

@media screen and (max-width:1280px){
  .hero{ height:72vh; }
  .hero h1{ font-size:52px; }
  .collection-heading h2{ font-size:56px; }
  .collection-heading p{ font-size:20px; }
  .collection-card{ height:480px; }
  .collection-content a{ min-width:240px; height:54px; font-size:16px; }
}

/* =========================================================
   TABLET LANDSCAPE
========================================================= */

@media screen and (max-width:1180px){
  .desktop-nav{ display:none !important; }
  .hamburger{ display:flex; position:absolute; left:20px; top:50%; transform:translateY(-50%); }
  .header{ justify-content:center; padding:0 20px; }
  .logo{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); }
  .logo img{ width:130px; }
  .icons{ position:absolute; right:20px; top:50%; transform:translateY(-50%); }
  .icons a:nth-child(1){ display:none; }
  .hero{ height:70vh; }
  .hero h1{ font-size:50px; }
  .hero p{ font-size:18px; }
  .collection-grid{ grid-template-columns:repeat(3,1fr); gap:18px; }
  .collection-card{ height:360px; }
  .collection-content{ bottom:22px; }
  .collection-content span{ font-size:15px; }
  .collection-content a{ min-width:210px; height:48px; font-size:14px; }
  .footer-container{ flex-direction:column-reverse; gap:50px; }
  .footer-left{ width:100%; }
  .footer-right{ grid-template-columns:repeat(2,1fr); }
}

/* =========================================================
   TABLET PORTRAIT
========================================================= */

@media screen and (max-width:991px){
  .hero{ height:65vh; }
  .hero h1{ font-size:44px; }
  .hero p{ font-size:17px; padding:0 20px; }
  .buttons{ flex-direction:column; width:100%; padding:0 20px; }
  .btn{ width:100%; }
  .collection-homepage{ padding-top:70px; padding-bottom:70px; }
  .collection-heading{ margin-bottom:40px; }
  .collection-heading h2{ font-size:46px; }
  .collection-heading p{ font-size:18px; }
  .collection-grid{ grid-template-columns:1fr 1fr; }
  .collection-card{ height:460px; }
}

/* =========================================================
   MOBILE LANDSCAPE
========================================================= */

@media screen and (max-width:932px) and (orientation:landscape){
  .header{ height:70px; }
  .hero{ height:100vh; }
  .hero h1{ font-size:42px; }
  .collection-grid{ grid-template-columns:repeat(3,1fr); }
  .collection-card{ height:calc(65vh - 10px); }
  .collection-content a{ min-width:180px; height:44px; font-size:13px; }
}

/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width:767px){
  .header{ height:72px; }
  .logo img{ width:160px; }
  .hero{ height:88vh; }
  .hero-content{ width:100%; padding:0 20px; }
  .hero h1{ font-size:38px; line-height:1.1; }
  .hero p{ font-size:15px; line-height:1.6; margin:20px 0; }
  .buttons{ gap:12px; }
  .btn{ padding:15px 20px; font-size:15px; }
  .collection-homepage{ padding-top:55px; padding-bottom:55px; }
  .collection-heading h2{ font-size:34px; }
  .collection-heading p{ font-size:15px; line-height:1.6; }
  .collection-grid{ grid-template-columns:1fr; gap:18px; }
  .collection-card{ height:calc(43vh - 10px); border-radius:8px; }
  .collection-content{ bottom:24px; padding:0 16px; }
  .collection-content span{ font-size:15px; margin-bottom:16px; }
  .collection-content a{ width:100%; min-width:100%; height:50px; font-size:14px; }
  .mamamood-footer{ padding:50px 20px; }
  .footer-right{ grid-template-columns:1fr 1fr; gap:35px 20px; }
  .footer-logo img{ width:140px !important; }
  .footer-column h4{ font-size:15px; }
  .footer-column a{ font-size:14px; }
  .cart-drawer{ max-width:100%; width:100%; height:100dvh; }
  .cart-body{ padding:18px; padding-bottom:30px; }
  .cart-footer{ padding:16px 18px calc(16px + env(safe-area-inset-bottom)); }
  .checkout-btn{ height:54px; font-size:16px; }
}

@media screen and (max-width:375px){
  .hero h1{ font-size:32px; }
  .hero p{ font-size:14px; }
  .collection-heading h2{ font-size:30px; }
  .collection-card{ height:420px; }
  .collection-content a{ height:46px; font-size:13px; }
  .cart-top h2{ font-size:24px; }
}

@media screen and (max-width:767px) and (orientation:landscape){
  .collection-grid{ grid-template-columns:repeat(3,1fr); }
  .collection-card{ height:calc(51vh - 10px); }
}

@media screen and (max-width:320px){
  .logo img{ width:95px; }
  .hero h1{ font-size:28px; }
  .collection-heading h2{ font-size:26px; }
  .collection-card{ height:380px; }
  .footer-right{ grid-template-columns:1fr; }
}


/* =====================
   BT SECTION
===================== */

.bt-section{
  width:100%;
  min-height:100vh;
  background:#DFB2B5;
  padding:56px 0 80px;
  overflow:hidden;
}

.bt-heading{
  font-size:clamp(22px, 3vw, 46px);
  font-weight:700;
  color:#fff;
  margin-bottom:50px;
  font-family:'Outfit SemiBold';
  padding:0 5%;
  letter-spacing:0.5px;
}

/* =====================
   SLIDER OUTER
===================== */

.bt-slider-outer{
  position:relative;
  width:100%;
  overflow:hidden;
}

/* =====================
   SLIDER
   KEY FIX: touch-action:pan-x only — no pinch-zoom
===================== */

.bt-slider{
  display:flex;
  align-items:stretch;
  gap:24px;
  overflow-x:auto;
  overflow-y:hidden;
  scrollbar-width:none;
  -ms-overflow-style:none;
  padding:10px 5.625% 40px;
  cursor:grab;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior-x:contain;
  scroll-behavior:auto;

  /* CRITICAL: pan-x only — removes pinch-zoom which causes the iOS zoom glitch */
  touch-action:pan-x;

  will-change:scroll-position;
  /* Prevent text selection during swipe */
  user-select:none;
  -webkit-user-select:none;
}

.bt-slider::-webkit-scrollbar{ display:none; }

.bt-slider.grabbing{ cursor:grabbing; }

/* =====================
   CARD
   touch-action:pan-x propagates correctly
===================== */

.bt-card{
  position:relative;
  flex:0 0 calc(25% - 18px);
  min-width:360px;
  height:495px;
  border-radius:18px;
  overflow:hidden;
  scroll-snap-align:start;
  flex-shrink:0;
  transition:transform .3s ease;
  /* Inherit pan-x so child elements don't break swipe */
  touch-action:pan-x;
  /* Prevent long-press callout on iOS */
  -webkit-touch-callout:none;
}

.bt-card:hover{ transform:translateY(-5px); }

.bt-card-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  pointer-events:none;
  transition:transform .5s ease;
  /* Prevent iOS image drag / callout */
  -webkit-user-drag:none;
  -webkit-touch-callout:none;
}

.bt-card:hover .bt-card-img{ transform:scale(1.05); }

/* =====================
   TABLET
===================== */

@media(max-width:1200px){
  .bt-card{
    flex:0 0 calc(33.333% - 16px);
    min-width:33.333%;
  }
}

@media(max-width:991px){
  .bt-slider{ padding-left:24px; padding-right:24px; }
  .bt-card{
    flex:0 0 calc(50% - 12px);
    min-width:50%;
    height:520px;
  }
}

/* =====================
   MOBILE
===================== */

@media(max-width:767px){

  .bt-slider{
    gap:16px;
    padding-left:8%;
    padding-right:8%;
    scroll-padding-left:8%;
    scroll-padding-right:8%;
    /* Restate touch-action for mobile explicitly */
    touch-action:pan-x;
  }

  .bt-card{
    flex:0 0 84%;
    min-width:84%;
    height:500px;
    scroll-snap-align:center;
  }

  /* Hide arrows on mobile — native swipe is the UX */
  .bt-arrow{
    display:none;
  }

}

@media(max-width:480px){
  .bt-slider{ padding-left:6%; padding-right:6%; }
  .bt-card{ flex:0 0 88%; min-width:88%; height:440px; }
}

/* =====================
   GRADIENT OVERLAY
===================== */

.bt-card-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.02) 25%,
    rgba(0,0,0,0.22) 58%,
    rgba(0,0,0,0.82) 100%
  );
  z-index:1;
  /* Prevent overlay intercepting touch */
  pointer-events:none;
}

/* =====================
   BADGE
===================== */

.bt-badge{
  position:absolute;
  top:16px;
  left:16px;
  background:rgba(255,255,255,0.92);
  color:#222;
  font-size:12px;
  font-weight:700;
  padding:5px 14px;
  border-radius:999px;
  z-index:3;
  letter-spacing:0.3px;
  box-shadow:0 2px 8px rgba(0,0,0,0.10);
  pointer-events:none;
}

/* =====================
   CARD BODY
===================== */

.bt-card-body{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:3;
  padding:22px;
}

.bt-cat{
  display:block;
  font-size:11px;
  font-weight:600;
  color:rgba(255,255,255,0.72);
  text-transform:uppercase;
  letter-spacing:1.2px;
  margin-bottom:6px;
}

.bt-title{
  font-size:clamp(15px, 1.3vw, 19px);
  font-weight:700;
  color:#fff;
  line-height:1.3;
  margin-bottom:8px;
}

.bt-stars{
  display:flex;
  gap:3px;
  margin-bottom:8px;
}

.bt-stars svg{
  width:13px;
  height:13px;
  display:block;
  flex-shrink:0;
}

.bt-price-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.bt-price{
  font-size:18px;
  font-weight:700;
  color:#fff;
}

.bt-old-price{
  font-size:13px;
  color:rgba(255,255,255,0.55);
  text-decoration:line-through;
}

/* =====================
   COLOR SELECT
   font-size:16px is CRITICAL — iOS zooms into
   any input/select with font-size below 16px
===================== */

.bt-color-row{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
}

.bt-color-label{
  font-size:12px;
  color:rgba(255,255,255,0.8);
  font-weight:500;
  white-space:nowrap;
}

.bt-color-select{
  flex:1;
  border:1px solid rgba(255,255,255,0.4);
  border-radius:8px;
  padding:6px 28px 6px 10px;
  /* CRITICAL: must be 16px+ to prevent iOS auto-zoom on focus */
  font-size:16px;
  font-family:'DM Sans', sans-serif;
  color:#fff;
  background:rgba(255,255,255,0.15);
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 10px center;
  touch-action:manipulation;
}

.bt-color-select option{ color:#333; background:#fff; }

/* =====================
   ADD TO CART BUTTON
   touch-action:manipulation = no double-tap zoom
   font-size:16px = no iOS auto-zoom
===================== */

.bt-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  background:rgba(255,255,255,0.18);
  border:1.5px solid rgba(255,255,255,0.55);
  border-radius:999px;
  color:#fff;
  /* CRITICAL: 16px+ prevents iOS input zoom */
  font-size:16px;
  font-weight:600;
  font-family:'DM Sans', sans-serif;
  padding:10px 20px;
  cursor:pointer;
  letter-spacing:0.2px;
  backdrop-filter:blur(6px);
  /* CRITICAL: prevents double-tap zoom on button */
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
  transition:background .2s ease, border-color .2s ease;
}

.bt-btn:hover{
  background:rgba(255,255,255,0.30);
  border-color:rgba(255,255,255,0.9);
}

.bt-btn svg{ flex-shrink:0; pointer-events:none; }

/* =====================
   ARROWS (desktop only)
===================== */

.bt-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.88);
  font-size:20px;
  cursor:pointer;
  z-index:10;
  box-shadow:0 3px 14px rgba(0,0,0,0.12);
  transition:.2s ease;
  /* Prevents double-tap zoom and 300ms delay on arrow buttons */
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.bt-arrow:hover{
  background:#fff;
  box-shadow:0 5px 20px rgba(0,0,0,0.20);
}

.bt-arrow-prev{ left:12px; }
.bt-arrow-next{ right:12px; }

.split-scroll-section{
  width:100%;
  display:grid;
  grid-template-columns:1fr 1fr;
}

.split-card{
  position:relative;
  height:80vh;
  overflow:hidden;
}

.split-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.split-content{
  position:sticky;
  bottom:0;
  height:70vh;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding-left:100px;
  padding-right:100px;
  z-index:2;
}

.split-text{
  margin-top:auto;
  transform:translateY(-120px);
  transition:transform 0.2s linear;
}

.split-text h2{
  color:#fff;
  font-size:50px;
  font-family: Outfit SemiBold;
  margin-bottom:10px;
  text-align:center;
}

.split-text p{
  color:#fff;
  font-size:20px;
  text-align:center;
}

.split-btn{
  width:100%;
  height:40px;
  padding:25px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
  margin-top:auto;
  transition:0.3s ease;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.yellow-btn{ background:#e7c869; color:#111; }
.purple-btn{ background:#cf97d8; color:#111; }
.split-btn:hover{ transform:translateY(-3px); }

@media(max-width:991px){
  .split-scroll-section{ grid-template-columns:1fr; }
  .split-card{ height:95vh; }
  .split-content{ padding:35px 24px; }
  .split-text{ transform:translateY(-70px); }
  .split-text h2{ font-size:72px; letter-spacing:-2px; margin-bottom:18px; }
  .split-text p{ font-size:18px; }
  .split-btn{ height:64px; font-size:22px; }
}

@media(max-width:767px){
  .split-card{ height:85vh; }
  .split-content{ padding:20px; }
  .split-text{ transform:translateY(-40px); }
  .split-text h2{ font-size:48px; line-height:0.95; letter-spacing:-1px; margin-bottom:14px; }
  .split-text p{ font-size:15px; }
  .split-btn{ height:56px; font-size:18px; border-radius:8px; }
}