/* =========================
   TOKINDO FITNESS THEME
   Red + Gold Energy System
   ========================= */

:root{

  /* BASE */
  --bg:#ffffff;
  --bg-soft:#fff8e1;

  /* BRAND */
  --bannerRed:#d2252b;

  --banner: linear-gradient(
    135deg,
    #e11d2e 0%,
    #d2252b 55%,
    #b91c1c 100%
  );

  /* ENERGY COLORS */
  --energy:#ffd400;
  --energy-soft:#fff3a6;

  /* TEXT */
  --text:#111111;
  --text-soft:#7a5a00;
  --text-invert:#ffffff;

  /* SURFACE */
  --card:#ffffff;
  --card-soft:#fff9d6;

  /* LINES */
  --line:#ffd400;
  --line-soft:#ffe97a;

  /* BRAND SECONDARY */
  --brand:#ffcc00;
  --brand2:#ff9f00;

  /* STATUS */
  --good:#22c55e;
  --bad:#ef4444;

  /* SHADOW */
  --shadow:0 14px 40px rgba(0,0,0,.12);

  --radius:18px;
  --radius2:26px;
  --max:1200px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial;
}

*{box-sizing:border-box}

html,body{height:100%}

body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}

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

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px
}

/* ================= NAV ================= */

.nav{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--bannerRed);
  box-shadow:0 8px 24px rgba(0,0,0,.15);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:12px
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800
}

.logo{
  width:38px;
  height:38px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
}

.nav-links{
  display:flex;
  gap:10px;
  align-items:center
}

/* ================= SEARCH ================= */

.search{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border-radius:12px;
  background:#fff;
  border:1px solid var(--line);
  min-width:min(120px,72vw);
}

.search input{
  width:100%;
  border:0;
  outline:none;
  background:transparent;
  font-size:15px;
}

.search input::placeholder{
  color:#b09100;
}

/* ================= BUTTON ================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid #eab308;

  background:linear-gradient(
    135deg,
    #ffd400,
    #ffb800
  );

  color:#000;
  font-weight:900;

  box-shadow:0 12px 30px rgba(255,212,0,.35);

  transition:transform .15s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

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

.hero{
  padding:42px 0 22px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px
}

@media(max-width:980px){
.hero-grid{grid-template-columns:1fr}
.search{min-width:0}
}

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

.card{
  border:1px solid var(--line);
  background:var(--card);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
}

.hero-card{padding:26px}

.h-title{
  font-size:42px;
  margin:14px 0 10px;
  font-weight:900
}

.h-sub{
  color:var(--text-soft);
  max-width:62ch;
}

/* ================= KPI ================= */

.kpis{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px
}

.kpi{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:var(--card-soft);
}

.kpi b{font-size:18px}

.kpi span{
  color:var(--text-soft);
  font-size:13px
}

/* ================= GRID ================= */

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

@media(max-width:980px){
.grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:520px){
.grid{grid-template-columns:1fr}
}

/* ================= PRODUCT ================= */

.product{
  padding:14px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  transition:transform .15s ease;
}

.product:hover{
  transform:translateY(-4px);
  border-color:#ffd400;
  box-shadow:0 12px 30px rgba(255,212,0,.25);
}

.p-img{
  width:100%;
  aspect-ratio:4/3;
  border-radius:16px;
  border:1px solid var(--line);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.p-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.p-meta{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  margin-top:12px
}

.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--energy-soft);
  color:#7a5a00;
  font-weight:700;
}

.price{
  font-weight:900
}

.price small{
  display:block;
  color:#b09100;
  text-decoration:line-through
}

/* ================= FORM ================= */

.input,textarea{
  width:100%;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  outline:none;
}

.input:focus,textarea:focus{
  border-color:#ffcc00;
}

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

.footer{
  padding:26px 0;
  color:#fff;
  background:#000;
}

.footer .pill{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,212,0,.2);
  border:1px solid rgba(255,212,0,.5);
  color:#fff;
}

/* ================= TOAST ================= */

.toast{
  position:fixed;
  right:16px;
  bottom:16px;
  padding:12px 14px;
  border-radius:14px;
  background:#000;
  color:#fff;
  transform:translateY(18px);
  opacity:0;
  transition:all .2s ease;
}

.toast.show{
  transform:translateY(0);
  opacity:1;
}

/* ================= BURGER ================= */

.burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.3);
  background:rgba(0,0,0,.2);
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:10px
}

.burger span{
  width:18px;
  height:2px;
  background:#fff
}

@media(max-width:900px){

.burger{display:inline-flex}

}

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

.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:1000;
}

.mobile-menu{
  position:fixed;
  top:0;
  left:0;
  height:100vh;
  width:100vw;
  background:linear-gradient(
    135deg,
    rgba(210,37,43,.98),
    rgba(120,18,22,.98)
  );
  transform:translateX(-105%);
  transition:transform .28s ease;
  display:flex;
  flex-direction:column;
  z-index:1001;
}

.mobile-menu.open{
  transform:translateX(0)
}

.mobile-menu-head{
  display:flex;
  justify-content:space-between;
  padding:14px;
  border-bottom:1px solid rgba(255,255,255,.2);
}

.mobile-menu-body{
  padding:14px;
  display:grid;
  gap:12px;
}

body.menu-open{
  overflow:hidden
}

/* ================= ENERGY BUTTON EFFECT ================= */

@keyframes energyPulse{
  0%{box-shadow:0 0 0 rgba(255,212,0,.0)}
  50%{box-shadow:0 0 20px rgba(255,212,0,.45)}
  100%{box-shadow:0 0 0 rgba(255,212,0,.0)}
}

.btn:active{
  animation:energyPulse .4s ease;
}


/* ===============================
   TOKINDO UNIVERSAL NAVIGATION
   Works Desktop + Mobile
================================ */

.nav{
  position:sticky;
  top:0;
  z-index:100;
  background:#d2252b;
  box-shadow:0 6px 18px rgba(0,0,0,.15);
}

/* main row */

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 16px;
  gap:12px;
}

/* ===== LEFT ===== */

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand img{
  height:38px;
  border-radius:12px;
}

/* ===== BURGER ===== */

.burger{
  display:none;
  width:40px;
  height:40px;
  border:0;
  background:none;
  flex-direction:column;
  justify-content:center;
  gap:4px;
  cursor:pointer;
}

.burger span{
  height:2px;
  width:22px;
  background:#fff;
  display:block;
}

/* ===== SEARCH ===== */

.search{
  flex:1;
  max-width:350px;

  display:flex;
  align-items:center;
  gap:10px;

  background:#fff;
  border-radius:999px;

  padding:8px 12px;
}

.search input{
  border:0;
  outline:none;
  width:100%;
  font-size:14px;
}

.search button{
  border:0;
  background:#ffd400;
  color:#000;
  padding:8px 14px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
}

/* ===== NAV LINKS ===== */

.nav-links{
  display:flex;
  gap:32px;
  align-items:center;
}

.nav-links a{
  color:#fff;
  font-weight:600;
}

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

.cart-btn{
  position:relative;
  font-size:20px;
  color:#fff;
  text-decoration:none;
}

#cartCount{
  
  background:#ffd400;
  color:#000;

  font-size:15px;
  font-weight:800;

  padding:3px 6px;
  border-radius:20px;

  min-width:18px;
  text-align:center;
}

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

@media (max-width:900px){

  .nav-inner{
    height:60px;
    justify-content:space-between;
  }

  /* show burger */
  .burger{
    display:flex;
  }

  /* center logo */
  .brand{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
  }
  
  .brand img{
      height:100px;
  }


  .nav-links{
    display:none;
  }

  /* keep cart right */
  .cart-btn{
    font-size:22px;
  }

}

/* ===============================
   CART BOUNCE ANIMATION
================================ */

@keyframes cartPop{
  0%{transform:scale(1)}
  50%{transform:scale(1.25)}
  100%{transform:scale(1)}
}

.cart-pop{
  animation:cartPop .35s ease;
}

.brand-text{
  max-width:320px;
}

.brand-text div{
  font-size:12px;
  line-height:1.2;
  color:#fff;
}

/* mobile shrink */

@media (max-width:900px){

  .brand-text{
    display:none;
  }

  .brand-text div{
    font-size:9px;
    line-height:1.1;
  }

}

/* ===============================
   MOBILE CART FIX
================================ */

@media (max-width:900px){

  .nav-links{
    display:flex;
  }

  .nav-links .pill{
    display:none;
  }

  #cartBtn{
    display:flex;
    align-items:center;
    justify-content:center;
  }

}

/* ===============================
   STICKY HEADER PROTECTION
================================ */

.nav{
  position:sticky;
  top:0;
  z-index:999;
}

.nav-inner{
  min-height:60px;
}

/* HERO */

.hero{
width:100%;
height:420px;
overflow:hidden;
position:relative;

}

/* track */

.hero-track{
display:flex;
height:100%;
transition:transform .7s cubic-bezier(.65,.05,.36,1);
}
/* HERO LAYOUT */

.hero{
padding:20px 0;
}

.hero-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:16px;
}

@media(max-width:900px){

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

}

/* HERO SLIDER */

.hero-slider{
width:100%;
height:420px;
overflow:hidden;
border-radius:14px;
position:relative;
}

.hero-track{
display:flex;
height:100%;
transition:transform .8s ease;
}

.hero-slide{
min-width:100%;
height:100%;
}

.hero-slide img{
width:100%;
height:100%;
object-fit:cover;
}

.video-slide iframe{
width:100%;
height:100%;
border:0;
pointer-events:none;
}

/* RIGHT PROMO */

.promo-slider{
height:420px;
overflow:hidden;
border-radius:14px;
}

.promo-track{
display:flex;
flex-direction:column;
transition:transform .7s ease;
}

.promo-slide{
height:420px;
min-height:420px;
}

.promo-slide img{
width:100%;
height:100%;
border-radius:14px;
}

.promo-slide iframe{
width:100%;
height:100%;
border:0;
}

/* MOBILE */

@media(max-width:900px){

.hero-slider{
height:240px;
}

.promo-slider{
height:220px;
}

.promo-slide{
height:220px;
min-height:220px;
}

}

.hero-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:18px;
}

@media(max-width:900px){
.hero-grid{grid-template-columns:1fr}
}

.hero-slider{
overflow:hidden;
border-radius:16px;
position:relative;
}

.hero-track{
display:flex;
transition:transform .6s ease;
}

.hero-slide{
min-width:100%;
position:relative;
}

.hero-slide img{
width:100%;
height:100%;
object-fit:cover;
border-radius:16px;
}

.video-slide iframe{
width:100%;
height:100%;
aspect-ratio:16/9;
border:0;
border-radius:16px;
}

/* PROMO */

.promo-slider{
overflow:hidden;
}

/* DESKTOP */
.promo-track{
display:grid;
grid-template-columns:1fr;
gap:12px;
}

/* TABLET */
@media (max-width:900px){

.promo-track{
grid-template-columns:repeat(3,1fr);
gap:10px;
}

}

/* SMALL PHONE */
@media (max-width:480px){

.promo-track{
grid-template-columns:repeat(4,1fr);
gap:8px;
}

}



.promo-slide{
border-radius:14px;
overflow:hidden;
}

.promo-slide img{
width:100%;
display:block;
border-radius:14px;
}

/* LIVE CARD */

.live-card{
position:relative;
display:block;
border-radius:14px;
overflow:hidden;
}

.live-card img{
width:100%;
display:block;
}

.live-badge{
position:absolute;
top:10px;
left:10px;
background:#ff0033;
color:#fff;
font-weight:800;
font-size:12px;
padding:4px 8px;
border-radius:6px;
}

.live-viewers{
position:absolute;
bottom:40px;
left:10px;
background:rgba(0,0,0,.7);
color:#fff;
font-size:12px;
padding:4px 8px;
border-radius:6px;
}

.live-cta{
position:absolute;
bottom:10px;
left:10px;
right:10px;
background:#ffd400;
color:#000;
font-weight:800;
text-align:center;
padding:8px;
border-radius:10px;
}

.promo-slide{
border-radius:10px;
overflow:hidden;
position:relative;
}

.promo-slide img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}



a {
  position: relative;
  text-decoration: none;
  transition: color .2s ease;
}

a::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 0px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width .25s ease;
  border-radius: 0px;
}

a:hover::after,
a.active::after {
  width: 101%;
}

/* ===== Tokindo product page: tighten left-right spacing ===== */
main.container{
  width: min(1440px, calc(100% - 80px));
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/* keep header + footer aligned a bit wider too */
.nav .container,
.footer .container{
  width: min(1440px, calc(100% - 80px));
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/* product page sections do not need extra side space */
main.container .section{
  margin-left: 0;
  margin-right: 0;
}

/* slightly tighter desktop feel */
@media (min-width: 1280px){
  main.container,
  .nav .container,
  .footer .container{
    width: min(1480px, calc(100% - 68px));
    max-width: 1480px;
  }
}

/* tablet */
@media (max-width: 1024px){
  main.container,
  .nav .container,
  .footer .container{
    width: calc(100% - 48px);
    max-width: none;
  }
}

/* mobile */
@media (max-width: 768px){
  main.container,
  .nav .container,
  .footer .container{
    width: calc(100% - 40px);
    max-width: none;
  }
}
/* ===============================
   CONTENT PAGES: BLOG + TESTIMONI
================================ */

.btn-outline{
  background:transparent;
  border:1px solid #eab308;
  color:#7a2d00;
  box-shadow:none;
}

.content-section{
  padding:34px 0 0;
}

.content-hero{
  padding:38px 0 10px;
}

.content-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);
  gap:20px;
  align-items:stretch;
}

.content-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(234,179,8,.35);
  background:rgba(255,212,0,.14);
  color:#8a5f00;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.content-hero h1{
  margin:14px 0 12px;
  font-size:clamp(34px,4vw,58px);
  line-height:1.03;
  font-weight:950;
}

.content-hero p{
  margin:0;
  max-width:66ch;
  color:#5e4d18;
  font-size:16px;
  line-height:1.8;
}

.content-hero--reviews,
.content-hero--blog{
  position:relative;
}

.content-hero--reviews::before,
.content-hero--blog::before{
  content:"";
  position:absolute;
  inset:18px 0 auto;
  height:280px;
  background:linear-gradient(135deg, rgba(255,212,0,.12), rgba(210,37,43,.07));
  border-radius:28px;
  z-index:-1;
}

.stats-panel,
.hero-note-card{
  border-radius:24px;
  padding:24px;
  border:1px solid rgba(234,179,8,.3);
  background:linear-gradient(180deg,#fffdf2 0%,#fff7d1 100%);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.stats-panel{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.stats-card{
  min-height:120px;
  border-radius:20px;
  padding:18px;
  background:#fff;
  border:1px solid rgba(255,212,0,.35);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.stats-card strong{
  font-size:38px;
  line-height:1;
  font-weight:950;
  color:#111;
}

.stats-card span{
  color:#7a5a00;
  font-weight:700;
}

.hero-note-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
}

.hero-note-card strong{
  font-size:24px;
  font-weight:950;
}

.hero-note-card p{
  margin:0;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.section-head h2{
  margin:0 0 8px;
  font-size:34px;
  line-height:1.08;
}

.section-head p{
  margin:0;
  color:#6f5a18;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.review-grid--full{
  margin-bottom:30px;
}

.review-card{
  border-radius:24px;
  padding:22px;
  background:#fff;
  border:1px solid rgba(255,212,0,.5);
  box-shadow:0 16px 34px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.review-card__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.review-card h3{
  margin:10px 0 0;
  font-size:24px;
  line-height:1.15;
}

.review-tag,
.content-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  background:#fff3a6;
  border:1px solid rgba(255,212,0,.55);
  color:#795700;
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
}

.review-rating{
  color:#ffb800;
  font-size:22px;
  font-weight:900;
  white-space:nowrap;
}

.review-highlight{
  margin:16px 0 10px;
  color:#111;
  font-weight:800;
  line-height:1.6;
}

.review-content{
  margin:0;
  color:#5c5c5c;
  line-height:1.8;
  font-size:15px;
  flex:1;
}

.review-card__foot{
  margin-top:18px;
  padding-top:14px;
  border-top:1px dashed rgba(234,179,8,.3);
  display:flex;
  flex-direction:column;
  gap:4px;
}

.review-card__foot strong{
  font-size:15px;
}

.review-card__foot span{
  color:#8c7a3d;
  font-size:13px;
}

.featured-post-card{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
  gap:22px;
  padding:24px;
  border-radius:28px;
  background:linear-gradient(135deg,#fffdf5 0%,#fff2be 100%);
  border:1px solid rgba(255,212,0,.5);
  box-shadow:0 22px 48px rgba(0,0,0,.08);
}

.featured-post-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.featured-post-copy h2{
  margin:14px 0 12px;
  font-size:42px;
  line-height:1.04;
}

.featured-post-copy p{
  margin:0 0 16px;
  color:#5d4a15;
  font-size:16px;
  line-height:1.8;
}

.featured-post-image{
  border-radius:24px;
  overflow:hidden;
  min-height:320px;
  border:1px solid rgba(255,212,0,.45);
}

.featured-post-image img,
.blog-card__image img,
.blog-detail-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.post-meta-row{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  color:#7b692f;
  font-size:13px;
  font-weight:700;
}

.post-meta-row--start{
  margin-bottom:16px;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.blog-card{
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,212,0,.45);
  background:#fff;
  box-shadow:0 16px 34px rgba(0,0,0,.08);
}

.blog-card__link{
  display:block;
  height:100%;
}

.blog-card__image{
  aspect-ratio:16/10;
  overflow:hidden;
}

.blog-card__body{
  padding:18px;
}

.blog-card__body h3{
  margin:14px 0 10px;
  font-size:25px;
  line-height:1.15;
}

.blog-card__body p{
  margin:0 0 16px;
  color:#5c5c5c;
  line-height:1.75;
}

.blog-detail-wrap{
  padding:40px 0 34px;
}

.blog-detail-shell{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) 360px;
  gap:22px;
  align-items:start;
}

.blog-detail-card,
.blog-side-card{
  background:#fff;
  border-radius:28px;
  border:1px solid rgba(255,212,0,.45);
  box-shadow:0 18px 42px rgba(0,0,0,.08);
}

.blog-detail-card{
  padding:28px;
}

.blog-detail-card h1{
  margin:0 0 12px;
  font-size:clamp(34px,3vw,52px);
  line-height:1.04;
}

.blog-detail-excerpt{
  margin:0 0 18px;
  color:#6b5819;
  font-size:17px;
  line-height:1.8;
}

.blog-detail-image{
  aspect-ratio:16/9;
  border-radius:22px;
  overflow:hidden;
  margin-bottom:20px;
}

.blog-detail-content p{
  margin:0 0 16px;
  color:#414141;
  line-height:1.95;
  font-size:16px;
}

.blog-detail-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.blog-side-card{
  padding:22px;
  position:sticky;
  top:94px;
}

.blog-side-card h3{
  margin:0 0 14px;
  font-size:28px;
}

.blog-side-list{
  display:grid;
  gap:12px;
}

.blog-side-item{
  display:grid;
  gap:8px;
  padding:16px;
  border-radius:18px;
  background:#fff8df;
  border:1px solid rgba(255,212,0,.45);
}

.blog-side-item strong{
  font-size:18px;
  line-height:1.25;
}

.blog-side-item small{
  color:#836900;
  font-weight:700;
}

.blog-side-support{
  margin-top:16px;
  padding:18px;
  border-radius:22px;
  background:linear-gradient(180deg,#d2252b 0%, #9d1c21 100%);
  color:#fff;
}

.blog-side-support strong{
  display:block;
  font-size:24px;
  margin-bottom:8px;
}

.blog-side-support p{
  margin:0 0 14px;
  line-height:1.7;
  color:rgba(255,255,255,.86);
}

.blog-side-support .btn{
  width:100%;
}

.featured-post-card::after,
.blog-card__link::after,
.blog-side-item::after,
.content-chip::after,
.review-card::after,
.review-tag::after,
.content-kicker::after,
.btn::after,
.btn-outline::after{
  display:none;
}

@media (max-width: 1100px){
  .review-grid,
  .blog-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .content-hero__grid,
  .featured-post-card,
  .blog-detail-shell{
    grid-template-columns:1fr;
  }

  .blog-side-card{
    position:static;
  }
}

@media (max-width: 768px){
  .content-hero{
    padding-top:26px;
  }

  .content-hero h1,
  .featured-post-copy h2,
  .section-head h2{
    font-size:30px;
  }

  .review-grid,
  .blog-grid,
  .stats-panel{
    grid-template-columns:1fr;
  }

  .featured-post-card,
  .blog-detail-card,
  .blog-side-card,
  .review-card,
  .stats-panel,
  .hero-note-card{
    padding:18px;
    border-radius:20px;
  }

  .featured-post-image,
  .blog-detail-image{
    min-height:220px;
  }

  .blog-card__body h3,
  .review-card h3,
  .blog-side-card h3{
    font-size:22px;
  }

  .blog-detail-card h1{
    font-size:30px;
  }
}




/******************************FOOTER******************************************/

/* ===== TOKINDO PREMIUM FOOTER ===== */
.tk-footer{
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255,203,0,.12), transparent 30%),
    radial-gradient(circle at top right, rgba(210,37,43,.14), transparent 28%),
    linear-gradient(180deg, #151515 0%, #101010 100%);
  color: #fff;
  margin-top: 60px;
  padding: 56px 0 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.tk-footer::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background: linear-gradient(90deg, #ffd84d 0%, #ffbf00 35%, #d2252b 100%);
}

.tk-footer-top{
  display:grid;
  grid-template-columns: 320px minmax(0,1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
}

.tk-footer-top-copy{
  padding: 10px 0;
}

.tk-kicker{
  display:inline-block;
  font-size:12px;
  line-height:1;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:900;
  color:#ffcf33;
  margin-bottom:12px;
}

.tk-footer-top-copy h3{
  margin:0;
  font-size:34px;
  line-height:1.08;
  font-weight:900;
  color:#fff;
}

.tk-footer-top-copy p{
  margin:14px 0 0;
  color:rgba(255,255,255,.74);
  line-height:1.7;
  font-size:15px;
}

.tk-review-box{
  position:relative;
  min-height: 275px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 26px;
  padding: 28px 28px 56px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:
    0 20px 50px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.tk-review-slide{
  position:absolute;
  inset: 28px 28px 56px;
  opacity:0;
  transform: translateY(10px);
  pointer-events:none;
  transition: opacity .45s ease, transform .45s ease;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.tk-review-slide.is-active{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

.tk-review-rating{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:26px;
  color:#ffcc00;
  font-weight:900;
  margin-bottom:16px;
}

.tk-review-rating span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:64px;
  height:34px;
  padding:0 12px;
  border-radius:999px;
  background: rgba(255,204,0,.12);
  border: 1px solid rgba(255,204,0,.28);
  color:#fff3c4;
  font-size:14px;
  letter-spacing:.08em;
}

.tk-review-slide p{
  margin:0;
  color:#fff;
  font-size:18px;
  line-height:1.8;
  font-weight:500;
  max-width: 96%;
}

.tk-review-meta{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.tk-review-meta strong{
  font-size:16px;
  color:#fff;
}

.tk-review-meta span{
  color:rgba(255,255,255,.68);
  font-size:14px;
}

.tk-review-dots{
  position:absolute;
  left:28px;
  bottom:20px;
  display:flex;
  gap:10px;
}

.tk-review-dots button{
  width:10px;
  height:10px;
  border:0;
  border-radius:50%;
  background: rgba(255,255,255,.24);
  cursor:pointer;
  transition: transform .2s ease, background .2s ease;
}

.tk-review-dots button.is-active{
  background:#ffcc00;
  transform: scale(1.2);
}

.tk-footer-main{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.tk-footer-col h4{
  margin:0 0 18px;
  font-size:22px;
  font-weight:900;
  color:#fff;
}

.tk-footer-logo-wrap{
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  margin-bottom:18px;
}

.tk-footer-logo-wrap img{
  max-width: 220px;
  height:auto;
}

.tk-footer-desc{
  margin:0 0 16px;
  color:rgba(255,255,255,.78);
  line-height:1.85;
  font-size:15px;
}

.tk-footer-address{
  color:rgba(255,255,255,.72);
  line-height:1.8;
  font-size:14px;
}

.tk-footer-links{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.tk-footer-links a{
  color:rgba(255,255,255,.82);
  text-decoration:none;
  transition: color .2s ease, transform .2s ease;
}

.tk-footer-links a:hover{
  color:#ffcf33;
  transform: translateX(2px);
}

.tk-social-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.tk-social-pill{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  min-height:54px;
  padding: 14px 16px;
  border-radius:16px;
  text-decoration:none;
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.tk-social-pill:hover{
  transform: translateY(-2px);
  border-color: rgba(255,204,0,.42);
  background: rgba(255,204,0,.08);
}

.tk-social-pill span{
  color:rgba(255,255,255,.72);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
}

.tk-social-pill strong{
  color:#fff;
  font-size:15px;
}

.tk-footer-cta{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:18px;
}

.tk-footer-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding: 0 18px;
  border-radius:14px;
  text-decoration:none;
  background: linear-gradient(180deg, #ffd84d 0%, #ffbf00 100%);
  color:#161616;
  font-weight:900;
  box-shadow: 0 14px 28px rgba(255,191,0,.2);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.tk-footer-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(255,191,0,.24);
  filter: brightness(1.02);
}

.tk-footer-btn-outline{
  background: transparent;
  border: 1px solid rgba(255,204,0,.4);
  color:#ffcf33;
  box-shadow:none;
}

.tk-footer-bottom{
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.68);
  font-size:14px;
}

.tk-footer-bottom-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.tk-footer-bottom a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
}

.tk-footer-bottom a:hover{
  color:#ffcf33;
}

/* responsive */
@media (max-width: 1100px){
  .tk-footer-top{
    grid-template-columns: 1fr;
  }

  .tk-footer-main{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 768px){
  .tk-footer{
    padding: 40px 0 20px;
  }

  .tk-footer-top-copy h3{
    font-size:28px;
  }

  .tk-review-box{
    min-height: 330px;
    padding: 22px 18px 52px;
    border-radius: 20px;
  }

  .tk-review-slide{
    inset: 22px 18px 52px;
  }

  .tk-review-slide p{
    font-size:15px;
    line-height:1.75;
    max-width:100%;
  }

  .tk-review-rating{
    font-size:20px;
  }

  .tk-footer-main{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tk-footer-col h4{
    font-size:20px;
    margin-bottom:14px;
  }

  .tk-footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

/******************************FOOTER-END******************************************/


@media (min-width: 1024px){
  .search{
    flex: 0 0 460px;
    width: 460px;
    max-width: 460px;
    margin: 0;
  }
}


@media (min-width: 1024px){
  .nav-inner{
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .search{
    flex: 0 0 320px !important;
    width: 320px !important;
    max-width: 320px !important;
    margin: 0 !important;
  }

  .nav-links{
    margin-left: auto;
  }
}


.tk-footer-social{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:18px;
}

.tk-social-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:20px;
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 8px 18px rgba(0,0,0,.18);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.tk-social-icon:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 26px rgba(0,0,0,.28);
}

.tk-social-icon.ig{
  background:linear-gradient(135deg,#f9ce34,#ee2a7b,#6228d7);
  border-color:#000;
}



.tk-social-icon.tt-black i{
  color: #fff;
  text-shadow:
    -1.5px -1.5px 0 #25f4ee,
     1.5px  1.5px 0 #fe2c55;
}


/* ================= TOKINDO CHECKOUT / PAYMENT FLOW ================= */
.tk-page-head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;flex-wrap:wrap}
.tk-page-head h1,.tk-payment-hero h1,.tk-finish-hero h1{margin:0;font-size:34px;line-height:1.08;font-weight:900}
.tk-page-head p,.tk-payment-hero p,.tk-finish-hero p{margin:8px 0 0;color:rgba(17,17,17,.68);line-height:1.7}
.tk-stepper{display:flex;gap:12px;flex-wrap:wrap}
.tk-step{display:inline-flex;align-items:center;gap:10px;padding:10px 14px;border:1px solid rgba(210,37,43,.18);background:#fff;border-radius:999px;color:#8a6f00;font-weight:800}
.tk-step span{width:28px;height:28px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:#fff4be;border:1px solid #ffd84d;color:#7a5200;font-size:13px}
.tk-step.is-active{background:linear-gradient(180deg,#fff9df,#fff4b6);border-color:#ffd400;color:#111;box-shadow:0 12px 26px rgba(255,212,0,.16)}
.tk-step.is-done{background:#fff;border-color:#8fd694;color:#0b6b2a}
.tk-step.is-done span{background:#ebfff0;border-color:#84cc16;color:#0b6b2a}
.tk-checkout-grid,.tk-payment-layout{display:grid;grid-template-columns:minmax(0,1.45fr) 380px;gap:18px;align-items:start}
.tk-checkout-main,.tk-payment-main,.tk-finish-wrap{display:grid;gap:18px}
.tk-block,.tk-payment-block,.tk-payment-hero,.tk-finish-hero,.tk-summary-card{padding:22px;border-radius:24px;box-shadow:0 16px 44px rgba(0,0,0,.08)}
.tk-block-head,.tk-summary-head,.tk-payment-hero-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;flex-wrap:wrap}
.tk-block-kicker{font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:#b08a00;font-weight:900;margin-bottom:8px}
.tk-block h3,.tk-summary-head h3{margin:0;font-size:24px;line-height:1.15;font-weight:900}
.tk-head-badge{display:inline-flex;align-items:center;min-height:34px;padding:0 12px;border-radius:999px;background:#fff7cf;border:1px solid #ffe06e;color:#7a5b00;font-size:12px;font-weight:900}
.tk-form-grid{display:grid;gap:14px;margin-top:14px}
.tk-form-grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}
.tk-field{display:grid;gap:8px}
.tk-field span{font-size:13px;font-weight:800;color:#6e5b00}
.tk-option-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:14px}
.tk-option-card{position:relative;display:grid;gap:14px;padding:16px;border:1px solid rgba(255,212,0,.8);border-radius:18px;background:#fffaf0;cursor:pointer;transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease}
.tk-option-card:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(255,212,0,.16)}
.tk-option-card.is-active{border-color:#d2252b;background:linear-gradient(180deg,#fffdf2,#fff6d0);box-shadow:0 16px 28px rgba(210,37,43,.08)}
.tk-option-card input{position:absolute;opacity:0;pointer-events:none}
.tk-option-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.tk-option-top strong{display:block;font-size:18px;line-height:1.15}
.tk-option-top span{display:block;margin-top:4px;color:rgba(17,17,17,.62);font-size:13px;line-height:1.55}
.tk-option-top b{font-size:18px;white-space:nowrap}
.tk-option-bottom{display:flex;align-items:flex-end;justify-content:space-between;gap:10px;color:rgba(17,17,17,.62)}
.tk-option-bottom small{display:block;line-height:1.6;font-size:13px}
.tk-option-bottom em{font-style:normal;font-weight:800;color:#865c00;font-size:12px}
.tk-chip-row,.tk-pay-channels{display:flex;gap:8px;flex-wrap:wrap}
.tk-chip{display:inline-flex;align-items:center;min-height:30px;padding:0 10px;border-radius:999px;background:#fff;border:1px solid #ffe06e;color:#7a5b00;font-size:12px;font-weight:800}
.tk-submit-bar{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.tk-inline-msg{flex:1 1 260px}
.notice{padding:12px 14px;border-radius:16px;border:1px solid rgba(255,212,0,.45);background:#fff9df;color:#5f5200;line-height:1.65}
.tk-summary-card{position:sticky;top:96px}
.sticky-card{position:sticky;top:96px}
.tk-summary-head{padding-bottom:14px;border-bottom:1px dashed rgba(210,37,43,.14)}
.tk-summary-head span{color:rgba(17,17,17,.6);font-size:13px;font-weight:700}
.tk-summary-items{display:grid;gap:12px;margin-top:16px}
.tk-summary-item{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;padding:12px 0;border-bottom:1px dashed rgba(0,0,0,.08)}
.tk-summary-item strong{display:block;font-size:15px;line-height:1.4}
.tk-summary-item span{display:block;margin-top:4px;color:rgba(17,17,17,.58);font-size:13px}
.tk-summary-item b{white-space:nowrap;font-size:15px}
.tk-pricing-list{display:grid;gap:12px;margin-top:18px}
.tk-pricing-list div{display:flex;align-items:center;justify-content:space-between;gap:12px;color:rgba(17,17,17,.72)}
.tk-pricing-list .is-total{padding-top:14px;border-top:1px solid rgba(0,0,0,.08);color:#111;font-weight:900;font-size:18px}
.tk-summary-note,.tk-payment-note{margin-top:18px;padding:14px 16px;border-radius:16px;background:#fff8de;border:1px solid rgba(255,212,0,.45);line-height:1.7;color:#6d5b00;font-size:14px}
.tk-payment-meta-grid,.tk-finish-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:18px}
.tk-mini-stat{padding:16px;border-radius:18px;background:#fffaf0;border:1px solid rgba(255,212,0,.6)}
.tk-mini-stat span{display:block;color:rgba(17,17,17,.58);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.tk-mini-stat strong{display:block;margin-top:8px;font-size:18px;line-height:1.25}
.tk-payment-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.tk-outline-btn{background:#fff !important;color:#111 !important;border:1px solid #eab308 !important;box-shadow:none !important}
.tk-status-pill{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:0 14px;border-radius:999px;font-size:13px;font-weight:900;border:1px solid transparent}
.tk-status-pill.is-pending{background:#fff8de;border-color:#ffd84d;color:#7a5b00}
.tk-status-pill.is-paid{background:#ecfdf3;border-color:#86efac;color:#166534}
.tk-status-pill.is-failed{background:#fff1f2;border-color:#fda4af;color:#be123c}
.tk-status-pill.is-refunded{background:#eff6ff;border-color:#93c5fd;color:#1d4ed8}
.tk-address-copy{color:rgba(17,17,17,.76);line-height:1.8;font-size:15px}
.tk-address-note{margin-top:12px;padding-top:12px;border-top:1px dashed rgba(0,0,0,.08);color:#6b5a00;font-size:14px}
@media(max-width:1100px){.tk-checkout-grid,.tk-payment-layout{grid-template-columns:1fr}.tk-summary-card,.sticky-card{position:static}.tk-option-grid{grid-template-columns:1fr}.tk-payment-meta-grid,.tk-finish-stats{grid-template-columns:1fr 1fr}}
@media(max-width:768px){.tk-page-head h1,.tk-payment-hero h1,.tk-finish-hero h1{font-size:28px}.tk-block,.tk-payment-block,.tk-payment-hero,.tk-finish-hero,.tk-summary-card{padding:18px;border-radius:20px}.tk-form-grid.two,.tk-payment-meta-grid,.tk-finish-stats{grid-template-columns:1fr}.tk-stepper{gap:8px}.tk-step{padding:8px 10px;font-size:12px}.tk-step span{width:24px;height:24px}}



/* ===== Live shipping add-on ===== */
.tk-postal-row{display:grid;grid-template-columns:1fr auto;gap:10px;align-items:center}
.tk-field-help{display:block;margin-top:6px;color:var(--muted);line-height:1.5}
.tk-inline-hint{margin:0 0 12px;color:var(--muted);line-height:1.6}
.tk-warning-stack{display:grid;gap:8px;margin:0 0 12px}
.tk-rate-price-wrap{display:grid;justify-items:end;gap:4px}
.tk-rate-price-wrap small{text-decoration:line-through;color:var(--muted)}
@media(max-width:768px){.tk-postal-row{grid-template-columns:1fr}.tk-postal-row .btn{width:100%}}



.tk-summary-item-left{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}

.tk-summary-weight{
  display:block;
  font-size:12px;
  line-height:1.4;
  color:#7b7b7b;
}

/* ===== Cart surgical fix ===== */
.row{display:grid;grid-template-columns:minmax(0,1fr) 380px;gap:18px;align-items:start}
.table{width:100%;border-collapse:separate;border-spacing:0}
.table th,.table td{padding:14px 12px;vertical-align:top;text-align:left}
.table thead th{font-weight:900;border-bottom:1px solid rgba(255,212,0,.65)}
.table tbody tr:not(:last-child) td{border-bottom:1px solid rgba(255,212,0,.28)}
.cart-table-wrap{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}
.cart-table{min-width:720px}
.cart-product{display:flex;align-items:flex-start;gap:12px;min-width:0}
.cart-product__img{width:72px;height:54px;border-radius:12px;object-fit:cover;border:1px solid rgba(35,48,85,.16);flex:0 0 auto}
.cart-product__meta{min-width:0}
.cart-product__name{font-weight:900;line-height:1.25}
.cart-product__slug{color:rgba(17,17,17,.58);font-size:12px;line-height:1.45;word-break:break-word}
.cart-qty-input{width:76px;min-width:76px;text-align:center;padding-left:10px;padding-right:10px}
.cart-update-btn{min-width:96px;white-space:nowrap}
@media(max-width:980px){.row{grid-template-columns:1fr}}
@media(max-width:768px){
  .cart-table{min-width:0}
  .cart-table thead{display:none}
  .cart-table,.cart-table tbody,.cart-table tr,.cart-table td{display:block;width:100%}
  .cart-table tbody{display:grid;gap:14px}
  .cart-table tr{padding:14px;border:1px solid rgba(255,212,0,.45);border-radius:18px;background:#fff}
  .cart-table td{padding:0;border:0 !important}
  .cart-table td + td{margin-top:10px}
  .cart-table td::before{content:attr(data-label);display:block;margin-bottom:6px;color:#7a5a00;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.04em}
  .cart-table td:first-child::before{display:none}
  .cart-product{align-items:center}
  .cart-product__img{width:64px;height:64px}
  .cart-qty-input{width:100%;min-width:0;height:46px}
  .cart-update-btn{width:100%}
}

/* =========================================================
   TOKINDO SELLER CENTER — premium backend UI
   Scope: admin pages only. Does not affect storefront.
   ========================================================= */
.tk-admin-body{margin:0;background:#f7f8fb;color:#1f2937;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;overflow-x:hidden}.tk-admin-body *{box-sizing:border-box}.tk-admin-shell{min-height:100vh;display:grid;grid-template-columns:272px minmax(0,1fr)}.tk-admin-sidebar{position:sticky;top:0;height:100vh;background:rgba(255,255,255,.94);border-right:1px solid #edf0f5;padding:22px 16px;display:flex;flex-direction:column;gap:18px;box-shadow:10px 0 30px rgba(15,23,42,.035);z-index:20}.tk-admin-brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:#111827;padding:4px 8px 12px}.tk-admin-brand-mark{width:42px;height:42px;border-radius:14px;background:linear-gradient(135deg,#ff3f24,#ff8a4b);color:#fff;display:grid;place-items:center;box-shadow:0 12px 28px rgba(255,79,50,.24)}.tk-admin-brand strong{display:block;font-size:24px;line-height:1;color:#ff4f32;letter-spacing:-.04em}.tk-admin-brand small{display:block;margin-top:4px;color:#8b95a5;font-size:12px;font-weight:700}.tk-admin-menu{display:grid;gap:5px}.tk-admin-menu a{position:relative;display:grid;grid-template-columns:22px 1fr auto;align-items:center;gap:12px;padding:12px 12px;border-radius:12px;color:#596273;text-decoration:none;font-weight:750;font-size:14px;transition:.18s ease}.tk-admin-menu a:hover,.tk-admin-menu a.active{background:#fff2ed;color:#fb4e30}.tk-admin-menu a.active:before{content:"";position:absolute;left:-16px;top:10px;bottom:10px;width:4px;border-radius:0 8px 8px 0;background:#fb4e30}.tk-admin-menu a.is-disabled{opacity:.58;cursor:not-allowed}.tk-admin-menu em{font-size:10px;font-style:normal;background:#eef1f6;color:#8b95a5;padding:3px 8px;border-radius:999px}.tk-admin-sidepromo{margin-top:auto;background:linear-gradient(145deg,#fff4eb,#ffe3d2);border:1px solid #ffd7c5;border-radius:18px;padding:16px;overflow:hidden;position:relative}.tk-admin-sidepromo:after{content:"";position:absolute;right:-24px;bottom:-28px;width:98px;height:98px;border-radius:32px;background:radial-gradient(circle,#ff6b47 0 35%,transparent 36%),linear-gradient(135deg,rgba(255,79,50,.12),rgba(255,162,84,.32));transform:rotate(14deg)}.tk-admin-sidepromo-title{font-weight:950;color:#fb4e30}.tk-admin-sidepromo p{font-size:12px;line-height:1.55;color:#7b5145;margin:8px 0 14px}.tk-admin-sidepromo a{display:inline-flex;background:#fb4e30;color:#fff;border-radius:10px;padding:9px 12px;text-decoration:none;font-size:12px;font-weight:900}.tk-admin-level{border:1px solid #edf0f5;border-radius:18px;background:#fff;padding:14px;display:grid;gap:10px}.tk-admin-level div{display:flex;justify-content:space-between;gap:10px}.tk-admin-level strong{font-size:13px}.tk-admin-level span{display:block;color:#8b95a5;font-size:11px;margin-top:4px}.tk-admin-level b{font-size:13px;color:#111827}.tk-admin-level i{height:7px;border-radius:999px;background:#edf0f5;overflow:hidden}.tk-admin-level i span{display:block;height:100%;background:linear-gradient(90deg,#fb4e30,#ff9c5a)}.tk-admin-main{min-width:0}.tk-admin-topbar{height:78px;background:rgba(255,255,255,.9);backdrop-filter:blur(14px);border-bottom:1px solid #edf0f5;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:0 28px;position:sticky;top:0;z-index:12}.tk-admin-search{height:46px;min-width:360px;max-width:520px;flex:1;display:flex;align-items:center;gap:10px;background:#fff;border:1px solid #e8ebf2;border-radius:14px;padding:0 12px;box-shadow:0 10px 26px rgba(15,23,42,.035)}.tk-admin-search input{border:0;outline:0;flex:1;font-weight:700;color:#111827;background:transparent}.tk-admin-search i{color:#9aa3b2}.tk-admin-search kbd{border:1px solid #edf0f5;background:#f7f8fb;color:#9aa3b2;border-radius:8px;padding:3px 8px;font-size:11px}.tk-admin-actions{display:flex;align-items:center;gap:10px}.tk-admin-actions button,.tk-admin-actions a{height:42px;border:1px solid #e8ebf2;background:#fff;color:#4b5563;border-radius:13px;padding:0 13px;display:inline-flex;align-items:center;gap:8px;text-decoration:none;font-weight:800;position:relative}.tk-admin-actions .has-dot:after{content:"8";position:absolute;right:-5px;top:-6px;background:#fb4e30;color:#fff;border-radius:999px;font-size:10px;font-weight:900;width:18px;height:18px;display:grid;place-items:center}.tk-admin-profile{display:flex;align-items:center;gap:10px;padding:4px 10px 4px 4px;border:1px solid #e8ebf2;background:#fff;border-radius:999px}.tk-admin-profile div{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,#111827,#fb4e30);color:#fff;font-weight:950}.tk-admin-profile strong{display:block;font-size:13px}.tk-admin-profile small{display:block;font-size:11px;color:#8b95a5}.tk-admin-logout{width:42px;justify-content:center;padding:0!important}.tk-admin-content{padding:24px 28px 44px}.tk-admin-pagehead{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;margin-bottom:18px}.tk-admin-pagehead h1{margin:0;font-size:30px;line-height:1.1;letter-spacing:-.04em;color:#111827}.tk-admin-pagehead p{margin:8px 0 0;color:#7b8494;font-weight:650}.tk-admin-page-actions{display:flex;gap:10px;flex-wrap:wrap}.tk-admin-page-actions a{background:#fff;border:1px solid #e8ebf2;color:#4b5563;text-decoration:none;border-radius:13px;padding:11px 14px;font-weight:900}.tk-admin-page-actions a.primary{background:#fb4e30;color:#fff;border-color:#fb4e30;box-shadow:0 14px 26px rgba(251,78,48,.18)}.tk-kpi-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px;margin-bottom:18px}.tk-kpi-card{background:#fff;border:1px solid #edf0f5;border-radius:18px;padding:16px;box-shadow:0 12px 30px rgba(15,23,42,.045);min-height:120px}.tk-kpi-card i{width:38px;height:38px;border-radius:14px;display:grid;place-items:center;background:#fff0eb;color:#fb4e30;margin-bottom:12px}.tk-kpi-card.blue i{background:#eaf3ff;color:#2680eb}.tk-kpi-card.purple i{background:#f0eaff;color:#805cf6}.tk-kpi-card.teal i{background:#e9fbf7;color:#13b99f}.tk-kpi-card.gold i{background:#fff4df;color:#d69220}.tk-kpi-card.red i{background:#fff0f4;color:#ef315a}.tk-kpi-card span{display:block;font-size:12px;color:#6b7280;font-weight:900}.tk-kpi-card strong{display:block;font-size:20px;letter-spacing:-.03em;margin-top:7px;color:#111827}.tk-kpi-card em{display:block;font-style:normal;color:#9aa3b2;font-size:11px;margin-top:5px}.tk-admin-grid-main{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(280px,.9fr) minmax(280px,.95fr);gap:18px}.tk-admin-grid-bottom{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(280px,.9fr) minmax(280px,.95fr);gap:18px;margin-top:18px}.tk-admin-card{background:#fff;border:1px solid #edf0f5;border-radius:20px;padding:18px;box-shadow:0 14px 36px rgba(15,23,42,.05)}.tk-card-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:16px}.tk-card-head h3{margin:0;font-size:16px;letter-spacing:-.02em}.tk-card-head strong{display:block;font-size:25px;margin-top:8px;letter-spacing:-.04em}.tk-card-head span,.tk-card-head a{color:#7b8494;font-size:12px;font-weight:850;text-decoration:none}.tk-card-head a{color:#2680eb}.tk-chart-wrap svg{width:100%;height:275px}.tk-chart-wrap line{stroke:#eef1f6;stroke-width:1}.tk-chart-wrap .area{fill:url(#salesGlow);stroke:0}.tk-chart-wrap .line{fill:none;stroke:#ff5a3d;stroke-width:4;stroke-linecap:round;stroke-linejoin:round}.tk-chart-wrap circle{fill:#ff5a3d;stroke:#fff;stroke-width:3}.tk-chart-summary{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}.tk-chart-summary div{border:1px solid #edf0f5;border-radius:14px;padding:12px}.tk-chart-summary span{display:block;font-size:11px;color:#8b95a5;font-weight:850}.tk-chart-summary strong{display:block;margin-top:5px;color:#111827}.tk-donut{width:190px;height:190px;border-radius:50%;margin:8px auto 18px;background:conic-gradient(#ff5638 0 42%,#ff8b57 42% 67%,#19b9a7 67% 85%,#805cf6 85% 95%,#a7b0c2 95% 100%);display:grid;place-items:center}.tk-donut>div{width:112px;height:112px;border-radius:50%;background:#fff;display:grid;place-items:center;text-align:center;box-shadow:inset 0 0 0 1px #edf0f5}.tk-donut strong{font-size:24px;letter-spacing:-.04em}.tk-donut span{display:block;font-size:11px;color:#8b95a5}.tk-legend{display:grid;gap:9px}.tk-legend div{display:grid;grid-template-columns:10px 1fr auto;align-items:center;gap:8px;font-size:12px;color:#596273;font-weight:750}.tk-legend span{height:10px;border-radius:3px;background:#ff5638}.tk-legend div:nth-child(2) span{background:#ff8b57}.tk-legend div:nth-child(3) span{background:#19b9a7}.tk-legend div:nth-child(4) span{background:#805cf6}.tk-legend div:nth-child(5) span{background:#a7b0c2}.tk-top-products,.tk-stock-list{display:grid;gap:12px}.tk-top-products div,.tk-stock-list div{display:grid;grid-template-columns:24px 42px 1fr auto;align-items:center;gap:10px}.tk-stock-list div{grid-template-columns:42px 1fr auto}.tk-top-products em{font-style:normal;color:#8b95a5;font-weight:900}.tk-top-products img,.tk-stock-list img,.tk-product-cell img{width:42px;height:42px;border-radius:12px;object-fit:cover;background:#f3f4f6}.tk-top-products span,.tk-stock-list span{font-weight:850;font-size:13px}.tk-top-products strong,.tk-stock-list strong{font-size:12px;color:#374151}.tk-table-wrap{overflow:auto}.tk-admin-table{width:100%;border-collapse:separate;border-spacing:0}.tk-admin-table th{font-size:11px;text-transform:uppercase;letter-spacing:.05em;color:#8b95a5;text-align:left;background:#fafbfe;border-bottom:1px solid #edf0f5;padding:13px 12px}.tk-admin-table td{border-bottom:1px solid #f0f2f6;padding:14px 12px;font-size:13px;color:#374151;vertical-align:middle}.tk-admin-table td small{display:block;color:#9aa3b2;margin-top:4px}.tk-status{display:inline-flex;padding:6px 10px;border-radius:999px;font-size:11px;font-weight:950;text-transform:capitalize;background:#eef1f6;color:#596273}.tk-status.paid,.tk-status.selesai{background:#dcfce7;color:#15803d}.tk-status.pending{background:#fff7ed;color:#c2410c}.tk-status.failed,.tk-status.cancelled{background:#fee2e2;color:#b91c1c}.tk-status.dikirim{background:#e0f2fe;color:#0369a1}.tk-actions-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}.tk-actions-grid a{border:1px solid #edf0f5;border-radius:15px;min-height:70px;padding:12px;display:flex;flex-direction:column;gap:8px;justify-content:center;text-decoration:none;color:#fb4e30;background:#fff7f2;font-weight:900}.tk-actions-grid a:nth-child(3){background:#eff6ff;color:#2563eb}.tk-actions-grid a:nth-child(4){background:#ecfdf5;color:#059669}.tk-campaign-card{margin-top:14px;border-radius:16px;background:linear-gradient(135deg,#fff2ed,#ffe2cc);padding:16px;color:#7c2d12}.tk-campaign-card strong{display:block;color:#9a3412}.tk-campaign-card p{margin:6px 0 0;font-size:12px;line-height:1.55}.tk-admin-grid-products{display:grid;grid-template-columns:minmax(0,1.5fr) minmax(280px,.8fr);gap:18px}.tk-admin-form{display:grid;gap:13px}.tk-admin-form label{display:grid;gap:7px}.tk-admin-form span{font-size:12px;color:#4b5563;font-weight:900}.tk-admin-form small{color:#9aa3b2;font-weight:700}.seller-input{width:100%;border:1px solid #e5e7eb;background:#fff;border-radius:13px;padding:12px 13px;outline:none;font-weight:750;color:#111827}.seller-input:focus{border-color:#ff7a5d;box-shadow:0 0 0 4px rgba(251,78,48,.1)}.tk-form-2{display:grid;grid-template-columns:1fr 1fr;gap:12px}.tk-form-3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.tk-form-4{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}.tk-check-row{display:flex;gap:16px;flex-wrap:wrap}.tk-check-row label{display:flex!important;align-items:center;gap:8px;color:#4b5563;font-weight:850}.tk-admin-submit{border:0;background:linear-gradient(135deg,#fb4e30,#ff7a45);color:#fff;border-radius:13px;padding:13px 16px;font-weight:950;cursor:pointer;box-shadow:0 14px 28px rgba(251,78,48,.18)}.tk-admin-submit.small{padding:0 18px;height:44px}.tk-note-stack{display:grid;gap:12px}.tk-note-stack div{border:1px solid #edf0f5;background:#fafbfe;border-radius:15px;padding:13px}.tk-note-stack strong{display:block}.tk-note-stack p{margin:5px 0 0;color:#7b8494;font-size:12px;line-height:1.55}.tk-product-cell{display:flex;align-items:center;gap:10px;min-width:250px}.tk-product-cell strong{display:block}.tk-product-cell small{display:block}.tk-text-danger{color:#dc2626;font-weight:900;text-decoration:none}.tk-alert{border:1px solid #fecaca;background:#fef2f2;color:#b91c1c;border-radius:14px;padding:13px 14px;margin-bottom:14px;font-weight:850}.tk-alert.success{border-color:#bbf7d0;background:#f0fdf4;color:#15803d}.tk-order-tabs{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:14px}.tk-order-tabs a{padding:12px 14px;border-radius:14px;background:#fff;border:1px solid #e8ebf2;text-decoration:none;color:#4b5563;font-weight:900}.tk-order-tabs a.active{background:#fff2ed;color:#fb4e30;border-color:#ffd3c4}.tk-order-tabs span{background:#f1f3f7;border-radius:999px;padding:3px 8px;margin-left:5px;font-size:11px}.tk-filter-row{display:grid;grid-template-columns:1fr auto auto;gap:10px;margin-bottom:16px}.tk-reset-btn{height:44px;display:inline-flex;align-items:center;justify-content:center;border:1px solid #e8ebf2;background:#fff;border-radius:13px;color:#4b5563;text-decoration:none;font-weight:900;padding:0 15px}.tk-empty{text-align:center!important;color:#9aa3b2!important;padding:24px!important}.tk-admin-body .section,.tk-admin-body .container{max-width:none;margin:0;padding:0}.tk-admin-body .card{box-shadow:none}.tk-admin-body .admin-shell{padding:0!important}.tk-admin-body .btn{border-radius:13px}.tk-admin-body .seller-panel,.tk-admin-body .card.admin-shell{background:#fff;border:1px solid #edf0f5;border-radius:20px;padding:18px;box-shadow:0 14px 36px rgba(15,23,42,.05)}
@media (max-width:1280px){.tk-kpi-grid{grid-template-columns:repeat(3,1fr)}.tk-admin-grid-main,.tk-admin-grid-bottom{grid-template-columns:1fr 1fr}.tk-sales-card,.tk-orders-card{grid-column:1/-1}.tk-admin-actions button span,.tk-admin-actions a span{display:none}}@media (max-width:920px){.tk-admin-shell{grid-template-columns:1fr}.tk-admin-sidebar{position:relative;height:auto}.tk-admin-menu{grid-template-columns:1fr 1fr}.tk-admin-topbar{position:relative;height:auto;flex-direction:column;align-items:stretch;padding:16px}.tk-admin-search{min-width:0}.tk-admin-actions{flex-wrap:wrap}.tk-kpi-grid,.tk-admin-grid-main,.tk-admin-grid-bottom,.tk-admin-grid-products{grid-template-columns:1fr}.tk-form-2,.tk-form-3,.tk-form-4,.tk-chart-summary{grid-template-columns:1fr}.tk-admin-pagehead{align-items:flex-start;flex-direction:column}}@media (max-width:560px){.tk-admin-content{padding:16px}.tk-admin-menu{grid-template-columns:1fr}.tk-admin-sidebar{padding:16px}.tk-kpi-grid{grid-template-columns:1fr}.tk-filter-row{grid-template-columns:1fr}.tk-admin-pagehead h1{font-size:24px}}


/* iOS Safari: prevent input focus auto-zoom */
@supports (-webkit-touch-callout: none) {
  input,
  select,
  textarea {
    font-size: 16px !important;
    line-height: 1.4 !important;
    transform: none !important;
    -webkit-text-size-adjust: 100% !important;
  }

  input[type="search"],
  input[type="email"],
  input[type="password"],
  input[type="text"],
  input[type="tel"],
  input[type="number"],
  input[type="url"],
  textarea,
  select,
  .seller-input,
  .form-control,
  .search-input,
  .tk-admin-form input,
  .tk-admin-form select,
  .tk-admin-form textarea,
  .tk-login-card input {
    font-size: 16px !important;
    min-height: 44px;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 16px !important;
  }
}

/* =========================================================
   Tokindo Notification Layer Fix
   Make order-complete notification always above everything
   ========================================================= */

.tk-notification,
.tk-toast,
.tk-toast-wrap,
.tk-alert-floating,
.order-complete-notification,
.payment-complete-notification,
#orderCompleteNotification,
#paymentCompleteNotification,
[data-toast],
[data-notification] {
  position: fixed !important;
  z-index: 2147483647 !important;
  isolation: isolate !important;
  pointer-events: auto !important;
}

/* Default placement: top center */
.tk-notification,
.tk-toast,
.tk-alert-floating,
.order-complete-notification,
.payment-complete-notification,
#orderCompleteNotification,
#paymentCompleteNotification {
  top: max(18px, env(safe-area-inset-top)) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  max-width: min(520px, calc(100vw - 28px)) !important;
}

/* If notification is inside a transformed parent, force wrapper-level visibility */
body > .tk-notification,
body > .tk-toast,
body > .tk-alert-floating,
body > .order-complete-notification,
body > .payment-complete-notification,
body > #orderCompleteNotification,
body > #paymentCompleteNotification {
  z-index: 2147483647 !important;
}

/* Make sure common overlays do not beat notification */
.modal,
.modal-backdrop,
.offcanvas,
.dropdown-menu,
.tk-admin-sidebar,
.tk-admin-topbar,
.pwa-install-banner,
.pwa-install-button,
#pwaInstallButton,
#installAppButton {
  z-index: 999999 !important;
}
/* =========================================================
   BODIMAX-INSPIRED HOMEPAGE REFRESH
   Scope: home.php only, classes prefixed with .bdx-
   ========================================================= */

.bdx-hero,
.bdx-trust,
.bdx-story,
.bdx-explore,
.bdx-promos,
.bdx-treadmill-strip,
.bdx-reviews,
.bdx-app-banner{
  max-width:var(--max);
  margin:0 auto;
  padding-left:18px;
  padding-right:18px;
}

.bdx-hero{
  position:relative;
  max-width:none;
  padding:34px 18px 28px;
  overflow:hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(255,212,0,.35), transparent 26%),
    radial-gradient(circle at 12% 16%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(135deg,#e31728 0%,#c51220 48%,#0f0f12 125%);
  color:#fff;
}

.bdx-hero__inner{
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(420px,1.08fr);
  gap:28px;
  align-items:center;
}

.bdx-eyebrow,
.bdx-section-head span,
.bdx-promo-large span,
.bdx-treadmill-strip span,
.bdx-app-banner span{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  border:1px solid rgba(255,212,0,.55);
  background:rgba(255,212,0,.14);
  color:#ffdf43;
  border-radius:999px;
  padding:7px 12px;
  font-size:12px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.bdx-hero h1{
  margin:16px 0 12px;
  max-width:13ch;
  font-size:clamp(40px,6.6vw,84px);
  line-height:.92;
  letter-spacing:-.07em;
  font-weight:1000;
}

.bdx-hero p{
  max-width:58ch;
  margin:0;
  color:rgba(255,255,255,.84);
  font-size:17px;
  line-height:1.65;
}

.bdx-hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.bdx-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:950;
  line-height:1;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.bdx-btn:hover{transform:translateY(-2px)}

.bdx-btn--dark{
  background:#111;
  color:#fff;
  box-shadow:0 18px 38px rgba(0,0,0,.24);
}

.bdx-btn--ghost{
  background:#fff;
  color:#111;
  border:1px solid rgba(0,0,0,.08);
}

.bdx-hero .bdx-btn--ghost{
  background:rgba(255,255,255,.14);
  color:#fff;
  border-color:rgba(255,255,255,.26);
  backdrop-filter:blur(10px);
}

.bdx-proof{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}

.bdx-proof div{
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(12px);
}

.bdx-proof b{
  display:block;
  font-size:22px;
  line-height:1;
}

.bdx-proof span{
  display:block;
  margin-top:6px;
  color:rgba(255,255,255,.72);
  font-size:12px;
  font-weight:800;
}

.bdx-hero__visual{
  position:relative;
}

.bdx-slider{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  background:#fff;
  border:1px solid rgba(255,255,255,.28);
  box-shadow:0 30px 80px rgba(0,0,0,.28);
}

.bdx-slider__track{
  display:flex;
  transition:transform .7s cubic-bezier(.22,.8,.24,1);
}

.bdx-slide{
  min-width:100%;
  aspect-ratio:16/10;
  background:#fff;
}

.bdx-slide img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.bdx-slider__dots{
  position:absolute;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  display:flex;
  gap:7px;
  padding:6px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(10px);
}

.bdx-slider__dots button{
  width:9px;
  height:9px;
  padding:0;
  border:0;
  border-radius:999px;
  background:#c7c7c7;
  cursor:pointer;
}

.bdx-slider__dots button.is-active{
  width:24px;
  background:#e31728;
}

.bdx-hero-card{
  position:absolute;
  right:22px;
  bottom:-24px;
  width:min(310px,70%);
  padding:16px 18px;
  border-radius:22px;
  background:#fff;
  color:#111;
  box-shadow:0 24px 60px rgba(0,0,0,.24);
  border:1px solid rgba(255,212,0,.65);
}

.bdx-hero-card span{
  display:inline-flex;
  padding:5px 9px;
  border-radius:999px;
  background:#fff2ab;
  color:#8a5a00;
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
}

.bdx-hero-card strong{
  display:block;
  margin-top:8px;
  line-height:1.18;
}

.bdx-hero-card em{
  display:block;
  margin-top:7px;
  color:#e31728;
  font-style:normal;
  font-weight:1000;
}

.bdx-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}

.bdx-section-head--center{
  display:block;
  text-align:center;
}

.bdx-section-head--center span{margin:0 auto 12px}
.bdx-section-head span{color:#b71922;background:#fff2ab;border-color:#ffd400}

.bdx-section-head h2{
  margin:10px 0 0;
  font-size:clamp(28px,3.5vw,52px);
  line-height:1;
  letter-spacing:-.045em;
  font-weight:1000;
}

.bdx-section-head a{
  color:#b71922;
  font-weight:950;
  white-space:nowrap;
}

.bdx-trust{
  padding-top:54px;
  padding-bottom:26px;
}

.bdx-trust__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.bdx-trust-card{
  min-height:185px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:8px;
  padding:24px;
  border-radius:28px;
  border:1px solid rgba(0,0,0,.08);
  background:
    radial-gradient(circle at 85% 18%, rgba(255,212,0,.32), transparent 22%),
    linear-gradient(180deg,#fff,#fff7d1);
  box-shadow:0 18px 42px rgba(0,0,0,.08);
}

.bdx-trust-card i{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:#111;
  font-style:normal;
  font-size:24px;
}

.bdx-trust-card b{font-size:22px;font-weight:1000}
.bdx-trust-card span{color:#5d6472;line-height:1.45;font-weight:700}

.bdx-story{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(380px,.9fr);
  gap:26px;
  align-items:center;
  padding-top:28px;
  padding-bottom:38px;
}

.bdx-story__media{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  min-height:420px;
  background:#f4f4f5;
  box-shadow:0 24px 70px rgba(0,0,0,.1);
}

.bdx-story__media img{
  width:100%;
  height:100%;
  min-height:420px;
  display:block;
  object-fit:cover;
}

.bdx-story__copy{
  padding:8px 0;
}

.bdx-story h2{
  margin:14px 0 12px;
  font-size:clamp(34px,4.4vw,66px);
  line-height:.95;
  letter-spacing:-.06em;
}

.bdx-story p{
  color:#4b5563;
  line-height:1.7;
  font-size:16px;
}

.bdx-service-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:22px 0 18px;
}

.bdx-service-grid div{
  padding:16px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 14px 34px rgba(0,0,0,.055);
}

.bdx-service-grid b,
.bdx-service-grid span{display:block}
.bdx-service-grid b{font-weight:950}
.bdx-service-grid span{margin-top:6px;color:#6b7280;font-size:13px;font-weight:750}
.bdx-link{font-weight:1000;color:#b71922}

.bdx-explore{
  padding-top:32px;
  padding-bottom:34px;
}

.bdx-category-pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.bdx-category-pills a{
  padding:12px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  font-weight:950;
  box-shadow:0 10px 24px rgba(0,0,0,.045);
}

.bdx-category-pills a.is-dark{
  background:#111;
  color:#fff;
}

.bdx-benefits{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.bdx-benefits div{
  padding:20px;
  border-radius:24px;
  background:#111;
  color:#fff;
  min-height:122px;
}

.bdx-benefits b{display:block;font-size:20px;line-height:1.15}
.bdx-benefits span{display:block;margin-top:10px;color:rgba(255,255,255,.72);font-weight:700}

.bdx-promos{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);
  gap:16px;
  padding-top:28px;
  padding-bottom:34px;
}

.bdx-promo-large,
.bdx-mini-promo{
  border-radius:30px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 50px rgba(0,0,0,.08);
}

.bdx-promo-large{
  min-height:320px;
  padding:34px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-end;
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,.75), transparent 18%),
    linear-gradient(135deg,#ffd400,#ff8a00 46%,#e31728);
  color:#111;
  overflow:hidden;
}

.bdx-promo-large span{background:#111;color:#fff;border-color:#111}
.bdx-promo-large h2{margin:14px 0 8px;font-size:clamp(30px,3.6vw,58px);line-height:1;letter-spacing:-.05em}
.bdx-promo-large p{max-width:52ch;font-weight:750;color:rgba(17,17,17,.72)}

.bdx-promo-stack{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.bdx-mini-promo{
  min-height:98px;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:#fff;
}

.bdx-mini-promo b{font-size:22px;font-weight:1000}
.bdx-mini-promo span{margin-top:7px;color:#6b7280;font-weight:750}

.bdx-products{
  padding-top:18px!important;
  padding-bottom:30px!important;
}

.bdx-products .product{
  border-color:rgba(0,0,0,.08);
  border-radius:24px;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}

.bdx-products .product:hover{
  border-color:#ffd400;
  box-shadow:0 22px 55px rgba(0,0,0,.1);
}

.bdx-treadmill-strip{
  margin-top:18px;
  margin-bottom:34px;
  padding-top:30px;
  padding-bottom:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border-radius:34px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,212,0,.35), transparent 20%),
    linear-gradient(135deg,#161616,#2a0f11);
  color:#fff;
  box-shadow:0 24px 70px rgba(0,0,0,.16);
}

.bdx-treadmill-strip h2{
  margin:10px 0 0;
  font-size:clamp(30px,3.7vw,54px);
  line-height:1;
  letter-spacing:-.05em;
}

.bdx-reviews{
  padding-top:20px;
  padding-bottom:38px;
}

.bdx-review-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.bdx-review-grid div{
  padding:24px;
  border-radius:26px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 16px 44px rgba(0,0,0,.06);
  color:#374151;
  font-weight:750;
  line-height:1.55;
}

.bdx-review-grid b{
  display:block;
  margin-top:16px;
  color:#111;
  font-weight:1000;
}

.bdx-app-banner{
  margin-bottom:42px;
  display:grid;
  grid-template-columns:minmax(0,.8fr) minmax(360px,1fr);
  gap:18px;
  align-items:center;
  padding-top:28px;
  padding-bottom:28px;
  border-radius:34px;
  background:#fff7d1;
  border:1px solid #ffd400;
}

.bdx-app-banner h2{
  margin:12px 0 8px;
  font-size:clamp(28px,3.2vw,48px);
  line-height:1;
  letter-spacing:-.04em;
}

.bdx-app-banner p{color:#5d6472;font-weight:750;line-height:1.6}
.bdx-app-banner img{width:100%;border-radius:24px;display:block;max-height:340px;object-fit:cover}

@media(max-width:980px){
  .bdx-hero__inner,
  .bdx-story,
  .bdx-promos,
  .bdx-app-banner{
    grid-template-columns:1fr;
  }

  .bdx-hero__inner{gap:22px}
  .bdx-hero h1{max-width:11ch}
  .bdx-trust__grid,
  .bdx-benefits,
  .bdx-review-grid{grid-template-columns:1fr}
  .bdx-section-head{align-items:flex-start;flex-direction:column}
  .bdx-story__media,
  .bdx-story__media img{min-height:300px}
}

@media(max-width:640px){
  .bdx-hero{padding-top:22px}
  .bdx-hero h1{font-size:42px;letter-spacing:-.055em}
  .bdx-hero p{font-size:14px}
  .bdx-proof{grid-template-columns:1fr}
  .bdx-slide{aspect-ratio:1/1}
  .bdx-hero-card{position:relative;right:auto;bottom:auto;width:100%;margin-top:12px}
  .bdx-service-grid{grid-template-columns:1fr}
  .bdx-promos,.bdx-story,.bdx-explore,.bdx-trust,.bdx-reviews{padding-top:24px;padding-bottom:24px}
  .bdx-promo-large{min-height:260px;padding:24px}
  .bdx-treadmill-strip{flex-direction:column;align-items:flex-start;border-radius:28px}
}

/* =========================================================
   BODIMAX HOMEPAGE WIDTH FIX
   Goal: reduce oversized left/right white margin on desktop.
   Safe scope: homepage bdx-* sections + global nav/footer container.
   ========================================================= */
:root{
  --bdx-wide-max: 1720px;
  --bdx-wide-gutter: 48px;
}

@media (min-width: 1180px){
  .nav .container,
  .footer .container,
  main.container{
    width: min(var(--bdx-wide-max), calc(100% - var(--bdx-wide-gutter))) !important;
    max-width: var(--bdx-wide-max) !important;
  }

  .bdx-hero,
  .bdx-trust,
  .bdx-story,
  .bdx-explore,
  .bdx-promos,
  .bdx-products,
  .bdx-treadmill-strip,
  .bdx-reviews,
  .bdx-app-banner{
    width: min(var(--bdx-wide-max), calc(100% - var(--bdx-wide-gutter))) !important;
    max-width: var(--bdx-wide-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .bdx-hero{
    border-radius: 0 0 34px 34px;
    padding-left: 34px !important;
    padding-right: 34px !important;
  }

  .bdx-hero__inner{
    max-width: none !important;
    width: 100% !important;
    grid-template-columns: minmax(420px,.88fr) minmax(520px,1.12fr);
  }
}

@media (min-width: 1600px){
  :root{ --bdx-wide-gutter: 56px; }
  .bdx-hero h1{
    font-size: clamp(56px,5.2vw,92px);
  }
}

@media (max-width: 1179px){
  .bdx-hero,
  .bdx-trust,
  .bdx-story,
  .bdx-explore,
  .bdx-promos,
  .bdx-products,
  .bdx-treadmill-strip,
  .bdx-reviews,
  .bdx-app-banner{
    width: auto !important;
  }
}

/* =========================================================
   TOKINDO.ID-STYLE PRODUCT DETAIL PAGE
   Old Tokindo catalog feel: compact, white, red price, thumbs
   ========================================================= */
.tkd-breadcrumb-wrap{background:#fff;border-bottom:1px solid #eee;padding:12px 0 0}.tkd-breadcrumb{display:flex;align-items:center;gap:9px;font-size:13px;color:#777;padding-bottom:12px}.tkd-breadcrumb a{color:#777;text-decoration:none}.tkd-breadcrumb a:after,.tkd-breadcrumb strong:after,.tkd-product-page a:after,.tkd-tabs-page a:after,.tkd-related-page a:after{display:none!important}.tkd-breadcrumb strong{color:#333;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tkd-product-page{padding:22px 0 18px;background:#fff}.tkd-product-shell{max-width:1180px}.tkd-product-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.82fr);gap:28px;align-items:start}.tkd-gallery-card,.tkd-detail-card,.tkd-tabs{background:#fff;border:1px solid #e8e8e8;border-radius:3px;box-shadow:none}.tkd-gallery-card{padding:0 0 14px}.tkd-desktop-title{margin:0;padding:0 0 16px;font-size:22px;line-height:1.35;font-weight:600;color:#333}.tkd-mobile-title{display:none;margin:0 0 14px;font-size:20px;line-height:1.3;color:#333}.tkd-gallery-layout{display:grid;grid-template-columns:78px minmax(0,1fr);gap:16px;align-items:start}.tkd-thumbs{display:grid;gap:10px;max-height:520px;overflow:auto;padding-right:2px}.tkd-thumb{width:76px;height:76px;border:1px solid #e1e1e1;background:#fff;border-radius:2px;padding:3px;cursor:pointer;position:relative}.tkd-thumb.active{border:2px solid #d71920}.tkd-thumb img{width:100%;height:100%;object-fit:cover;display:block}.tkd-thumb i{position:absolute;inset:auto 5px 5px auto;background:rgba(0,0,0,.72);color:#fff;width:22px;height:22px;border-radius:50%;display:grid;place-items:center;font-size:10px;font-style:normal}.tkd-main-media{position:relative;min-height:470px;border:1px solid #efefef;background:#fff;display:grid;place-items:center;overflow:hidden}.tkd-main-media img{width:100%;height:100%;max-height:560px;object-fit:contain;display:block;background:#fff}.tkd-video-stage,.tkd-video-stage iframe{width:100%;height:100%;min-height:470px;border:0}.tkd-sale-badge{position:absolute;top:12px;left:12px;z-index:3;background:#e51b23;color:#fff;min-width:54px;height:54px;border-radius:50%;display:grid;place-items:center;font-weight:800;font-size:15px;box-shadow:0 6px 16px rgba(229,27,35,.24)}.tkd-media-nav{position:absolute;top:50%;transform:translateY(-50%);width:36px;height:52px;border:0;background:rgba(0,0,0,.25);color:#fff;font-size:35px;line-height:1;z-index:4;cursor:pointer;opacity:0;transition:.18s ease}.tkd-main-media:hover .tkd-media-nav{opacity:1}.tkd-media-nav.prev{left:0}.tkd-media-nav.next{right:0}.tkd-detail-card{padding:0 0 18px}.tkd-product-name-block{padding:0 0 14px;border-bottom:1px solid #eee}.tkd-product-name-block h2{font-size:22px;line-height:1.35;color:#333;font-weight:600;margin:4px 0 0}.tkd-brand-line{font-size:12px;color:#999;text-transform:uppercase;letter-spacing:.04em}.tkd-brand-line span{color:#ddd;margin:0 6px}.tkd-price-box{padding:18px 0;border-bottom:1px solid #eee}.tkd-price-box del{display:inline-block;color:#aaa;font-size:20px;margin-right:14px;text-decoration:line-through}.tkd-price-box strong{display:inline-block;color:#e51b23;font-size:30px;font-weight:700;line-height:1}.tkd-meta-list{list-style:none;padding:14px 0;margin:0;border-bottom:1px solid #eee;display:grid;gap:9px}.tkd-meta-list li{display:flex;align-items:center;justify-content:space-between;gap:16px;color:#555;font-size:14px}.tkd-meta-list span{color:#777}.tkd-meta-list b{font-weight:600;color:#333}.tkd-buy-row{display:flex;align-items:center;gap:12px;padding-top:16px;flex-wrap:wrap}.tkd-buy-row>span{font-size:14px;color:#555}.tkd-qty-stepper{height:40px;display:inline-flex;border:1px solid #ddd;background:#fff}.tkd-qty-stepper button{width:38px;border:0;background:#f7f7f7;color:#333;font-size:18px;cursor:pointer}.tkd-qty-stepper input{width:56px;border:0;border-left:1px solid #ddd;border-right:1px solid #ddd;text-align:center;outline:none;font-weight:600}.tkd-cart-btn{height:40px;min-width:150px;display:inline-flex;align-items:center;justify-content:center;background:#e51b23;color:#fff!important;border:1px solid #cf141b;border-radius:2px;text-transform:uppercase;font-size:13px;font-weight:700;text-decoration:none;box-shadow:none}.tkd-cart-btn:hover{background:#c9141b}.tkd-wa-box{margin-top:16px;background:#f8f8f8;border:1px solid #eee;padding:12px;display:flex;justify-content:space-between;align-items:center;gap:12px}.tkd-wa-box strong{font-size:13px;color:#444}.tkd-wa-box a{font-size:13px;color:#fff;background:#20b15a;border-radius:2px;padding:9px 12px;text-decoration:none;font-weight:700}.tkd-tabs-page{padding:8px 0 22px;background:#fff}.tkd-tabs{max-width:1180px;margin:0 auto}.tkd-tab-nav{display:flex;align-items:center;border-bottom:1px solid #e5e5e5;background:#fafafa;overflow:auto}.tkd-tab-nav button{border:0;border-right:1px solid #e5e5e5;background:#fafafa;color:#555;padding:14px 20px;text-transform:uppercase;font-size:13px;font-weight:700;cursor:pointer;white-space:nowrap}.tkd-tab-nav button.active{background:#fff;color:#e51b23;border-top:3px solid #e51b23;padding-top:11px}.tkd-tab-panel{display:none;padding:22px;color:#444;line-height:1.8;font-size:14px}.tkd-tab-panel.active{display:block}.tkd-description-content{white-space:normal}.tkd-spec-table{display:grid;border:1px solid #eee}.tkd-spec-table div{display:grid;grid-template-columns:230px minmax(0,1fr);border-bottom:1px solid #eee}.tkd-spec-table div:last-child{border-bottom:0}.tkd-spec-table strong{background:#fafafa;color:#333;padding:12px 14px;border-right:1px solid #eee}.tkd-spec-table span{padding:12px 14px;color:#555}.tkd-feature-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.tkd-feature-list div{background:#fafafa;border:1px solid #eee;padding:12px;color:#333}.tkd-video-frame{aspect-ratio:16/9;background:#000}.tkd-video-frame iframe{width:100%;height:100%;border:0}.tkd-related-page{padding:0 0 32px;background:#fff}.tkd-section-title{display:flex;align-items:center;justify-content:space-between;margin:0 0 14px;border-bottom:2px solid #e51b23}.tkd-section-title h2{background:#e51b23;color:#fff;font-size:16px;text-transform:uppercase;margin:0;padding:10px 16px}.tkd-section-title a{color:#777;font-size:13px;text-decoration:none}.tkd-product-page .section,.tkd-tabs-page .section{padding:0}.tkd-product-page .container,.tkd-tabs-page .container,.tkd-related-page .container{padding-left:18px;padding-right:18px}.tkd-gallery-card,.tkd-detail-card{border:0}.tkd-detail-card{padding-top:38px}@media(max-width:980px){.tkd-product-grid{grid-template-columns:1fr;gap:18px}.tkd-desktop-title{display:none}.tkd-mobile-title{display:block}.tkd-detail-card{padding-top:0}.tkd-gallery-layout{grid-template-columns:1fr}.tkd-thumbs{display:flex;order:2;max-height:none;overflow-x:auto}.tkd-thumb{flex:0 0 72px;width:72px;height:72px}.tkd-main-media{min-height:330px}.tkd-video-stage,.tkd-video-stage iframe{min-height:330px}.tkd-price-box strong{font-size:26px}.tkd-tab-panel{padding:16px}.tkd-feature-list{grid-template-columns:1fr}.tkd-spec-table div{grid-template-columns:1fr}.tkd-spec-table strong{border-right:0;border-bottom:1px solid #eee}.tkd-buy-row{align-items:stretch}.tkd-cart-btn{flex:1}.tkd-wa-box{align-items:flex-start;flex-direction:column}}@media(max-width:560px){.tkd-product-page{padding-top:12px}.tkd-product-shell{padding-left:12px!important;padding-right:12px!important}.tkd-main-media{min-height:280px}.tkd-price-box del{font-size:16px}.tkd-price-box strong{display:block;margin-top:6px}.tkd-tab-nav button{padding-left:14px;padding-right:14px}.tkd-gallery-card,.tkd-detail-card,.tkd-tabs{border-left:0;border-right:0}.tkd-breadcrumb{font-size:12px}}

/* Tokindo product detail: video-first full-slide media */
.tkd-main-media.is-video{
  background:#000;
}
.tkd-main-media.is-video .tkd-sale-badge{
  z-index:8;
}
.tkd-main-media.is-video .tkd-media-nav{
  z-index:9;
}
.tkd-video-stage{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  min-height:100%;
  background:#000;
  overflow:hidden;
}
.tkd-video-stage #tkdProductVideoSlot,
.tkd-video-stage iframe,
.tkd-video-stage video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
  background:#000;
}
.tkd-video-stage video{
  object-fit:cover;
}
.tkd-video-stage iframe{
  object-fit:cover;
}
.tkd-thumb.is-video{
  background:#111;
  color:#fff;
  display:grid;
  place-items:center;
}
.tkd-video-thumb-mark{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#e51b23;
  color:#fff;
  font-size:17px;
  font-weight:900;
  line-height:1;
  box-shadow:0 8px 18px rgba(229,27,35,.32);
}

/* Fix: hidden product image must never bleed above video iframe */
.tkd-main-media #tkdProductMainImage[hidden],
.tkd-video-stage[hidden],
.tkd-video-stage [hidden]{
  display:none!important;
}
.tkd-main-media.is-video > img{
  display:none!important;
}
.tkd-main-media.is-video{
  background:#000!important;
}
.tkd-video-stage iframe{
  pointer-events:none;
}


/* Tokindo detail product mini banner */
.tkd-detail-mini-banner{
  display:flex;
  align-items:center;
  gap:12px;
  margin:16px 0 14px;
  padding:12px 14px;
  border:1px solid rgba(229,231,235,.95);
  background:linear-gradient(135deg,#fff 0%,#fff7f7 50%,#fff 100%);
  color:#222;
  text-decoration:none;
  min-height:72px;
  box-shadow:0 10px 24px rgba(15,23,42,.045);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.tkd-detail-mini-banner:hover{
  transform:translateY(-1px);
  border-color:rgba(232,0,18,.28);
  box-shadow:0 14px 30px rgba(15,23,42,.075);
}
.tkd-detail-mini-banner img{
  width:92px;
  height:52px;
  object-fit:cover;
  flex:0 0 auto;
  border:1px solid rgba(229,231,235,.85);
  background:#fff;
}
.tkd-detail-mini-banner:not(.has-image)::before{
  content:'PROMO';
  display:grid;
  place-items:center;
  width:70px;
  height:46px;
  flex:0 0 auto;
  background:#e80012;
  color:#fff;
  font-weight:900;
  font-size:11px;
  letter-spacing:.08em;
}
.tkd-mini-banner-copy{
  display:grid;
  gap:3px;
  min-width:0;
  flex:1 1 auto;
}
.tkd-mini-banner-copy b{
  color:#202020;
  font-size:14px;
  line-height:1.2;
}
.tkd-mini-banner-copy small{
  color:#777;
  font-size:12px;
  line-height:1.35;
}
.tkd-detail-mini-banner em{
  font-style:normal;
  background:#e80012;
  color:#fff;
  padding:8px 10px;
  font-size:11px;
  font-weight:900;
  white-space:nowrap;
}
@media (max-width:640px){
  .tkd-detail-mini-banner{align-items:flex-start;padding:11px;gap:10px}
  .tkd-detail-mini-banner img{width:78px;height:48px}
  .tkd-detail-mini-banner em{display:none}
}

/* Admin banner manager */
.tk-banner-editor-grid{
  display:grid;
  grid-template-columns:minmax(0,1.5fr) minmax(280px,.85fr);
  gap:16px;
  align-items:start;
}
.tk-banner-editor-card,.tk-banner-preview-card{padding:16px}
.tk-banner-editor-head{display:flex;justify-content:space-between;gap:14px;align-items:flex-start;margin-bottom:14px}
.tk-banner-editor-head strong{display:block;font-size:16px;font-weight:900;color:#202020}
.tk-banner-editor-head span{display:block;color:var(--muted);font-size:13px;line-height:1.5;margin-top:4px}
.tk-switch-line{display:flex;align-items:center;gap:8px;white-space:nowrap;font-weight:800;color:#333}
.tk-switch-line input{width:18px;height:18px;accent-color:#e80012}
.tk-upload-card{display:grid;gap:10px}
.tk-upload-preview{min-height:156px;border:1px dashed rgba(148,163,184,.7);background:#fff;border-radius:14px;overflow:hidden;display:grid;place-items:center}
.tk-upload-preview img{width:100%;height:100%;min-height:156px;object-fit:cover;display:block}
.tk-upload-empty{text-align:center;color:#6b7280;padding:28px 18px;display:grid;gap:7px;justify-items:center}
.tk-upload-empty i{font-size:28px;color:#e80012}
.tk-upload-empty b{color:#202020;font-size:14px}
.tk-upload-empty small{font-size:12px;line-height:1.4}
.tk-upload-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:11px 14px;border-radius:12px;background:#e80012;color:#fff;font-weight:900;cursor:pointer;box-shadow:0 10px 24px rgba(232,0,18,.2)}
.tk-upload-btn input{display:none}
.tk-upload-hint{color:var(--muted);line-height:1.45}
.tk-banner-fields{display:grid;gap:11px;margin-top:14px}
.tk-banner-fields label{display:grid;gap:6px}
.tk-banner-fields label span{font-size:12px;color:var(--muted);font-weight:800}
.tk-banner-two-col{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.tkd-detail-mini-banner .tk-mini-banner-media img{width:92px;height:52px;object-fit:cover;display:block;border:1px solid rgba(229,231,235,.85);background:#fff}
.tkd-detail-mini-banner .tk-mini-banner-icon{width:70px;height:46px;display:grid;place-items:center;background:#e80012;color:#fff;flex:0 0 auto;font-size:18px}
.tkd-detail-mini-banner .tk-mini-banner-copy strong{color:#202020;font-size:14px;line-height:1.2;font-weight:900}
.tkd-detail-mini-banner .tk-mini-banner-cta{background:#e80012;color:#fff;padding:8px 10px;font-size:11px;font-weight:900;white-space:nowrap}
.tkd-detail-mini-banner.admin-preview{pointer-events:none}
@media(max-width:900px){.tk-banner-editor-grid{grid-template-columns:1fr}.tk-banner-two-col{grid-template-columns:1fr}}
@media(max-width:640px){.tk-banner-editor-head{display:grid}.tkd-detail-mini-banner .tk-mini-banner-cta{display:none}}
.tkd-detail-mini-banner.admin-preview:not(.has-image)::before{display:none}


/* === Tokindo patch: fixed public header + category dropdown + admin category tree + closable floating promo === */
body:not(.tk-admin-body){padding-top:82px;}
body:not(.tk-admin-body) .nav{position:fixed!important;top:0;left:0;right:0;width:100%;z-index:9998;}
.tk-nav-dropdown{position:relative;display:inline-flex;align-items:center;}
.tk-nav-dropdown-menu{position:absolute;top:calc(100% + 12px);left:0;width:760px;max-width:calc(100vw - 36px);background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:16px;box-shadow:0 24px 60px rgba(0,0,0,.18);padding:16px;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;opacity:0;visibility:hidden;transform:translateY(8px);transition:.16s ease;z-index:10020;}
.tk-nav-dropdown:hover .tk-nav-dropdown-menu,.tk-nav-dropdown:focus-within .tk-nav-dropdown-menu{opacity:1;visibility:visible;transform:translateY(0);}
.tk-nav-cat-group{display:grid;align-content:start;gap:6px;padding:10px;border-radius:12px;background:#fafafa;border:1px solid #f0f0f0;}
.tk-nav-cat-parent{font-weight:900;color:#d2252b;text-decoration:none;font-size:14px;}
.tk-nav-cat-child{font-size:13px;color:#333;text-decoration:none;padding:4px 0;border-radius:8px;}
.tk-nav-cat-child:hover{color:#d2252b;}
.tk-mobile-cat-parent{margin-top:8px!important;background:rgba(255,255,255,.10)!important;}
.tk-mobile-cat-child{font-size:13px!important;padding-left:24px!important;opacity:.92;}
.tk-category-admin-grid{display:grid;grid-template-columns:minmax(280px,380px) minmax(0,1fr);gap:18px;align-items:start;}
.tk-category-form{padding:18px;display:grid;gap:14px;position:sticky;top:88px;}
.tk-category-form h2,.tk-category-list-card h2{margin:0 0 8px;font-size:18px;}
.tk-category-form label{display:grid;gap:6px;}
.tk-category-form small{color:#777;font-size:12px;}
.tk-checkline{display:flex!important;align-items:center;gap:9px;}
.tk-form-actions{display:flex;gap:10px;flex-wrap:wrap;}
.tk-category-list-card{padding:18px;}
.tk-category-tree-admin{display:grid;gap:12px;}
.tk-cat-parent{border:1px solid #ececec;border-radius:16px;background:#fff;overflow:hidden;}
.tk-cat-row,.tk-cat-child{display:flex;justify-content:space-between;align-items:center;gap:14px;padding:13px 14px;}
.tk-cat-row{background:linear-gradient(180deg,#fff,#fafafa);}
.tk-cat-row strong{font-size:16px;color:#222;}
.tk-cat-row small,.tk-cat-child small{display:block;color:#777;margin-top:2px;}
.tk-cat-children{display:grid;border-top:1px solid #eee;}
.tk-cat-child{padding-left:28px;border-top:1px solid #f3f3f3;background:#fff;}
.tk-cat-child:first-child{border-top:0;}
.tk-cat-child b{color:#333;}
.tk-cat-actions{display:flex;gap:8px;align-items:center;white-space:nowrap;}
.tk-cat-parent.is-off,.tk-cat-child.is-off{opacity:.52;filter:grayscale(.4);}
.btn-danger{background:#fff1f1!important;color:#c71822!important;border:1px solid #ffd0d0!important;}
.small-promo{overflow:visible!important;}
.small-promo-close{position:absolute;top:-10px;right:-10px;width:28px;height:28px;border:0;border-radius:999px;background:#111;color:#fff;font-size:20px;font-weight:900;line-height:1;display:grid;place-items:center;cursor:pointer;box-shadow:0 8px 18px rgba(0,0,0,.25);z-index:2;}
.small-promo.is-hidden{display:none!important;}
@media(max-width:980px){body:not(.tk-admin-body){padding-top:72px}.tk-nav-dropdown-menu{display:none}.tk-category-admin-grid{grid-template-columns:1fr}.tk-category-form{position:relative;top:auto}.tk-cat-row,.tk-cat-child{align-items:flex-start;flex-direction:column}.tk-cat-actions{width:100%;white-space:normal}}


/* === Tokindo patch: premium grouped catalog category picker === */
.tk-catalog-filter-section .tk-catalog-filter-card{padding:18px 18px 20px;margin-top:50px;border-radius:22px;border:1px solid #ffd35b;box-shadow:0 18px 45px rgba(0,0,0,.06);overflow:visible;}
.tk-catalog-filter-head{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;}
.tk-catalog-title{font-weight:950;font-size:24px;line-height:1;color:#151515;}
.tk-catalog-subtitle{color:#444;margin-top:8px;font-size:16px;}
.tk-catalog-filter-form{display:grid;grid-template-columns:minmax(320px,2fr) minmax(160px,1fr) minmax(150px,1fr) 120px;gap:10px;margin-top:16px;align-items:start;position:relative;}
.tk-category-picker{position:relative;z-index:50;}
.tk-category-picker-btn{height:50px;display:flex!important;align-items:center!important;justify-content:space-between!important;text-align:left;background:#fff!important;border:1px solid #ffbf00!important;border-radius:18px!important;padding:8px 14px!important;cursor:pointer;box-shadow:0 10px 24px rgba(255,184,0,.08);}
.tk-category-picker-btn small{display:block;font-size:10px;line-height:1;text-transform:uppercase;letter-spacing:.08em;color:#d2252b;font-weight:900;margin-bottom:5px;}
.tk-category-picker-btn b{display:block;color:#171717;font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;}
.tk-category-picker-chev{font-size:24px;font-weight:900;color:#d2252b;line-height:1;transition:.16s ease;}
.tk-category-picker.is-open .tk-category-picker-chev{transform:rotate(180deg);}
.tk-category-picker-panel{position:absolute;left:0;top:calc(100% + 10px);width:min(920px,calc(100vw - 32px));max-height:74vh;overflow:auto;background:#fff;border:1px solid rgba(255,190,0,.75);border-radius:22px;box-shadow:0 26px 70px rgba(0,0,0,.20);padding:14px;opacity:0;visibility:hidden;transform:translateY(8px);transition:.16s ease;}
.tk-category-picker.is-open .tk-category-picker-panel{opacity:1;visibility:visible;transform:translateY(0);}
.tk-category-clear{width:100%;border:1px solid #ffe08a;background:linear-gradient(180deg,#fff,#fffaf0);border-radius:14px;padding:12px 14px;text-align:left;font-weight:950;color:#252525;cursor:pointer;margin-bottom:12px;}
.tk-category-clear.is-active,.tk-category-clear:hover{background:#e31b23;color:#fff;border-color:#e31b23;}
.tk-category-grid-picker{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
.tk-category-group-picker{border:1px solid #f0f0f0;border-radius:18px;background:linear-gradient(180deg,#fff,#fffdf8);padding:12px;box-shadow:0 10px 28px rgba(0,0,0,.045);}
.tk-category-group-picker.is-selected{border-color:#e31b23;box-shadow:0 14px 32px rgba(227,27,35,.12);}
.tk-category-parent-picker{width:100%;border:0;background:transparent;display:flex;align-items:center;justify-content:space-between;gap:10px;padding:0 0 10px;margin:0 0 10px;border-bottom:1px solid #f1f1f1;cursor:pointer;text-align:left;}
.tk-category-parent-picker span{font-weight:950;color:#1d1d1d;font-size:15px;}
.tk-category-parent-picker em{font-style:normal;font-size:11px;font-weight:900;color:#e31b23;background:#fff1f2;border-radius:999px;padding:5px 8px;white-space:nowrap;}
.tk-category-subgrid-picker{display:flex;flex-wrap:wrap;gap:8px;}
.tk-category-child-picker{border:1px solid #ececec;background:#fff;border-radius:999px;padding:8px 10px;color:#454545;font-weight:800;font-size:12px;line-height:1;cursor:pointer;transition:.14s ease;}
.tk-category-child-picker:hover,.tk-category-child-picker.is-active{background:#e31b23;color:#fff;border-color:#e31b23;box-shadow:0 8px 18px rgba(227,27,35,.18);}
@media(max-width:980px){.tk-catalog-filter-form{grid-template-columns:1fr 1fr}.tk-category-picker{grid-column:1/-1}.tk-category-picker-panel{width:100%;}.tk-category-grid-picker{grid-template-columns:1fr;}}
@media(max-width:640px){.tk-catalog-filter-form{grid-template-columns:1fr}.tk-catalog-filter-section .tk-catalog-filter-card{margin-top:24px;border-radius:18px}.tk-category-picker-panel{position:fixed;left:12px;right:12px;top:92px;width:auto;max-height:calc(100vh - 116px);z-index:10050}.tk-catalog-title{font-size:21px}.tk-catalog-subtitle{font-size:14px}}

/* Tokindo patch: robust grouped category picker - clickable links, no JS dependency */
.tk-category-picker{position:relative;z-index:80;display:block;}
.tk-category-picker summary{list-style:none;}
.tk-category-picker summary::-webkit-details-marker{display:none;}
.tk-category-picker[open]{z-index:10020;}
.tk-category-picker[open] .tk-category-picker-chev{transform:rotate(180deg);}
.tk-category-picker[open] .tk-category-picker-panel{opacity:1;visibility:visible;transform:translateY(0);pointer-events:auto;}
.tk-category-picker-panel{pointer-events:none;}
.tk-category-panel-title{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;border-bottom:1px solid #f1f1f1;margin:0 0 12px;padding:2px 2px 12px;}
.tk-category-panel-title strong{font-size:16px;color:#171717;font-weight:950;}
.tk-category-panel-title span{font-size:12px;color:#777;font-weight:700;}
.tk-category-clear,.tk-category-parent-picker,.tk-category-child-picker{text-decoration:none!important;}
.tk-category-clear{display:flex;align-items:center;justify-content:center;width:100%;min-height:40px;border-radius:14px;border:1px dashed #ffd35b;background:#fffdf2;color:#232323;font-weight:950;margin-bottom:12px;}
.tk-category-clear:hover,.tk-category-clear.is-active{background:#e31b23;color:#fff;border-color:#e31b23;}
.tk-category-grid-picker{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
.tk-category-parent-picker{display:flex;align-items:center;justify-content:space-between;gap:12px;background:linear-gradient(135deg,#fff7d8,#fff);border:1px solid #ffe08a;border-radius:15px;padding:11px 12px;color:#171717;font-weight:950;}
.tk-category-parent-picker:hover{border-color:#e31b23;box-shadow:0 10px 22px rgba(227,27,35,.10);}
.tk-category-parent-picker em{font-style:normal;font-size:11px;color:#e31b23;background:#fff;border:1px solid #ffd1d4;border-radius:999px;padding:5px 8px;white-space:nowrap;}
.tk-category-subgrid-picker{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px;}
.tk-category-child-picker{display:inline-flex;align-items:center;justify-content:center;min-height:34px;border:1px solid #ececec;background:#fff;border-radius:999px;padding:8px 11px;color:#454545;font-weight:850;font-size:12px;line-height:1;cursor:pointer;transition:.14s ease;}
.tk-category-child-picker:hover,.tk-category-child-picker.is-active{background:#e31b23;color:#fff;border-color:#e31b23;box-shadow:0 8px 18px rgba(227,27,35,.18);}
@media(max-width:760px){.tk-category-panel-title{display:block}.tk-category-panel-title span{display:block;margin-top:4px}.tk-category-grid-picker{grid-template-columns:1fr}.tk-category-picker[open] .tk-category-picker-panel{position:fixed;left:12px;right:12px;top:92px;width:auto;max-height:calc(100vh - 116px);z-index:10050;}}


/* tokindo business feature patch */
.tk-admin-two-col{display:grid;grid-template-columns:minmax(280px,420px) 1fr;gap:18px;align-items:start}.tk-kpi-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin:16px 0}.tk-kpi-grid .card{padding:18px}.tk-kpi-grid b{display:block;font-size:28px;color:#e71926}.tk-kpi-grid span{color:#667085}.tk-badge{display:inline-flex;padding:5px 10px;border-radius:999px;background:#fff1f1;color:#d71920;font-weight:800;font-size:12px}.tk-admin-bell-link{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:999px;background:#fff;border:1px solid #eee;color:#1f2937;text-decoration:none}.tk-category-empty{padding:18px;border:1px dashed #f59e0b;background:#fffbeb;border-radius:14px;color:#92400e}.tk-cat-parent.is-off,.tk-cat-child.is-off{opacity:.55;filter:grayscale(.4)}@media(max-width:900px){.tk-admin-two-col,.tk-kpi-grid{grid-template-columns:1fr}}

/* Tokindo Seller Center completion patch */
.tk-shopee-page .card,.tk-table-card{border-radius:22px;border:1px solid rgba(15,23,42,.08);box-shadow:0 18px 45px rgba(15,23,42,.06);background:#fff}.tk-table-toolbar{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:14px}.tk-stock-input{max-width:110px}.tk-badge.warning{background:#fff7ed;color:#c2410c}.tk-badge.danger{background:#fef2f2;color:#dc2626}.tk-settings-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.tk-settings-grid label{display:grid;gap:8px;font-weight:800;color:#334155}.tk-voucher-box{margin:14px 0;padding:13px;border:1px dashed rgba(239,68,68,.35);border-radius:18px;background:#fff7f6}.tk-voucher-box label{display:grid;gap:8px;font-weight:900}.tk-voucher-row{display:grid;grid-template-columns:1fr auto;gap:8px}.tk-voucher-box small{display:block;margin-top:8px;color:#d2252b;font-weight:800}.tk-flash-section,.tk-catalog-flash{border:1px solid rgba(255,77,45,.18);background:linear-gradient(135deg,#fff7f5,#fff,#fff9e8);border-radius:28px;padding:22px;margin-top:22px}.tk-catalog-flash{display:flex;justify-content:space-between;gap:18px;align-items:center;margin-bottom:20px}.tk-catalog-flash b{display:block;font-size:18px}.tk-catalog-flash span{color:#64748b}.tk-catalog-flash div:last-child{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}.tk-catalog-flash a{padding:9px 12px;border-radius:999px;background:#fff;border:1px solid rgba(255,77,45,.24);color:#d2252b;font-weight:900;font-size:12px}@media(max-width:900px){.tk-settings-grid{grid-template-columns:1fr}.tk-catalog-flash{display:block}.tk-catalog-flash div:last-child{justify-content:flex-start;margin-top:12px}.tk-voucher-row{grid-template-columns:1fr}}
@media print{.tk-admin-sidebar,.tk-admin-topbar,.btn,.pill{display:none!important}.tk-admin-main{margin:0!important}.tk-admin-content{padding:0!important}.card{box-shadow:none!important}}
.tk-admin-bell-link[data-count]:after{content:attr(data-count);position:absolute;transform:translate(12px,-12px);min-width:18px;height:18px;padding:0 5px;border-radius:999px;background:#ef4444;color:#fff;font-size:10px;font-weight:900;display:flex;align-items:center;justify-content:center}.tk-admin-bell-link[data-count="0"]:after{display:none}

/* Member affiliate intelligence */
.tk-member-console .tk-page-head{align-items:flex-start;gap:18px}.tk-rate-card{display:flex;align-items:center;gap:10px;flex-wrap:wrap;background:linear-gradient(135deg,#fff,#fff7f2);border:1px solid #ffd7c9;border-radius:18px;padding:12px 16px;box-shadow:0 12px 28px rgba(255,77,45,.08)}.tk-rate-card strong{color:#1f2937}.tk-rate-card span{background:#fff;border:1px solid #ffe0d6;color:#ff4d2d;border-radius:999px;padding:6px 10px;font-weight:800;font-size:12px}.tk-member-grid{grid-template-columns:minmax(420px,.9fr) minmax(0,1.45fr);align-items:start}.tk-card-head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:14px}.tk-card-head h2{margin:0;font-size:20px}.tk-card-head p{margin:3px 0 0;color:#64748b}.tk-member-search{margin-bottom:12px}.tk-member-scroll{max-height:760px;overflow:auto;padding-right:4px}.tk-member-table td{vertical-align:middle}.tk-member-row.is-selected{background:linear-gradient(90deg,#fff0eb,#fff)}.tk-member-row.is-selected td:first-child{box-shadow:inset 4px 0 0 #ff4d2d}.tk-member-detail{display:flex;flex-direction:column;gap:16px}.tk-affiliate-hero{display:flex;justify-content:space-between;gap:18px;align-items:center;background:radial-gradient(circle at top right,rgba(255,77,45,.14),transparent 38%),linear-gradient(135deg,#111827,#263041);color:#fff;border:0}.tk-affiliate-hero h2{margin:4px 0;font-size:28px;color:#fff}.tk-affiliate-hero p{color:rgba(255,255,255,.72);margin:0}.tk-affiliate-code-box{min-width:220px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);border-radius:18px;padding:14px;text-align:right}.tk-affiliate-code-box small{display:block;color:rgba(255,255,255,.7)}.tk-affiliate-code-box strong{display:block;font-size:26px;letter-spacing:.5px;color:#fff}.tk-affiliate-code-box code{display:inline-block;margin-top:6px;color:#fff;background:rgba(255,255,255,.12);border-radius:10px;padding:6px 8px}.tk-kpi-grid{display:grid;gap:12px}.tk-kpi-grid.four{grid-template-columns:repeat(4,minmax(0,1fr))}.tk-kpi-grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}.tk-kpi{background:#fff;border:1px solid #edf0f5;border-radius:18px;padding:16px;box-shadow:0 12px 30px rgba(15,23,42,.05)}.tk-kpi span{display:block;color:#64748b;font-weight:700;font-size:12px;text-transform:uppercase;letter-spacing:.04em}.tk-kpi strong{display:block;margin-top:6px;font-size:24px;color:#111827}.tk-downline-columns{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.tk-downline-box{background:#f8fafc;border:1px solid #edf0f5;border-radius:16px;padding:12px}.tk-downline-box h3{margin:0 0 10px;font-size:15px}.tk-downline-item{display:block;background:#fff;border:1px solid #edf0f5;border-radius:14px;padding:10px;margin-bottom:8px;text-decoration:none;color:#1f2937;transition:.18s ease}.tk-downline-item:hover{border-color:#ff4d2d;transform:translateY(-1px);box-shadow:0 10px 24px rgba(255,77,45,.1)}.tk-downline-item small,.tk-downline-item code{display:block;color:#64748b;margin-top:2px}.tk-inline-form{display:flex;align-items:center;gap:8px}.tk-inline-form .input{min-width:112px;padding:8px 10px}.status-paid{background:#dcfce7!important;color:#166534!important}.status-approved{background:#e0f2fe!important;color:#075985!important}.status-cancelled{background:#fee2e2!important;color:#991b1b!important}.status-pending{background:#fff7ed!important;color:#9a3412!important}.muted{color:#94a3b8;margin:0}.tk-member-list-card{position:sticky;top:92px}
@media(max-width:1100px){.tk-member-grid{grid-template-columns:1fr}.tk-member-list-card{position:static}.tk-kpi-grid.four{grid-template-columns:repeat(2,minmax(0,1fr))}.tk-downline-columns{grid-template-columns:1fr}.tk-affiliate-hero{align-items:flex-start;flex-direction:column}.tk-affiliate-code-box{text-align:left;width:100%}}@media(max-width:640px){.tk-kpi-grid.four,.tk-kpi-grid.two{grid-template-columns:1fr}.tk-inline-form{flex-direction:column;align-items:stretch}.tk-member-scroll{max-height:none}.tk-affiliate-hero h2{font-size:22px}}

/* Tokindo customer member center - Shopee inspired */
.tk-member-shopee{background:linear-gradient(180deg,#fff,#fff 35%,#fff7f0);padding-top:34px;padding-bottom:60px}.tk-member-shell{display:grid;grid-template-columns:260px minmax(0,1fr);gap:22px;align-items:start}.tk-member-sidebar{position:sticky;top:96px;background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:24px;padding:18px;box-shadow:0 20px 54px rgba(15,23,42,.08)}.tk-member-avatar{display:grid;place-items:center;text-align:center;border-bottom:1px solid #f1f5f9;padding:8px 8px 18px;margin-bottom:10px}.tk-member-avatar div{width:64px;height:64px;border-radius:999px;background:linear-gradient(135deg,#ff4d2d,#d71920);display:grid;place-items:center;color:#fff;font-weight:950;font-size:26px;box-shadow:0 14px 28px rgba(215,25,32,.2)}.tk-member-avatar strong{margin-top:10px;color:#111827}.tk-member-avatar span{font-size:12px;color:#64748b;word-break:break-all}.tk-member-sidebar nav{display:grid;gap:6px}.tk-member-sidebar nav a,.tk-member-logout{display:flex;align-items:center;gap:10px;padding:12px 13px;border-radius:16px;text-decoration:none;color:#475569;font-weight:900;transition:.15s ease}.tk-member-sidebar nav a:hover{background:#fff1ed;color:#d71920}.tk-member-logout{margin-top:10px;background:#f8fafc;color:#111827;justify-content:center}.tk-member-main{display:grid;gap:18px}.tk-account-alert{border-radius:16px;padding:13px 15px;font-weight:900}.tk-account-alert.is-ok{background:#ecfdf3;color:#027a48;border:1px solid #abefc6}.tk-account-alert.is-error{background:#fef3f2;color:#b42318;border:1px solid #fecdca}.tk-account-hero{display:flex;justify-content:space-between;align-items:center;gap:18px;background:radial-gradient(circle at top right,rgba(255,191,0,.2),transparent 34%),linear-gradient(135deg,#d71920,#ff4d2d);color:#fff;border:0!important}.tk-account-hero h1{font-size:38px;line-height:1;margin:6px 0;color:#fff}.tk-account-hero p{margin:0;color:rgba(255,255,255,.84)}.tk-kicker{display:block;text-transform:uppercase;letter-spacing:.13em;font-weight:950;font-size:11px;color:#d71920}.tk-account-hero .tk-kicker{color:#fff4c7}.tk-member-tier-card{min-width:220px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.24);border-radius:22px;padding:18px;text-align:right}.tk-member-tier-card span,.tk-member-tier-card small{display:block;color:rgba(255,255,255,.76)}.tk-member-tier-card strong{display:block;font-size:30px;color:#fff}.tk-member-kpis{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.tk-member-kpis .tk-kpi{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:22px;padding:18px;box-shadow:0 16px 40px rgba(15,23,42,.06)}.tk-account-panel{padding:24px;border-radius:26px!important;border:1px solid rgba(15,23,42,.08)!important;box-shadow:0 18px 48px rgba(15,23,42,.07)!important}.tk-panel-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:18px}.tk-panel-head h2{margin:4px 0 4px;font-size:25px;color:#111827}.tk-panel-head p{margin:0;color:#64748b}.tk-shopee-form{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.tk-shopee-form label{display:grid;gap:7px;font-weight:900;color:#334155}.tk-shopee-form label span{font-size:13px}.tk-form-actions{grid-column:1/-1;display:flex;justify-content:flex-end}.tk-affiliate-public-card{display:flex;align-items:center;justify-content:space-between;gap:18px;background:linear-gradient(135deg,#111827,#263041);border-radius:24px;padding:22px;color:#fff;margin-bottom:14px}.tk-affiliate-public-card small{display:block;color:rgba(255,255,255,.72)}.tk-affiliate-public-card strong{display:block;font-size:34px;color:#fff;letter-spacing:.06em}.tk-affiliate-public-card code{display:block;margin-top:8px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.16);border-radius:12px;padding:9px 10px;color:#fff;word-break:break-all}.tk-affiliate-mini-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin:14px 0}.tk-affiliate-mini-grid div{border:1px solid #edf0f5;border-radius:18px;padding:15px;background:#fff}.tk-affiliate-mini-grid span,.tk-affiliate-mini-grid small{display:block;color:#64748b}.tk-affiliate-mini-grid b{display:block;font-size:21px;color:#d71920;margin:4px 0}.tk-responsive-table{overflow:auto}.tk-clean-table{width:100%;border-collapse:separate;border-spacing:0 8px}.tk-clean-table th{text-align:left;color:#64748b;font-size:12px;text-transform:uppercase;letter-spacing:.04em;padding:8px 10px}.tk-clean-table td{background:#fff;border-top:1px solid #edf0f5;border-bottom:1px solid #edf0f5;padding:12px 10px}.tk-clean-table td:first-child{border-left:1px solid #edf0f5;border-radius:14px 0 0 14px}.tk-clean-table td:last-child{border-right:1px solid #edf0f5;border-radius:0 14px 14px 0}.tk-empty-cell{text-align:center;color:#94a3b8}.tk-status{display:inline-flex;padding:6px 10px;border-radius:999px;font-weight:950;font-size:12px}.tk-count-badge{background:#fff7ed;color:#c2410c;border:1px solid #fed7aa;border-radius:999px;padding:7px 11px;font-weight:950}.tk-address-form{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;padding:14px;border-radius:20px;background:#f8fafc;border:1px dashed #cbd5e1;margin-bottom:14px}.tk-address-form textarea{min-height:72px}.tk-address-form textarea,.tk-address-form button{grid-column:1/-1}.tk-address-list-v2,.tk-order-list-v2{display:grid;gap:12px}.tk-address-card-v2,.tk-order-card-v2{display:flex;justify-content:space-between;align-items:center;gap:16px;border:1px solid #edf0f5;background:linear-gradient(180deg,#fff,#fffafa);border-radius:20px;padding:16px}.tk-address-card-v2 strong,.tk-order-card-v2 strong{display:block;color:#111827}.tk-address-card-v2 strong span{display:inline-flex;margin-left:8px;background:#fff7ed;color:#c2410c;border:1px solid #fed7aa;border-radius:999px;padding:3px 7px;font-size:11px}.tk-address-card-v2 p,.tk-address-card-v2 small,.tk-order-card-v2 small{display:block;margin:3px 0;color:#64748b}.tk-order-card-v2>div:last-child{text-align:right;display:grid;gap:8px}.tk-empty{padding:18px;border-radius:18px;background:#f8fafc;border:1px dashed #cbd5e1;color:#64748b;text-align:center}.btn-outline{background:#fff!important;color:#d71920!important;border:1px solid rgba(215,25,32,.25)!important}
@media(max-width:1100px){.tk-member-shell{grid-template-columns:1fr}.tk-member-sidebar{position:relative;top:auto}.tk-member-sidebar nav{grid-template-columns:repeat(3,minmax(0,1fr))}.tk-account-hero{flex-direction:column;align-items:flex-start}.tk-member-tier-card{text-align:left;width:100%}.tk-member-kpis,.tk-affiliate-mini-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.tk-shopee-form,.tk-address-form{grid-template-columns:1fr 1fr}}@media(max-width:700px){.tk-member-sidebar nav{grid-template-columns:1fr 1fr}.tk-member-kpis,.tk-affiliate-mini-grid,.tk-shopee-form,.tk-address-form{grid-template-columns:1fr}.tk-account-hero h1{font-size:30px}.tk-panel-head,.tk-affiliate-public-card,.tk-address-card-v2,.tk-order-card-v2{flex-direction:column;align-items:flex-start}.tk-order-card-v2>div:last-child{text-align:left}.tk-account-panel{padding:18px}.tk-member-shopee{padding-top:18px}}

/* === PATCH: Customer member center hero overflow/cut fix === */
.tk-account-page.tk-member-shopee{
  box-sizing:border-box;
  width:100%;
  padding-top:48px;
  padding-bottom:72px;
  overflow-x:hidden;
}
.tk-member-shell,
.tk-member-shell *{
  box-sizing:border-box;
}
.tk-member-shell{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  grid-template-columns:260px minmax(0,1fr);
}
.tk-member-main,
.tk-account-hero,
.tk-account-panel,
.tk-member-kpis,
.tk-affiliate-public-card{
  min-width:0;
  max-width:100%;
}
.tk-account-hero{
  padding:30px 32px;
  border-radius:28px!important;
  overflow:hidden;
  flex-wrap:nowrap;
  align-items:center;
}
.tk-account-hero > div:first-child{
  min-width:0;
  flex:1 1 auto;
}
.tk-account-hero h1{
  margin-top:8px;
  margin-bottom:8px;
  overflow-wrap:anywhere;
}
.tk-account-hero p{
  max-width:680px;
  line-height:1.45;
}
.tk-member-tier-card{
  flex:0 0 260px;
  max-width:280px;
  min-width:220px;
  overflow:hidden;
}
.tk-member-tier-card strong,
.tk-member-tier-card small{
  overflow-wrap:anywhere;
}
.tk-account-page section[id]{
  scroll-margin-top:110px;
}
@media(max-width:1100px){
  .tk-account-page.tk-member-shopee{padding-top:28px;}
  .tk-member-shell{max-width:100%;}
  .tk-account-hero{padding:26px;flex-direction:column;align-items:flex-start;}
  .tk-member-tier-card{width:100%;max-width:none;flex:0 1 auto;text-align:left;}
}
@media(max-width:700px){
  .tk-account-page.tk-member-shopee{padding-top:20px;padding-bottom:44px;}
  .tk-account-hero{padding:22px 18px;border-radius:22px!important;}
  .tk-account-hero h1{font-size:30px;line-height:1.05;}
  .tk-kicker{letter-spacing:.09em;line-height:1.25;}
  .tk-member-tier-card{padding:16px;border-radius:18px;}
}


/* ======================================
   SITE DECORATION RAILS (left/right page white margins)
   ====================================== */
.tk-site-decor{pointer-events:none}
.tk-site-decor a,.tk-site-decor img{pointer-events:auto}
.tk-site-decor-side,.tk-site-decor-top{position:fixed;z-index:var(--tk-decor-z,12);opacity:var(--tk-decor-opacity,1);display:block;filter:drop-shadow(0 18px 36px rgba(15,23,42,.10))}
.tk-site-decor-side img,.tk-site-decor-top img{display:block;max-width:100%;height:auto}
.tk-site-decor-side{top:var(--tk-decor-top,98px);width:clamp(120px,calc((100vw - min(var(--max), calc(100vw - 36px)))/2 - 14px),var(--tk-decor-width,190px));min-width:0}
.tk-site-decor-side.is-left{left:8px}
.tk-site-decor-side.is-right{right:8px}
.tk-site-decor-top{left:50%;transform:translateX(-50%);top:calc(var(--tk-decor-top,98px) - 56px);width:min(100%, var(--max));padding:0 18px}
.tk-site-decor-top img{margin:0 auto;max-height:120px;object-fit:contain}
.tk-site-decor--eid .tk-site-decor-side,.tk-site-decor--ramadan .tk-site-decor-side{filter:drop-shadow(0 18px 36px rgba(15,109,84,.15))}
.tk-site-decor--christmas .tk-site-decor-side,.tk-site-decor--natal .tk-site-decor-side{filter:drop-shadow(0 18px 36px rgba(185,28,28,.16))}
.tk-site-decor--lunar .tk-site-decor-side,.tk-site-decor--imlek .tk-site-decor-side{filter:drop-shadow(0 18px 36px rgba(202,138,4,.18))}
@media (max-width: 1439px){.tk-site-decor.is-desktop-only,.tk-site-decor-side{display:none}.tk-site-decor-top{display:none}}
@media (min-width: 1440px){body{overflow-x:hidden}}

/* admin page: decorations */
.tk-decor-admin-grid{display:grid;grid-template-columns:minmax(0,1.25fr) 360px;gap:18px;align-items:start}
.tk-decor-card,.tk-decor-preview{background:#fff;border:1px solid #edf0f5;border-radius:20px;padding:18px;box-shadow:0 14px 36px rgba(15,23,42,.05)}
.tk-decor-card h3,.tk-decor-preview h3{margin:0 0 6px;font-size:18px;letter-spacing:-.03em}
.tk-decor-muted{color:#7b8494;font-size:13px;line-height:1.6}
.tk-decor-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.tk-decor-field,.tk-decor-checkline{display:grid;gap:8px}
.tk-decor-field span,.tk-decor-checkline span{font-size:12px;font-weight:900;color:#596273;text-transform:uppercase;letter-spacing:.04em}
.tk-decor-upload{border:1px dashed #d9dee8;border-radius:18px;padding:14px;background:#fbfcff;display:grid;gap:12px}
.tk-decor-upload-head{display:flex;justify-content:space-between;align-items:center;gap:10px}
.tk-decor-upload-preview{min-height:180px;border-radius:16px;border:1px solid #edf0f5;background:linear-gradient(180deg,#fefefe,#f7f8fb);display:grid;place-items:center;overflow:hidden}
.tk-decor-upload-preview img{width:100%;height:100%;object-fit:contain;display:block}
.tk-decor-upload-empty{padding:18px;text-align:center;color:#9aa3b2;display:grid;gap:8px}
.tk-decor-upload-empty i{font-size:28px;color:#fb4e30}
.tk-decor-upload .tk-upload-btn{display:inline-flex;align-items:center;gap:8px;cursor:pointer;background:#fff1eb;color:#fb4e30;border-radius:12px;padding:10px 12px;font-weight:900;width:max-content}
.tk-decor-upload .tk-upload-btn input{display:none}
.tk-decor-remove{display:flex;align-items:center;gap:10px;color:#7b8494;font-size:12px;font-weight:800}
.tk-decor-preview-stage{position:relative;height:560px;border-radius:28px;background:#f5f7fb;border:1px solid #edf0f5;overflow:hidden;display:grid;place-items:center}
.tk-decor-preview-page{width:min(76%,760px);height:86%;background:#fff;border-radius:24px;box-shadow:0 24px 64px rgba(15,23,42,.08);display:grid;place-items:center;text-align:center;padding:26px}
.tk-decor-preview-page strong{display:block;font-size:30px;letter-spacing:-.04em;color:#111827}
.tk-decor-preview-page span{display:block;color:#7b8494;margin-top:8px;font-size:14px;line-height:1.6}
.tk-decor-preview-left,.tk-decor-preview-right{position:absolute;top:110px;width:150px;max-height:380px;object-fit:contain;filter:drop-shadow(0 12px 28px rgba(15,23,42,.12))}
.tk-decor-preview-left{left:10px}
.tk-decor-preview-right{right:10px}
.tk-decor-preview-top{position:absolute;top:18px;left:50%;transform:translateX(-50%);max-width:72%;max-height:92px;object-fit:contain}
.tk-decor-chip-row{display:flex;flex-wrap:wrap;gap:8px}
.tk-decor-chip{padding:8px 12px;border-radius:999px;background:#f5f7fb;border:1px solid #edf0f5;font-size:12px;color:#4b5563;font-weight:900}
@media (max-width: 1200px){.tk-decor-admin-grid{grid-template-columns:1fr}.tk-decor-preview-stage{height:430px}}
@media (max-width: 720px){.tk-decor-grid{grid-template-columns:1fr}.tk-decor-preview-left,.tk-decor-preview-right{display:none}.tk-decor-preview-page{width:88%}}


/* decoration template presets */
.tk-decor-template-zone{margin-top:16px;border:1px solid #edf0f5;border-radius:20px;background:linear-gradient(180deg,#fff,#fbfcff);padding:14px}
.tk-decor-template-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:12px}
.tk-decor-template-head strong{display:block;color:#111827;font-size:15px;font-weight:950}
.tk-decor-template-head span{display:block;color:#7b8494;font-size:12px;margin-top:3px;font-weight:700}
.tk-decor-template-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.tk-decor-template-card{border:1px solid #edf0f5;background:#fff;border-radius:18px;padding:12px;text-align:left;cursor:pointer;display:grid;gap:10px;transition:.18s ease;color:#111827;box-shadow:0 12px 26px rgba(15,23,42,.035)}
.tk-decor-template-card:hover,.tk-decor-template-card.active{transform:translateY(-2px);border-color:#fb4e30;box-shadow:0 18px 38px rgba(251,78,48,.12)}
.tk-decor-template-card.active{background:#fff3ed}
.tk-decor-template-preview{height:92px;border-radius:14px;background:#f6f7fb;border:1px solid #edf0f5;display:grid;grid-template-columns:1fr 1.4fr 1fr;align-items:center;gap:6px;padding:8px;overflow:hidden}
.tk-decor-template-preview img{max-width:100%;max-height:74px;object-fit:contain;margin:auto;display:block}
.tk-decor-template-card b{font-size:13px;font-weight:950}
.tk-decor-template-card small{color:#fb4e30;font-size:11px;font-weight:900}
@media(max-width:900px){.tk-decor-template-grid{grid-template-columns:1fr}.tk-decor-template-preview{height:104px}}


/* Tokindo Seller Center Server-Side DataTable */
.tk-dt-card{margin:24px 0 0;background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:24px;box-shadow:0 18px 45px rgba(15,23,42,.06);padding:18px;overflow:hidden}.tk-dt-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-bottom:14px}.tk-dt-head h2{margin:4px 0 4px;font-size:22px;line-height:1.1}.tk-dt-head p{margin:0;color:#64748b;font-size:13px}.tk-dt-actions{display:flex;align-items:center;gap:8px;flex-wrap:wrap}.tk-dt-search{min-width:260px;border:1px solid rgba(15,23,42,.12);border-radius:999px;padding:11px 14px;font-weight:800;background:#f8fafc;outline:none}.tk-dt-search:focus{border-color:#ffbf00;box-shadow:0 0 0 4px rgba(255,191,0,.16);background:#fff}.tk-dt-status{font-size:12px;font-weight:900;color:#64748b;background:#f8fafc;border:1px dashed rgba(15,23,42,.12);border-radius:14px;padding:9px 12px;margin:8px 0 12px}.tk-dt-wrap{overflow:auto;border-radius:18px;border:1px solid rgba(15,23,42,.08)}.tk-dt-table{width:100%;border-collapse:separate;border-spacing:0;min-width:880px;background:#fff}.tk-dt-table th{position:sticky;top:0;background:linear-gradient(180deg,#fff,#fff7ec);z-index:1;text-align:left;font-size:12px;text-transform:uppercase;letter-spacing:.05em;color:#475569;padding:13px 14px;border-bottom:1px solid rgba(15,23,42,.08);white-space:nowrap}.tk-dt-table td{padding:12px 14px;border-bottom:1px solid rgba(15,23,42,.06);font-size:13px;color:#1f2937;vertical-align:top;max-width:360px}.tk-dt-table tr:hover td{background:#fffaf0}.tk-dt-edit{display:inline-block;min-width:70px;max-width:340px;border-radius:10px;padding:6px 8px;background:#f8fafc;border:1px solid transparent;outline:none}.tk-dt-edit:hover,.tk-dt-edit:focus{background:#fff;border-color:#ffbf00;box-shadow:0 0 0 3px rgba(255,191,0,.14)}.tk-dt-edit-select{border:1px solid rgba(15,23,42,.12);border-radius:999px;background:#fff;padding:7px 10px;font-weight:800;min-width:120px}.tk-dt-edit.is-saving,.tk-dt-edit-select.is-saving{opacity:.55}.tk-dt-edit.is-saved,.tk-dt-edit-select.is-saved{box-shadow:0 0 0 3px rgba(34,197,94,.18);border-color:#22c55e}.tk-dt-edit.is-error,.tk-dt-edit-select.is-error{box-shadow:0 0 0 3px rgba(239,68,68,.18);border-color:#ef4444}.tk-dt-foot{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-top:12px;color:#64748b;font-size:13px;font-weight:800}.tk-dt-pager{display:flex;gap:8px}.tk-dt-pager button{border:0;border-radius:999px;background:#111827;color:#fff;padding:9px 14px;font-weight:900;cursor:pointer}.tk-dt-pager button:disabled{opacity:.35;cursor:not-allowed}.tk-admin-bell-link.has-dot{position:relative}.tk-admin-bell-link.has-dot:after{content:attr(data-count);position:absolute;top:-7px;right:-7px;min-width:17px;height:17px;padding:0 4px;background:#ff3b1f;color:#fff;border-radius:999px;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:1000;box-shadow:0 4px 12px rgba(255,59,31,.35)}
@media(max-width:760px){.tk-dt-card{border-radius:18px;padding:12px}.tk-dt-search{min-width:100%;width:100%}.tk-dt-actions{width:100%}.tk-dt-actions .btn,.tk-dt-actions .btn-outline{flex:1}.tk-dt-table{min-width:760px}}


/* =========================================================
   HOTFIX: Premium mobile nav search + cart layout
   ========================================================= */
.mobile-cart-btn{display:none;}
.search-label-mobile{display:none;}
@media(max-width:900px){
  .nav{z-index:10050;}
  .nav-inner{
    height:60px!important;
    padding:8px 10px!important;
    gap:8px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
  }
  .nav-inner>.burger{
    order:0!important;
    display:inline-flex!important;
    flex:0 0 40px!important;
    width:40px!important;
    height:40px!important;
    margin:0!important;
  }
  .nav-inner>.brand{
    order:1!important;
    position:static!important;
    left:auto!important;
    transform:none!important;
    display:flex!important;
    flex:0 0 34px!important;
    width:34px!important;
    min-width:34px!important;
    overflow:hidden!important;
  }
  .nav-inner>.brand img,
  .nav-inner>.brand #apple,
  #apple{
    width:34px!important;
    min-width:34px!important;
    height:34px!important;
    max-height:34px!important;
    object-fit:cover!important;
    object-position:left center!important;
    margin:0!important;
    border-radius:9px!important;
    background:#fff!important;
  }
  .nav-inner>.search{
    order:2!important;
    flex:1 1 auto!important;
    min-width:0!important;
    max-width:none!important;
    height:44px!important;
    padding:6px 7px 6px 12px!important;
    gap:6px!important;
    border:2px solid #ffd400!important;
    box-shadow:0 8px 18px rgba(0,0,0,.08)!important;
  }
  .nav-inner>.search input{
    min-width:0!important;
    width:100%!important;
    font-size:13px!important;
    font-weight:800!important;
    text-overflow:ellipsis!important;
  }
  .nav-inner>.search input::placeholder{color:#9a6b00!important;opacity:1!important;}
  .nav-inner>.search button{
    flex:0 0 auto!important;
    min-width:58px!important;
    height:31px!important;
    padding:0 10px!important;
    border-radius:999px!important;
    font-size:12px!important;
    line-height:1!important;
    white-space:nowrap!important;
  }
  .search-label-desktop{display:none!important;}
  .search-label-mobile{display:inline!important;}
  .nav-inner>.nav-links{display:none!important;}
  .mobile-cart-btn{
    order:3!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:8px!important;
    flex:0 0 auto!important;
    height:44px!important;
    padding:0 13px!important;
    border-radius:14px!important;
    background:linear-gradient(135deg,#ffd400,#ffb800)!important;
    color:#111!important;
    font-weight:950!important;
    box-shadow:0 10px 22px rgba(255,196,0,.30)!important;
    text-decoration:none!important;
  }
  .mobile-cart-btn b{
    min-width:24px!important;
    height:24px!important;
    display:inline-grid!important;
    place-items:center!important;
    border-radius:999px!important;
    background:rgba(255,255,255,.55)!important;
    font-size:13px!important;
  }
}
@media(max-width:390px){
  .nav-inner{gap:6px!important;padding-left:8px!important;padding-right:8px!important;}
  .nav-inner>.brand{display:none!important;}
  .nav-inner>.search button{min-width:52px!important;padding:0 8px!important;font-size:11px!important;}
  .mobile-cart-btn{padding:0 10px!important;gap:6px!important;}
}

/* =========================================================
   Tokindo Admin Premium Table System Patch
   Purpose: make all legacy admin tables visually consistent,
   readable, responsive, and closer to Shopee Seller Center.
   ========================================================= */
.tk-admin-body .tk-table-card,
.tk-admin-body .seller-table-wrap,
.tk-admin-body .tk-table-wrap{
  position:relative;
}

.tk-admin-body .tk-table-card{
  padding:20px!important;
  border-radius:24px!important;
  background:
    radial-gradient(circle at top right, rgba(255,191,0,.13), transparent 32%),
    linear-gradient(180deg,#ffffff 0%,#ffffff 58%,#fffaf4 100%)!important;
  border:1px solid rgba(15,23,42,.08)!important;
  box-shadow:0 22px 55px rgba(15,23,42,.075)!important;
  overflow:hidden;
}

.tk-admin-body .tk-table-card:before{
  content:"";
  position:absolute;
  left:0;right:0;top:0;height:4px;
  background:linear-gradient(90deg,#ff3d24,#ffbf00,#ff7a45);
  opacity:.95;
}

.tk-admin-body .tk-table-card > h2,
.tk-admin-body .tk-table-toolbar h2{
  margin:0;
  font-size:22px;
  letter-spacing:-.035em;
  color:#111827;
  display:flex;
  align-items:center;
  gap:10px;
}

.tk-admin-body .tk-table-card > h2:before,
.tk-admin-body .tk-table-toolbar h2:before{
  content:"";
  width:11px;height:11px;border-radius:999px;
  background:#ff4f32;
  box-shadow:0 0 0 5px rgba(255,79,50,.12);
  flex:0 0 auto;
}

.tk-admin-body .tk-table-toolbar{
  padding:4px 2px 16px;
  margin-bottom:12px!important;
  border-bottom:1px solid rgba(15,23,42,.06);
}

.tk-admin-body .tk-table-wrap,
.tk-admin-body .seller-table-wrap,
.tk-admin-body .tk-responsive-table{
  overflow:auto;
  border-radius:20px;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}

/* Legacy tables: seller-table + tk-admin-table */
.tk-admin-body table.seller-table,
.tk-admin-body table.tk-admin-table{
  width:100%;
  min-width:760px;
  border-collapse:separate!important;
  border-spacing:0!important;
  background:#fff;
  overflow:hidden;
}

.tk-admin-body table.seller-table thead th,
.tk-admin-body table.tk-admin-table thead th{
  position:sticky;
  top:0;
  z-index:2;
  background:linear-gradient(180deg,#fff7ec 0%,#fff1df 100%)!important;
  color:#334155!important;
  font-size:12px!important;
  line-height:1.2;
  text-align:left!important;
  text-transform:uppercase;
  letter-spacing:.055em;
  font-weight:950!important;
  padding:15px 16px!important;
  border-bottom:1px solid rgba(251,146,60,.2)!important;
  white-space:nowrap;
}

.tk-admin-body table.seller-table tbody td,
.tk-admin-body table.tk-admin-table tbody td{
  padding:15px 16px!important;
  color:#1f2937!important;
  font-size:14px!important;
  line-height:1.45;
  vertical-align:middle!important;
  border-bottom:1px solid rgba(15,23,42,.06)!important;
  background:#fff;
}

.tk-admin-body table.seller-table tbody tr:nth-child(even) td,
.tk-admin-body table.tk-admin-table tbody tr:nth-child(even) td{
  background:#fffdf8;
}

.tk-admin-body table.seller-table tbody tr:hover td,
.tk-admin-body table.tk-admin-table tbody tr:hover td{
  background:#fff7ed!important;
  box-shadow:inset 0 0 0 9999px rgba(255,191,0,.035);
}

.tk-admin-body table.seller-table tbody tr:last-child td,
.tk-admin-body table.tk-admin-table tbody tr:last-child td{
  border-bottom:0!important;
}

.tk-admin-body table.seller-table td:first-child,
.tk-admin-body table.tk-admin-table td:first-child{
  font-weight:850;
  color:#111827!important;
}

.tk-admin-body table.seller-table b,
.tk-admin-body table.tk-admin-table b{
  color:#111827;
  font-weight:950;
}

.tk-admin-body table.seller-table small,
.tk-admin-body table.tk-admin-table small{
  display:block;
  margin-top:4px;
  color:#64748b;
  font-weight:750;
}

/* Make simple tables readable even when they do not have wrapper classes */
.tk-admin-body .card table:not(.tk-clean-table):not(.tk-dt-table),
.tk-admin-body .section table:not(.tk-clean-table):not(.tk-dt-table){
  width:100%;
}

.tk-admin-body .card:has(table.seller-table),
.tk-admin-body .card:has(table.tk-admin-table){
  overflow:hidden;
}

/* Product / SKU / stock cells */
.tk-admin-body .tk-product-cell{
  min-width:260px;
  gap:12px;
}

.tk-admin-body .tk-product-cell img{
  width:52px;height:52px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 8px 18px rgba(15,23,42,.08);
}

.tk-admin-body .tk-stock-input,
.tk-admin-body table.seller-table input[type="number"],
.tk-admin-body table.tk-admin-table input[type="number"]{
  width:116px;
  max-width:116px;
  height:42px;
  border-radius:14px!important;
  border:1px solid #f5b700!important;
  background:linear-gradient(180deg,#fff,#fffdf4)!important;
  color:#111827!important;
  padding:0 12px!important;
  font-weight:900!important;
  outline:none!important;
  box-shadow:0 5px 14px rgba(255,191,0,.08)!important;
}

.tk-admin-body .tk-stock-input:focus,
.tk-admin-body table.seller-table input[type="number"]:focus,
.tk-admin-body table.tk-admin-table input[type="number"]:focus{
  border-color:#ff4f32!important;
  box-shadow:0 0 0 4px rgba(255,79,50,.12)!important;
}

.tk-admin-body table.seller-table input,
.tk-admin-body table.seller-table select,
.tk-admin-body table.seller-table textarea,
.tk-admin-body table.tk-admin-table input,
.tk-admin-body table.tk-admin-table select,
.tk-admin-body table.tk-admin-table textarea{
  border-radius:13px;
}

/* Badges / status pills */
.tk-admin-body .tk-badge,
.tk-admin-body .tk-status,
.tk-admin-body .status-paid,
.tk-admin-body .status-approved,
.tk-admin-body .status-cancelled,
.tk-admin-body .status-pending{
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:7px 11px!important;
  border-radius:999px!important;
  font-size:12px!important;
  font-weight:950!important;
  line-height:1!important;
  white-space:nowrap;
  border:1px solid transparent;
}

.tk-admin-body .tk-badge{
  background:#fff1f2!important;
  color:#e11d48!important;
  border-color:#ffe4e6!important;
}

.tk-admin-body .tk-badge.warning{
  background:#fff7ed!important;
  color:#c2410c!important;
  border-color:#fed7aa!important;
}

.tk-admin-body .tk-badge.danger{
  background:#fef2f2!important;
  color:#b91c1c!important;
  border-color:#fecaca!important;
}

.tk-admin-body .tk-status.paid,
.tk-admin-body .status-paid{
  background:#ecfdf3!important;
  color:#027a48!important;
  border-color:#abefc6!important;
}

.tk-admin-body .tk-status.pending,
.tk-admin-body .status-pending{
  background:#fff7ed!important;
  color:#b45309!important;
  border-color:#fed7aa!important;
}

.tk-admin-body .tk-status.failed,
.tk-admin-body .tk-status.cancelled,
.tk-admin-body .status-cancelled{
  background:#fef3f2!important;
  color:#b42318!important;
  border-color:#fecdca!important;
}

.tk-admin-body .status-approved{
  background:#eff6ff!important;
  color:#1d4ed8!important;
  border-color:#bfdbfe!important;
}

/* Action buttons inside table */
.tk-admin-body table.seller-table .btn,
.tk-admin-body table.tk-admin-table .btn,
.tk-admin-body table.seller-table button,
.tk-admin-body table.tk-admin-table button{
  border-radius:12px!important;
  min-height:38px;
  font-weight:950!important;
  box-shadow:0 8px 18px rgba(15,23,42,.06);
}

.tk-admin-body .tk-table-toolbar .btn,
.tk-admin-body .tk-table-toolbar button,
.tk-admin-body .tk-admin-submit,
.tk-admin-body .btn{
  box-shadow:0 12px 24px rgba(255,79,50,.14);
}

/* Empty rows */
.tk-admin-body .tk-empty,
.tk-admin-body .tk-empty-cell,
.tk-admin-body td[colspan]{
  background:linear-gradient(135deg,#fffaf0,#ffffff)!important;
  border:1px dashed rgba(251,146,60,.35)!important;
  color:#94a3b8!important;
  font-weight:900!important;
  text-align:center!important;
  border-radius:16px;
}

/* Compact table summary strip */
.tk-admin-body .tk-table-card .tk-table-meta{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin:-2px 0 14px;
  color:#64748b;
  font-size:12px;
  font-weight:850;
}

.tk-admin-body .tk-table-card .tk-table-meta span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 10px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.07);
}

/* Mobile/tablet */
@media(max-width:900px){
  .tk-admin-body .tk-table-card{padding:14px!important;border-radius:18px!important}
  .tk-admin-body .tk-table-toolbar{align-items:flex-start;flex-direction:column}
  .tk-admin-body table.seller-table,
  .tk-admin-body table.tk-admin-table{min-width:820px}
  .tk-admin-body table.seller-table thead th,
  .tk-admin-body table.tk-admin-table thead th,
  .tk-admin-body table.seller-table tbody td,
  .tk-admin-body table.tk-admin-table tbody td{padding:13px 12px!important;font-size:13px!important}
}

/* =========================================================
   TOKINDO GLOBAL ADMIN DESIGN HARDENING PATCH
   Purpose: make every remaining raw/plain admin page render as
   a premium Shopee-style Seller Center page, even when markup
   misses specific classes.
   ========================================================= */
:root{
  --tk-red:#ff3d2e;
  --tk-orange:#ff6a2a;
  --tk-yellow:#ffc400;
  --tk-ink:#172033;
  --tk-muted:#64748b;
  --tk-border:#eef1f6;
  --tk-bg:#f5f7fb;
  --tk-card:#ffffff;
}

.tk-admin-body{background:linear-gradient(180deg,#f7f8fb 0%,#f1f4f8 100%)!important;color:var(--tk-ink)!important;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif!important;}
.tk-admin-body .tk-admin-content{padding:28px!important;max-width:100%!important;}
.tk-admin-body .section{max-width:100%!important;margin:0!important;}
.tk-admin-body .section>h1:first-child,.tk-admin-body .section>h2:first-child,.tk-admin-body .section>p:first-child{margin-left:0!important;}

/* Universal fallback for raw admin blocks */
.tk-admin-body main.tk-admin-content > .section > div:not([class]),
.tk-admin-body main.tk-admin-content > .section > form:not([class]),
.tk-admin-body main.tk-admin-content > .section > table:not([class]){
  background:#fff!important;border:1px solid rgba(15,23,42,.06)!important;border-radius:24px!important;box-shadow:0 20px 50px rgba(15,23,42,.07)!important;padding:20px!important;margin:18px 0!important;overflow:hidden!important;
}

.tk-admin-body h1,.tk-admin-body h2,.tk-admin-body h3{letter-spacing:-.035em;color:#182235!important;}
.tk-admin-body h1{font-size:clamp(28px,3vw,44px)!important;line-height:.96!important;margin:0 0 10px!important;font-weight:950!important;}
.tk-admin-body h2{font-size:clamp(20px,2vw,28px)!important;line-height:1.05!important;margin:0 0 8px!important;font-weight:950!important;}
.tk-admin-body h3{font-size:17px!important;font-weight:950!important;margin:0 0 10px!important;}
.tk-admin-body p{color:#64748b;line-height:1.55;}
.tk-admin-body .tk-eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:11px!important;letter-spacing:.12em!important;text-transform:uppercase!important;color:#ff4d2d!important;font-weight:950!important;margin-bottom:8px;}
.tk-admin-body .tk-eyebrow:before{content:"";width:8px;height:8px;border-radius:999px;background:linear-gradient(135deg,var(--tk-red),var(--tk-yellow));box-shadow:0 0 0 4px rgba(255,196,0,.16);}

/* Cards */
.tk-admin-body .card,.tk-admin-body .tk-table-card,.tk-admin-body .tk-kpi,.tk-admin-body .notice,.tk-admin-body .tk-dt-card{
  background:linear-gradient(135deg,#fff 0%,#fffaf2 100%)!important;border:1px solid rgba(255,196,0,.42)!important;border-radius:24px!important;box-shadow:0 20px 50px rgba(15,23,42,.07)!important;overflow:hidden!important;
}
.tk-admin-body .card,.tk-admin-body .tk-table-card{padding:20px!important;}
.tk-admin-body .notice{padding:14px 16px!important;margin:14px 0!important;color:#7c2d12!important;font-weight:850!important;}
.tk-admin-body .notice.danger{background:#fff1f2!important;color:#be123c!important;border-color:#fecdd3!important;}
.tk-admin-body .tk-card-head{display:flex!important;align-items:flex-start!important;justify-content:space-between!important;gap:16px!important;margin-bottom:16px!important;}
.tk-admin-body .tk-card-head p{margin:3px 0 0!important;}

/* Buttons and inputs */
.tk-admin-body .btn,.tk-admin-body button,.tk-admin-body input[type="submit"],.tk-admin-body a.btn{
  min-height:42px;border:0;border-radius:14px!important;padding:10px 16px!important;background:linear-gradient(135deg,var(--tk-yellow),#ff9f00)!important;color:#111827!important;font-weight:950!important;text-decoration:none!important;display:inline-flex;align-items:center;justify-content:center;gap:8px;box-shadow:0 12px 28px rgba(255,171,0,.22)!important;cursor:pointer;transition:.18s ease;
}
.tk-admin-body .btn:hover,.tk-admin-body button:hover,.tk-admin-body input[type="submit"]:hover{transform:translateY(-1px);box-shadow:0 16px 34px rgba(255,171,0,.28)!important;}
.tk-admin-body .btn-outline,.tk-admin-body button.btn-outline,.tk-admin-body a.btn-outline{background:#fff!important;color:#e11d48!important;border:1px solid #fecaca!important;box-shadow:0 10px 24px rgba(225,29,72,.08)!important;}
.tk-admin-body input,.tk-admin-body select,.tk-admin-body textarea,.tk-admin-body .input{
  border:1px solid #ffe08a!important;background:#fff!important;border-radius:16px!important;min-height:44px!important;padding:11px 14px!important;font-weight:800!important;color:#1f2937!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.8)!important;outline:none!important;
}
.tk-admin-body input:focus,.tk-admin-body select:focus,.tk-admin-body textarea:focus,.tk-admin-body .input:focus{border-color:#ffbd00!important;box-shadow:0 0 0 4px rgba(255,196,0,.16)!important;}
.tk-admin-body label{font-weight:900!important;color:#334155!important;display:grid;gap:7px;}

/* Premium tables - catches raw tables too */
.tk-admin-body table{width:100%!important;border-collapse:separate!important;border-spacing:0!important;background:#fff!important;border:1px solid rgba(15,23,42,.07)!important;border-radius:20px!important;overflow:hidden!important;box-shadow:0 16px 40px rgba(15,23,42,.05)!important;}
.tk-admin-body thead th{background:linear-gradient(180deg,#fff7e5,#fff1d1)!important;color:#334155!important;font-size:12px!important;letter-spacing:.075em!important;text-transform:uppercase!important;font-weight:950!important;padding:15px 16px!important;border-bottom:1px solid #ffe1a6!important;white-space:nowrap!important;}
.tk-admin-body tbody td{padding:15px 16px!important;border-bottom:1px solid #f1f5f9!important;vertical-align:middle!important;color:#1f2937!important;font-size:14px!important;}
.tk-admin-body tbody tr:nth-child(even) td{background:#fffdfa!important;}
.tk-admin-body tbody tr:hover td{background:#fff7ed!important;}
.tk-admin-body tbody tr:last-child td{border-bottom:0!important;}
.tk-admin-body td small{color:#64748b!important;font-weight:750!important;}
.tk-admin-body td b{font-weight:950!important;color:#172033!important;}
.tk-admin-body td[colspan]{text-align:center!important;background:linear-gradient(135deg,#fffaf0,#fff)!important;color:#94a3b8!important;border:1px dashed #ffd27a!important;padding:26px!important;font-weight:950!important;}
.tk-admin-body .tk-badge,.tk-admin-body [class*="status-"]{display:inline-flex!important;align-items:center!important;justify-content:center!important;border-radius:999px!important;padding:7px 11px!important;background:#fff1ed!important;color:#ff4d2d!important;border:1px solid #ffd1c4!important;font-size:12px!important;font-weight:950!important;white-space:nowrap!important;}

/* Member Intelligence - critical styles, duplicated here and inline in view */
.tk-member-console-v2{padding-bottom:44px!important;}
.tk-member-hero-v2{display:grid!important;grid-template-columns:minmax(0,1fr) 430px!important;gap:20px!important;margin-bottom:18px!important;align-items:stretch!important;}
.tk-member-hero-v2>div:first-child{background:linear-gradient(135deg,#ff3d2e 0%,#ff6a2a 48%,#ffc400 140%)!important;color:#fff!important;border:0!important;border-radius:28px!important;padding:28px 30px!important;box-shadow:0 24px 60px rgba(255,61,46,.22)!important;position:relative!important;overflow:hidden!important;}
.tk-member-hero-v2>div:first-child:after{content:"";position:absolute;right:-90px;top:-90px;width:260px;height:260px;border-radius:50%;background:rgba(255,255,255,.18);}
.tk-member-hero-v2>div:first-child .tk-eyebrow,.tk-member-hero-v2>div:first-child h1,.tk-member-hero-v2>div:first-child p{color:#fff!important;position:relative;z-index:1;}
.tk-member-hero-v2 h1{font-size:clamp(34px,4vw,56px)!important;line-height:.9!important;margin:4px 0 10px!important;}
.tk-member-hero-v2 p{max-width:760px!important;font-weight:750!important;opacity:.96;}
.tk-member-hero-actions{display:flex!important;gap:10px!important;flex-wrap:wrap!important;margin-top:18px!important;position:relative;z-index:2;}
.tk-member-hero-actions form{margin:0!important;}
.tk-member-rate-panel{background:#fff!important;border:1px solid rgba(255,196,0,.45)!important;border-radius:28px!important;padding:18px!important;box-shadow:0 24px 60px rgba(15,23,42,.08)!important;display:grid!important;grid-template-columns:repeat(3,1fr)!important;gap:10px!important;align-content:center!important;}
.tk-member-rate-panel>div:not(.tk-rate-line){background:linear-gradient(135deg,#fffaf0,#fff)!important;border:1px solid #ffe2a8!important;border-radius:18px!important;padding:14px!important;}
.tk-member-rate-panel small{display:block!important;color:#64748b!important;font-size:11px!important;letter-spacing:.08em!important;text-transform:uppercase!important;font-weight:950!important;}
.tk-member-rate-panel strong{display:block!important;font-size:24px!important;line-height:1!important;margin-top:6px!important;color:#111827!important;}
.tk-rate-line{grid-column:1/-1!important;display:flex!important;gap:8px!important;flex-wrap:wrap!important;}
.tk-rate-line span{background:#fff1ed!important;border:1px solid #ffd1c4!important;color:#ff4d2d!important;border-radius:999px!important;padding:8px 11px!important;font-weight:950!important;font-size:12px!important;}
.tk-member-help-card{display:grid!important;grid-template-columns:minmax(0,1fr) 420px!important;gap:18px!important;background:#fff!important;border:1px solid rgba(15,23,42,.07)!important;border-radius:26px!important;box-shadow:0 20px 50px rgba(15,23,42,.06)!important;padding:22px!important;margin-bottom:18px!important;}
.tk-member-help-card ol{margin:0!important;padding:16px 18px 16px 36px!important;background:linear-gradient(135deg,#fffaf0,#fff)!important;border:1px dashed #ffd27a!important;border-radius:18px!important;font-weight:800!important;color:#344054!important;}
.tk-member-grid-v2{display:grid!important;grid-template-columns:430px minmax(0,1fr)!important;gap:18px!important;align-items:start!important;}
.tk-member-list-card-v2{padding:18px!important;position:sticky!important;top:92px!important;max-height:calc(100vh - 112px)!important;display:flex!important;flex-direction:column!important;}
.tk-card-head.compact h2{font-size:22px!important;margin:0!important;}
.tk-card-head.compact p{margin:2px 0 0!important;color:#64748b!important;}
.tk-member-search{margin-bottom:12px!important;}
.tk-member-search input{width:100%!important;}
.tk-member-list-v2{overflow:auto!important;padding-right:4px!important;display:flex!important;flex-direction:column!important;gap:10px!important;}
.tk-member-card-row{display:grid!important;grid-template-columns:46px minmax(0,1fr) auto!important;gap:12px!important;align-items:center!important;padding:13px!important;border:1px solid #eef2f7!important;border-radius:19px!important;text-decoration:none!important;color:#1f2937!important;background:#fff!important;transition:.18s ease!important;box-shadow:0 10px 24px rgba(15,23,42,.035)!important;}
.tk-member-card-row:hover,.tk-member-card-row.is-selected{border-color:#ffc400!important;box-shadow:0 16px 34px rgba(255,196,0,.18)!important;transform:translateY(-1px)!important;background:linear-gradient(135deg,#fff,#fff8e4)!important;}
/* Member avatar override requested 14 Mei: keep shape/text alignment, remove forced size/bg/shadow */
.tk-member-avatar{
    /* width: 46px !important; */
    /* height: 46px !important; */
    border-radius: 16px !important;
    /* background: linear-gradient(135deg, #ff4d2d, #ffc400) !important; */
    color: #fff !important;
    display: grid !important;
    place-items: center !important;
    font-weight: 950 !important;
    /* box-shadow: 0 10px 22px rgba(255, 77, 45, .22) !important; */
}
.tk-member-avatar.big{width:68px!important;height:68px!important;border-radius:22px!important;font-size:28px!important;}
.tk-member-card-main{min-width:0!important;}.tk-member-card-main b{display:block!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;}.tk-member-card-main small{display:block!important;color:#64748b!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;}
.tk-mini-meta{display:flex!important;gap:6px!important;flex-wrap:wrap!important;margin-top:7px!important;}.tk-mini-meta span{font-size:11px!important;font-weight:950!important;background:#f8fafc!important;color:#475467!important;border-radius:999px!important;padding:4px 7px!important;}
.tk-member-card-stat{text-align:right!important;min-width:92px!important;}.tk-member-card-stat strong{display:block!important;font-size:13px!important;color:#111827!important;}.tk-member-card-stat small{color:#64748b!important;font-weight:800!important;}
.tk-member-detail-v2{display:flex!important;flex-direction:column!important;gap:16px!important;min-width:0!important;}
.tk-affiliate-hero-v2{display:grid!important;grid-template-columns:auto minmax(0,1fr) auto!important;gap:16px!important;align-items:center!important;padding:20px!important;border-top:5px solid #ff4d2d!important;}
.tk-affiliate-hero-v2 h2{font-size:28px!important;margin:2px 0 4px!important;}.tk-affiliate-hero-v2 p{margin:0!important;color:#64748b!important;}
.tk-affiliate-code-box-v2{background:linear-gradient(135deg,#111827,#263244)!important;color:#fff!important;border-radius:20px!important;padding:15px 16px!important;min-width:240px!important;box-shadow:0 18px 38px rgba(17,24,39,.2)!important;}
.tk-affiliate-code-box-v2 small{display:block!important;opacity:.7!important;font-weight:850!important;text-transform:uppercase!important;font-size:10px!important;letter-spacing:.08em!important;}.tk-affiliate-code-box-v2 strong{display:block!important;font-size:23px!important;margin:4px 0!important;color:#fff!important;}.tk-affiliate-code-box-v2 code{display:block!important;background:rgba(255,255,255,.1)!important;border-radius:12px!important;padding:8px!important;color:#fff!important;white-space:nowrap!important;overflow:auto!important;}
.tk-kpi-grid{display:grid!important;gap:12px!important;margin:0!important;}.tk-kpi-grid.four{grid-template-columns:repeat(4,minmax(0,1fr))!important}.tk-kpi-grid.two{grid-template-columns:repeat(2,minmax(0,1fr))!important}.tk-kpi{padding:17px!important;background:linear-gradient(135deg,#fff,#fffaf0)!important;border:1px solid #ffe2a8!important;border-radius:20px!important;}.tk-kpi span{display:block!important;color:#64748b!important;font-size:12px!important;font-weight:950!important;text-transform:uppercase!important;letter-spacing:.07em!important}.tk-kpi strong{display:block!important;font-size:24px!important;margin-top:6px!important;color:#111827!important;}
.tk-member-edit-card-v2{padding:18px!important;}.tk-member-edit-grid-v2{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:12px!important;align-items:end!important;}.tk-member-edit-grid-v2 .tk-checkline{display:flex!important;gap:8px!important;align-items:center!important;background:#fff!important;border:1px solid #eef2f7!important;border-radius:16px!important;padding:12px!important;}.tk-member-edit-grid-v2 .tk-form-actions{display:flex!important;align-items:end!important;}
.tk-downline-columns-v2{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:12px!important;}.tk-downline-box-v2{background:#fff!important;border:1px solid #eef2f7!important;border-radius:18px!important;padding:14px!important;}.tk-downline-item-v2{display:block!important;padding:11px!important;border-radius:14px!important;background:#f8fafc!important;border:1px solid transparent!important;text-decoration:none!important;color:#1f2937!important;margin-bottom:8px!important;}.tk-downline-item-v2:hover{border-color:#ffc400!important;background:#fff8e4!important;}.tk-downline-item-v2 b,.tk-downline-item-v2 small,.tk-downline-item-v2 code{display:block!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;}
.tk-split-tables-v2{display:grid!important;grid-template-columns:1fr 1fr!important;gap:16px!important;}.tk-inline-form{display:flex!important;gap:8px!important;align-items:center!important;flex-wrap:wrap!important;}.btn.small{min-height:34px!important;padding:7px 10px!important;font-size:12px!important;}
.tk-empty-state-v2,.tk-empty-member-main{border:1px dashed #ffd27a!important;background:#fffaf0!important;border-radius:20px!important;padding:28px!important;text-align:center!important;}
.tk-dt-card[data-entity="members"]{display:none!important;}
@media(max-width:1180px){.tk-member-hero-v2,.tk-member-help-card,.tk-member-grid-v2{grid-template-columns:1fr!important}.tk-member-list-card-v2{position:relative!important;top:auto!important;max-height:none!important}.tk-split-tables-v2{grid-template-columns:1fr!important}.tk-kpi-grid.four{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:760px){.tk-admin-body .tk-admin-content{padding:18px!important}.tk-member-hero-v2 h1{font-size:34px!important}.tk-member-rate-panel{grid-template-columns:1fr!important}.tk-affiliate-hero-v2{grid-template-columns:1fr!important}.tk-affiliate-code-box-v2{min-width:0!important}.tk-member-edit-grid-v2,.tk-downline-columns-v2,.tk-kpi-grid.four,.tk-kpi-grid.two{grid-template-columns:1fr!important}.tk-member-card-row{grid-template-columns:44px minmax(0,1fr)!important}.tk-member-card-stat{grid-column:2!important;text-align:left!important}.tk-member-help-card ol{padding-left:30px!important}}


/* ==========================================================
   TOKINDO ADMIN SPACING HARDENING v2
   Global fix: card/grid margins must not feel sticky/tight.
   Applies across Seller Center admin pages without controller changes.
   ========================================================== */
body.tk-admin-body{
  --tk-admin-page-gap: 28px;
  --tk-admin-card-gap: 24px;
  --tk-admin-card-pad: 28px;
  --tk-admin-card-radius: 26px;
  --tk-admin-soft-border: rgba(255,193,7,.55);
  --tk-admin-shadow: 0 18px 48px rgba(15,23,42,.075);
}

/* Main content: create consistent vertical rhythm */
.tk-admin-body .tk-admin-main,
.tk-admin-body .tk-admin-content,
.tk-admin-body main,
.tk-admin-body .section,
.tk-admin-body .tk-shopee-page,
.tk-admin-body .tk-category-admin-page,
.tk-admin-body .tk-marketplace-taxonomy{
  display:flex;
  flex-direction:column;
  gap:var(--tk-admin-page-gap) !important;
}

/* Page header should never touch cards below */
.tk-admin-body .tk-page-head,
.tk-admin-body .admin-page-head,
.tk-admin-body .page-head{
  margin-bottom:0 !important;
  padding-bottom:4px !important;
}

/* KPI/stat row separation */
.tk-admin-body .tk-kpi-grid,
.tk-admin-body .admin-kpi-grid,
.tk-admin-body .kpi-grid,
.tk-admin-body .stats-grid,
.tk-admin-body .dashboard-grid{
  display:grid;
  gap:22px !important;
  margin:0 !important;
}

.tk-admin-body .tk-kpi-grid + *,
.tk-admin-body .admin-kpi-grid + *,
.tk-admin-body .kpi-grid + *,
.tk-admin-body .stats-grid + *,
.tk-admin-body .dashboard-grid + *{
  margin-top:0 !important;
}

/* Universal cards: premium padding and safe spacing */
.tk-admin-body .card,
.tk-admin-body .tk-card,
.tk-admin-body .tk-table-card,
.tk-admin-body .tk-category-form,
.tk-admin-body .tk-category-list-card,
.tk-admin-body .tk-member-panel,
.tk-admin-body .tk-member-card,
.tk-admin-body .admin-card,
.tk-admin-body section > form,
.tk-admin-body section > .notice,
.tk-admin-body section > .tk-alert{
  border-radius:var(--tk-admin-card-radius) !important;
  box-shadow:var(--tk-admin-shadow) !important;
}

.tk-admin-body .card,
.tk-admin-body .tk-card,
.tk-admin-body .tk-table-card,
.tk-admin-body .tk-category-form,
.tk-admin-body .tk-category-list-card,
.tk-admin-body .admin-card{
  padding:var(--tk-admin-card-pad) !important;
  margin:0 !important;
}

/* Any adjacent cards get breathing space, even if markup is raw */
.tk-admin-body .card + .card,
.tk-admin-body .tk-card + .tk-card,
.tk-admin-body form.card + .card,
.tk-admin-body .card + form.card,
.tk-admin-body .tk-table-card + .tk-table-card{
  margin-top:var(--tk-admin-card-gap) !important;
}

/* Major admin split layouts */
.tk-admin-body .tk-category-admin-grid,
.tk-admin-body .tk-admin-two-col,
.tk-admin-body .admin-two-col,
.tk-admin-body .admin-split-grid,
.tk-admin-body .taxonomy-grid,
.tk-admin-body .tk-member-layout,
.tk-admin-body .tk-decor-admin-grid,
.tk-admin-body .tk-banner-grid,
.tk-admin-body .tk-settings-grid{
  display:grid !important;
  gap:28px !important;
  align-items:start !important;
  margin:0 !important;
}

.tk-admin-body .tk-category-admin-grid{
  grid-template-columns:minmax(340px, 430px) minmax(0, 1fr) !important;
}

.tk-admin-body .tk-admin-two-col,
.tk-admin-body .admin-two-col,
.tk-admin-body .admin-split-grid,
.tk-admin-body .taxonomy-grid,
.tk-admin-body .tk-decor-admin-grid,
.tk-admin-body .tk-banner-grid,
.tk-admin-body .tk-settings-grid{
  grid-template-columns:minmax(360px, .45fr) minmax(0, 1fr) !important;
}

/* Prevent columns from visually colliding */
.tk-admin-body .tk-category-admin-grid > *,
.tk-admin-body .tk-admin-two-col > *,
.tk-admin-body .admin-two-col > *,
.tk-admin-body .admin-split-grid > *,
.tk-admin-body .taxonomy-grid > *,
.tk-admin-body .tk-member-layout > *,
.tk-admin-body .tk-decor-admin-grid > *,
.tk-admin-body .tk-banner-grid > *,
.tk-admin-body .tk-settings-grid > *{
  min-width:0 !important;
  margin:0 !important;
}

/* Card headers need internal space before form/table */
.tk-admin-body .tk-card-head,
.tk-admin-body .card > h2:first-child,
.tk-admin-body .card > h3:first-child,
.tk-admin-body .admin-card > h2:first-child,
.tk-admin-body .admin-card > h3:first-child{
  margin-bottom:22px !important;
}

.tk-admin-body .tk-card-head{
  display:flex !important;
  justify-content:space-between !important;
  align-items:flex-start !important;
  gap:18px !important;
}

/* Forms: consistent vertical rhythm */
.tk-admin-body form,
.tk-admin-body .tk-form,
.tk-admin-body .admin-form{
  gap:18px !important;
}

.tk-admin-body form label,
.tk-admin-body .admin-form label,
.tk-admin-body .card label{
  display:grid !important;
  gap:8px !important;
  margin:0 0 18px 0 !important;
}

.tk-admin-body .card label:last-child,
.tk-admin-body form label:last-child{
  margin-bottom:0 !important;
}

.tk-admin-body .input,
.tk-admin-body input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.tk-admin-body select,
.tk-admin-body textarea{
  min-height:50px !important;
  border-radius:16px !important;
}

.tk-admin-body textarea{
  min-height:118px !important;
  padding-top:14px !important;
}

.tk-admin-body .tk-form-actions,
.tk-admin-body .form-actions,
.tk-admin-body .admin-actions,
.tk-admin-body .tk-admin-page-actions{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:14px !important;
  align-items:center !important;
  margin-top:22px !important;
}

/* Tables: make table cards feel separated and premium */
.tk-admin-body .seller-table,
.tk-admin-body .tk-admin-table,
.tk-admin-body table{
  border-collapse:separate !important;
  border-spacing:0 !important;
  width:100% !important;
}

.tk-admin-body .tk-table-card,
.tk-admin-body .table-wrap,
.tk-admin-body .admin-table-wrap{
  overflow:auto !important;
}

.tk-admin-body table th,
.tk-admin-body table td{
  padding:16px 18px !important;
  vertical-align:middle !important;
}

.tk-admin-body table tr + tr td{
  border-top:1px solid rgba(15,23,42,.065) !important;
}

/* Category list specific: separate parent and inline subcategory add form */
.tk-admin-body .tk-category-list-card{
  padding:0 !important;
  overflow:hidden !important;
}

.tk-admin-body .tk-category-list-card > .tk-card-head,
.tk-admin-body .tk-category-list-card > .tk-category-search,
.tk-admin-body .tk-category-list-card > .tk-category-tree,
.tk-admin-body .tk-category-list-card > .tk-cat-tree,
.tk-admin-body .tk-category-list-card > .seller-table,
.tk-admin-body .tk-category-list-card > table{
  margin:0 !important;
}

.tk-admin-body .tk-category-list-card > .tk-card-head{
  padding:26px 28px 18px !important;
}

.tk-admin-body .tk-category-list-card .tk-category-search,
.tk-admin-body .tk-category-list-card input[type="search"]{
  margin:0 28px 24px !important;
}

.tk-admin-body .tk-category-list-card .tk-cat-parent,
.tk-admin-body .tk-category-list-card .tk-category-parent,
.tk-admin-body .tk-category-list-card .tk-cat-row{
  margin:0 !important;
  padding:22px 28px !important;
  border-top:1px solid rgba(15,23,42,.06) !important;
}

.tk-admin-body .tk-category-list-card .tk-inline-subcat,
.tk-admin-body .tk-category-list-card .tk-subcat-form,
.tk-admin-body .tk-category-list-card form[action*="categories"]{
  display:grid !important;
  grid-template-columns:minmax(180px, 1.15fr) minmax(160px, .8fr) 120px auto !important;
  gap:12px !important;
  align-items:center !important;
  margin:18px 0 8px !important;
}

.tk-admin-body .tk-category-list-card .tk-inline-subcat label,
.tk-admin-body .tk-category-list-card .tk-subcat-form label,
.tk-admin-body .tk-category-list-card form[action*="categories"] label{
  margin:0 !important;
}

/* Settings page raw inline layout fallback */
.tk-admin-body .admin-shell form,
.tk-admin-body .admin-shell .card form{
  max-width:100% !important;
}

.tk-admin-body .admin-shell .card{
  margin-bottom:24px !important;
}

/* Flash sale / voucher / banner forms look cleaner */
.tk-admin-body .tk-shopee-page .tk-admin-two-col > form.card,
.tk-admin-body .tk-shopee-page .tk-admin-two-col > .card{
  align-self:start !important;
}

/* More professional notices and empty states */
.tk-admin-body .notice,
.tk-admin-body .tk-alert,
.tk-admin-body .empty,
.tk-admin-body .empty-state{
  padding:18px 22px !important;
  border-radius:20px !important;
  margin:0 !important;
}

/* Mobile/tablet: cards stack with enough air */
@media (max-width:1100px){
  body.tk-admin-body{
    --tk-admin-page-gap:22px;
    --tk-admin-card-gap:20px;
    --tk-admin-card-pad:22px;
  }
  .tk-admin-body .tk-category-admin-grid,
  .tk-admin-body .tk-admin-two-col,
  .tk-admin-body .admin-two-col,
  .tk-admin-body .admin-split-grid,
  .tk-admin-body .taxonomy-grid,
  .tk-admin-body .tk-member-layout,
  .tk-admin-body .tk-decor-admin-grid,
  .tk-admin-body .tk-banner-grid,
  .tk-admin-body .tk-settings-grid{
    grid-template-columns:1fr !important;
    gap:22px !important;
  }
  .tk-admin-body .tk-category-list-card .tk-inline-subcat,
  .tk-admin-body .tk-category-list-card .tk-subcat-form,
  .tk-admin-body .tk-category-list-card form[action*="categories"]{
    grid-template-columns:1fr !important;
  }
}

@media (max-width:720px){
  body.tk-admin-body{
    --tk-admin-page-gap:18px;
    --tk-admin-card-pad:18px;
    --tk-admin-card-radius:20px;
  }
  .tk-admin-body .tk-kpi-grid,
  .tk-admin-body .admin-kpi-grid,
  .tk-admin-body .kpi-grid,
  .tk-admin-body .stats-grid{
    grid-template-columns:1fr !important;
  }
  .tk-admin-body table th,
  .tk-admin-body table td{
    padding:13px 12px !important;
  }
}

/* === Tokindo hardening patch 14 May: category drilldown + POST action forms === */
.tk-category-group-picker .tk-category-subgrid-picker{display:none;}
.tk-category-group-picker.is-expanded .tk-category-subgrid-picker,
.tk-category-group-picker.is-selected .tk-category-subgrid-picker{display:flex;}
.tk-category-parent-picker[type="button"]{font-family:inherit;}
.tk-category-group-picker.is-expanded .tk-category-parent-picker em,
.tk-category-group-picker.is-selected .tk-category-parent-picker em{background:#e31b23;color:#fff;border-color:#e31b23;}
.tk-category-parent-picker em::after{content:' ▾';}
.tk-category-group-picker.is-expanded .tk-category-parent-picker em::after,
.tk-category-group-picker.is-selected .tk-category-parent-picker em::after{content:' ▴';}
.tk-inline-post-action{display:inline-flex;margin:0;padding:0;vertical-align:middle;}
.tk-inline-post-action button{font:inherit;cursor:pointer;}
.tk-edit-actions .tk-inline-post-action{display:inline-flex;}
.tk-voucher-box small{display:block;margin-top:7px;color:#64748b;font-weight:800;}
.tk-voucher-box small:not(:empty){color:#166534;}

/* 2026-05-14 patch: category drilldown in nav/mobile menu */
.tk-nav-cat-group.has-children{gap:0;}
.tk-nav-cat-parent[type="button"],
.tk-mobile-cat-parent[type="button"]{appearance:none;-webkit-appearance:none;border:0;cursor:pointer;font:inherit;text-align:left;}
.tk-nav-cat-parent[type="button"]{width:100%;display:flex;align-items:center;justify-content:space-between;gap:10px;background:transparent;color:#d2252b;padding:0;font-weight:900;font-size:14px;}
.tk-nav-cat-parent em{font-style:normal;font-size:12px;transition:transform .18s ease;}
.tk-nav-cat-group.is-open .tk-nav-cat-parent em{transform:rotate(180deg);}
.tk-nav-cat-sublist{display:none;margin-top:7px;gap:5px;}
.tk-nav-cat-group.is-open .tk-nav-cat-sublist{display:grid;}
.tk-mobile-cat-group{display:grid;gap:4px;}
.tk-mobile-cat-parent[type="button"]{width:100%;display:flex!important;align-items:center;justify-content:space-between;background:rgba(255,255,255,.10)!important;color:#fff!important;}
.tk-mobile-cat-parent span{transition:transform .18s ease;}
.tk-mobile-cat-group.is-open .tk-mobile-cat-parent span{transform:rotate(180deg);}
.tk-mobile-cat-sublist{display:none;gap:4px;padding-left:8px;}
.tk-mobile-cat-group.is-open .tk-mobile-cat-sublist{display:grid;}

/* === Patch 14 Mei B: true category drilldown storefront + admin === */
.tk-category-drill .tk-category-drill-panel{
  width:min(760px,calc(100vw - 32px));
  padding:16px;
}
.tk-category-drill-grid{
  display:grid;
  grid-template-columns:minmax(210px,.85fr) minmax(280px,1.15fr);
  gap:14px;
  align-items:stretch;
}
.tk-category-main-list{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:10px;
  border-radius:18px;
  background:linear-gradient(180deg,#fff8dd,#fff);
  border:1px solid rgba(255,191,0,.28);
  max-height:420px;
  overflow:auto;
}
.tk-category-main-btn{
  width:100%;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  color:#171717;
  border-radius:14px;
  padding:12px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  cursor:pointer;
  font:inherit;
  text-align:left;
  transition:.16s ease;
}
.tk-category-main-btn span{
  font-weight:950;
  font-size:14px;
  line-height:1.2;
}
.tk-category-main-btn em{
  font-style:normal;
  font-size:11px;
  font-weight:900;
  color:#d2252b;
  background:#fff1f2;
  border:1px solid #ffd1d4;
  border-radius:999px;
  padding:5px 8px;
  white-space:nowrap;
}
.tk-category-main-btn:hover,
.tk-category-main-btn.is-active{
  border-color:#e31b23;
  background:linear-gradient(135deg,#e31b23,#ff6a2a);
  color:#fff;
  box-shadow:0 14px 30px rgba(227,27,35,.18);
  transform:translateY(-1px);
}
.tk-category-main-btn:hover em,
.tk-category-main-btn.is-active em{
  color:#e31b23;
  background:#fff;
  border-color:#fff;
}
.tk-category-sub-panels{
  min-height:220px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.08);
  background:radial-gradient(circle at top right,rgba(255,191,0,.14),transparent 36%),#fff;
  padding:14px;
  overflow:auto;
}
.tk-category-sub-placeholder{
  height:100%;
  min-height:180px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:6px;
  color:#64748b;
  border:1px dashed rgba(255,191,0,.6);
  border-radius:16px;
  background:#fffdf5;
}
.tk-category-sub-placeholder b{color:#111827;font-size:16px;}
.tk-category-sub-placeholder.is-hidden{display:none;}
.tk-category-sub-panel{display:none;}
.tk-category-sub-panel.is-active{display:block;}
.tk-category-sub-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(15,23,42,.06);
}
.tk-category-sub-head strong{font-size:17px;font-weight:950;color:#111827;}
.tk-category-sub-head span{font-size:12px;font-weight:800;color:#d2252b;}
.tk-category-child-list{display:flex;flex-wrap:wrap;gap:9px;}
.tk-category-child-picker.is-direct{border-radius:14px;min-height:42px;}
@media(max-width:760px){
  .tk-category-drill .tk-category-drill-panel{width:auto;}
  .tk-category-drill-grid{grid-template-columns:1fr;}
  .tk-category-main-list{max-height:260px;}
  .tk-category-sub-panels{min-height:160px;}
}

.tk-admin-category-picker{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  align-items:start;
  width:100%;
}
.tk-admin-category-picker > input[type="hidden"]{display:none!important;}
.tk-admin-category-picker label{margin:0;}
.tk-admin-category-picker .tk-category-picker-hint{
  grid-column:1/-1;
  display:block;
  margin-top:-2px;
  color:#64748b;
  font-size:12px;
  font-weight:800;
  line-height:1.4;
}
.tk-admin-category-picker--bulk{
  grid-template-columns:minmax(180px,1fr) minmax(180px,1fr);
  min-width:min(100%,460px);
}
.tk-admin-category-picker--row{
  grid-template-columns:1fr;
  gap:6px;
  min-width:230px;
}
.tk-admin-category-picker--row .seller-input{
  min-height:38px!important;
  font-size:12px!important;
  padding:0 10px!important;
}
.tk-admin-category-picker--row .tk-category-picker-hint{display:none;}
@media(max-width:760px){
  .tk-admin-category-picker,
  .tk-admin-category-picker--bulk{grid-template-columns:1fr;}
}

.tk-category-tree-admin .tk-cat-parent{
  overflow:hidden;
}
.tk-category-tree-admin .tk-cat-children,
.tk-category-tree-admin .tk-quick-child-form{
  display:none;
}
.tk-category-tree-admin .tk-cat-parent.is-expanded .tk-cat-children{
  display:grid;
}
.tk-category-tree-admin .tk-cat-parent.is-expanded .tk-quick-child-form{
  display:grid;
}
.tk-cat-expand[aria-expanded="true"]{
  border-color:#e31b23!important;
  background:#e31b23!important;
  color:#fff!important;
}

/* === Hotfix 14 Mei C: native 2-step category picker === */
.tk-catalog-filter-form--native-cat{
  grid-template-columns:minmax(340px,2.1fr) minmax(160px,1fr) minmax(150px,1fr) 120px;
  align-items:start;
}
.tk-native-category-picker{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  align-items:start;
  min-width:0;
}
.tk-native-category-picker label{
  margin:0;
  display:grid;
  gap:5px;
}
.tk-native-category-picker small{
  display:block;
  font-size:10px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#d2252b;
  font-weight:950;
  padding-left:4px;
}
.tk-native-category-picker .input{
  min-height:50px;
  border:1px solid #ffbf00!important;
  border-radius:18px!important;
  font-weight:850;
  background:#fff!important;
  box-shadow:0 10px 24px rgba(255,184,0,.08);
}
.tk-category-step-hint{
  grid-column:1/-1;
  color:#64748b;
  font-size:12px;
  font-weight:800;
  line-height:1.4;
  padding:0 4px;
  margin-top:-2px;
}
.tk-cat-collapse{
  padding:0 14px 14px;
}
.tk-cat-collapse > summary{
  list-style:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  border:1px solid rgba(215,25,32,.25);
  border-radius:999px;
  padding:0 13px;
  color:#d71920;
  background:#fff;
  font-weight:950;
  margin-top:0;
  user-select:none;
}
.tk-cat-collapse > summary::-webkit-details-marker{display:none;}
.tk-cat-collapse > summary:after{content:'⌄';font-size:15px;line-height:1;transition:.16s ease;}
.tk-cat-collapse[open] > summary{background:#e31b23;color:#fff;border-color:#e31b23;}
.tk-cat-collapse[open] > summary:after{transform:rotate(180deg);}
.tk-cat-collapse:not([open]) .tk-quick-child-form,
.tk-cat-collapse:not([open]) .tk-cat-children{display:none!important;}
.tk-cat-collapse[open] .tk-quick-child-form{display:grid!important;margin-top:12px;}
.tk-cat-collapse[open] .tk-cat-children{display:grid!important;margin-top:12px;border-top:1px solid #eee;}
@media(max-width:980px){
  .tk-catalog-filter-form--native-cat{grid-template-columns:1fr 1fr;}
  .tk-native-category-picker{grid-column:1/-1;}
}
@media(max-width:640px){
  .tk-catalog-filter-form--native-cat,.tk-native-category-picker{grid-template-columns:1fr;}
}

/* === Patch 14 Mei E: payment manual verification + visible hidden-subcategory menu === */
.tk-payment-live-note{
  margin-top:14px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid #ffe08a;
  background:linear-gradient(180deg,#fffdf3,#fff8db);
  color:#4b3a00;
  font-weight:800;
  line-height:1.45;
}
.tk-payment-live-note[data-tone="success"]{border-color:#bbf7d0;background:#f0fdf4;color:#166534;}
.tk-payment-live-note[data-tone="danger"]{border-color:#fecaca;background:#fef2f2;color:#991b1b;}
.tk-payment-live-note[data-tone="info"]{border-color:#bfdbfe;background:#eff6ff;color:#1d4ed8;}
.tk-payment-actions button[disabled]{opacity:.72;cursor:not-allowed;filter:grayscale(.15);}

.tk-category-menu-card{
  margin-top:16px;
  padding:16px;
  border-radius:24px;
  background:linear-gradient(135deg,#fff8df 0%,#ffffff 48%,#fff2f2 100%);
  border:1px solid rgba(255,190,0,.65);
  box-shadow:0 16px 38px rgba(227,27,35,.07);
}
.tk-category-menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.tk-category-menu-head small{
  display:block;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:11px;
  font-weight:950;
  color:#d2252b;
}
.tk-category-menu-head strong{
  display:block;
  margin-top:4px;
  color:#111827;
  font-size:18px;
  font-weight:950;
}
.tk-category-reset-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:9px 13px;
  border-radius:999px;
  border:1px solid #ffd15a;
  background:#fff;
  color:#111827;
  font-weight:900;
  text-decoration:none!important;
  white-space:nowrap;
}
.tk-category-reset-link:hover,.tk-category-reset-link.is-active{
  background:#e31b23;
  color:#fff;
  border-color:#e31b23;
}
.tk-category-menu-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.tk-category-menu-group{
  border-radius:18px;
  border:1px solid #f0e2b0;
  background:#fff;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.045);
}
.tk-category-menu-group summary{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:13px 14px;
  cursor:pointer;
  user-select:none;
  background:linear-gradient(180deg,#fff,#fffaf0);
}
.tk-category-menu-group summary::-webkit-details-marker{display:none;}
.tk-category-menu-group summary span,
.tk-category-menu-direct span{
  font-size:14px;
  font-weight:950;
  color:#151515;
  line-height:1.25;
}
.tk-category-menu-group summary em,
.tk-category-menu-direct em{
  font-style:normal;
  font-size:11px;
  font-weight:900;
  color:#d2252b;
  background:#fff1f2;
  border:1px solid #ffd5d7;
  border-radius:999px;
  padding:5px 8px;
  white-space:nowrap;
}
.tk-category-menu-group summary:after{
  content:'⌄';
  color:#d2252b;
  font-weight:950;
  transition:.16s ease;
}
.tk-category-menu-group[open] summary:after{transform:rotate(180deg);}
.tk-category-menu-group[open] summary,
.tk-category-menu-group.is-active summary{
  background:linear-gradient(135deg,#e31b23,#ff6b35);
}
.tk-category-menu-group[open] summary span,
.tk-category-menu-group[open] summary:after,
.tk-category-menu-group.is-active summary span,
.tk-category-menu-group.is-active summary:after{color:#fff;}
.tk-category-menu-group[open] summary em,
.tk-category-menu-group.is-active summary em{background:#fff;color:#e31b23;border-color:#fff;}
.tk-category-submenu{
  display:grid;
  gap:8px;
  padding:12px;
  border-top:1px solid #f1f1f1;
  background:#fff;
}
.tk-category-submenu-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  min-height:40px;
  padding:9px 11px;
  border-radius:14px;
  border:1px solid #eeeeee;
  background:#fff;
  color:#222;
  text-decoration:none!important;
  transition:.14s ease;
}
.tk-category-submenu-item span{font-weight:900;font-size:13px;}
.tk-category-submenu-item small{font-size:11px;color:#777;font-weight:800;white-space:nowrap;}
.tk-category-submenu-item:hover,
.tk-category-submenu-item.is-active{
  background:#e31b23;
  border-color:#e31b23;
  color:#fff;
  box-shadow:0 10px 20px rgba(227,27,35,.16);
}
.tk-category-submenu-item:hover small,
.tk-category-submenu-item.is-active small{color:rgba(255,255,255,.82);}
.tk-category-menu-direct{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:13px 14px;
  border-radius:18px;
  border:1px solid #f0e2b0;
  background:linear-gradient(180deg,#fff,#fffaf0);
  box-shadow:0 10px 24px rgba(0,0,0,.045);
  text-decoration:none!important;
}
.tk-category-menu-direct:hover,
.tk-category-menu-direct.is-active{
  background:linear-gradient(135deg,#e31b23,#ff6b35);
  border-color:#e31b23;
}
.tk-category-menu-direct:hover span,
.tk-category-menu-direct.is-active span{color:#fff;}
.tk-category-menu-direct:hover em,
.tk-category-menu-direct.is-active em{background:#fff;color:#e31b23;border-color:#fff;}
.tk-catalog-filter-form--menu-cat{
  margin-top:14px;
  grid-template-columns:minmax(180px,1fr) minmax(180px,1fr) auto;
}

.tk-admin-body .tk-cat-collapse > summary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin:0 14px 14px;
  min-height:38px;
  padding:9px 13px;
  border-radius:999px;
  border:1px solid #ffd15a;
  background:#fffdf3;
  color:#a21b1f;
  font-weight:950;
  cursor:pointer;
}
.tk-admin-body .tk-cat-collapse[open] > summary{
  background:#e31b23;
  color:#fff;
  border-color:#e31b23;
}

@media(max-width:980px){
  .tk-category-menu-list{grid-template-columns:repeat(2,minmax(0,1fr));}
  .tk-catalog-filter-form--menu-cat{grid-template-columns:1fr 1fr;}
  .tk-catalog-filter-form--menu-cat .btn{grid-column:1/-1;}
}
@media(max-width:640px){
  .tk-category-menu-head{align-items:flex-start;flex-direction:column;}
  .tk-category-reset-link{width:100%;}
  .tk-category-menu-list{grid-template-columns:1fr;}
  .tk-category-menu-card{padding:12px;border-radius:18px;}
  .tk-catalog-filter-form--menu-cat{grid-template-columns:1fr;}
}

/* === Patch 14 Mei F: Choice 3 responsive catalog + admin visual category picker === */
.tk-choice3-catalog{
  max-width:1420px;
  margin-left:auto;
  margin-right:auto;
}
.tk-choice3-hero{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  padding:18px 0 14px;
}
.tk-choice3-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:26px;
  padding:5px 10px;
  margin-bottom:8px;
  border-radius:999px;
  border:1px solid rgba(227,27,35,.12);
  background:linear-gradient(180deg,#fff,#fff6f6);
  color:#d2252b;
  font-size:11px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.tk-choice3-hero h1{
  margin:0;
  font-size:clamp(34px,4vw,56px);
  line-height:.95;
  letter-spacing:-.045em;
  color:#111827;
}
.tk-choice3-hero p{
  margin:10px 0 0;
  color:#52525b;
  font-size:16px;
  font-style:italic;
}
.tk-choice3-mobile-filter{
  display:none;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid rgba(227,27,35,.2);
  background:#fff;
  color:#e31b23;
  border-radius:999px;
  min-height:44px;
  padding:0 16px;
  font-weight:950;
  box-shadow:0 10px 24px rgba(227,27,35,.08);
}
.tk-choice3-layout{
  display:grid;
  grid-template-columns:300px minmax(0,1fr);
  gap:22px;
  align-items:start;
}
.tk-choice3-sidebar-card,
.tk-choice3-filterbar,
.tk-choice3-drawer{
  border:1px solid rgba(245,158,11,.32);
  background:linear-gradient(135deg,#fffdf7 0%,#fff 52%,#fff7f7 100%);
  box-shadow:0 18px 44px rgba(15,23,42,.055);
}
.tk-choice3-sidebar-card{
  position:sticky;
  top:96px;
  border-radius:24px;
  padding:18px;
}
.tk-choice3-sidebar-title{
  padding:0 0 14px;
  margin-bottom:10px;
  border-bottom:1px solid rgba(15,23,42,.07);
}
.tk-choice3-sidebar-title strong{
  display:block;
  color:#e31b23;
  font-size:17px;
  font-weight:950;
}
.tk-choice3-sidebar-title small{
  display:block;
  margin-top:5px;
  color:#6b7280;
  font-weight:800;
  line-height:1.35;
}
.tk-choice3-category-menu{
  display:grid;
  gap:8px;
}
.tk-choice3-cat-all,
.tk-choice3-cat-direct,
.tk-choice3-cat-group summary{
  min-height:48px;
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  border:0;
  border-radius:16px;
  padding:10px 12px;
  background:#fff;
  color:#111827;
  font-weight:950;
  text-decoration:none!important;
  cursor:pointer;
  transition:.16s ease;
}
.tk-choice3-cat-group{
  border-radius:16px;
  overflow:hidden;
}
.tk-choice3-cat-group summary{
  list-style:none;
  justify-content:flex-start;
}
.tk-choice3-cat-group summary::-webkit-details-marker{display:none;}
.tk-choice3-cat-icon{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:10px;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  color:#111827;
  font-size:14px;
}
.tk-choice3-cat-name{min-width:0;flex:1;line-height:1.25;}
.tk-choice3-cat-group summary b,
.tk-choice3-cat-direct b{
  margin-left:auto;
  min-width:26px;
  min-height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#fff1f2;
  border:1px solid #ffd5d7;
  color:#d2252b;
  font-size:11px;
}
.tk-choice3-cat-group summary:after,
.tk-choice3-cat-direct:after{
  content:'›';
  color:#71717a;
  font-size:20px;
  line-height:1;
  transition:.16s ease;
}
.tk-choice3-cat-group[open] summary:after{transform:rotate(90deg);}
.tk-choice3-cat-group[open] summary,
.tk-choice3-cat-group.is-active summary,
.tk-choice3-cat-all.is-active,
.tk-choice3-cat-direct.is-active,
.tk-choice3-cat-all:hover,
.tk-choice3-cat-direct:hover,
.tk-choice3-cat-group summary:hover{
  color:#e31b23;
  background:linear-gradient(90deg,rgba(227,27,35,.08),rgba(255,255,255,.96));
}
.tk-choice3-cat-group[open] summary .tk-choice3-cat-icon,
.tk-choice3-cat-group.is-active summary .tk-choice3-cat-icon,
.tk-choice3-cat-all.is-active .tk-choice3-cat-icon,
.tk-choice3-cat-direct.is-active .tk-choice3-cat-icon{
  color:#e31b23;
  border-color:rgba(227,27,35,.18);
  background:#fff6f6;
}
.tk-choice3-subcat-list{
  display:grid;
  gap:6px;
  padding:8px 0 10px 42px;
}
.tk-choice3-subcat{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  min-height:36px;
  padding:8px 10px;
  border-radius:13px;
  color:#374151;
  text-decoration:none!important;
  font-weight:850;
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  transition:.16s ease;
}
.tk-choice3-subcat:before{
  content:'';
  width:6px;
  height:6px;
  border-radius:999px;
  background:#a1a1aa;
}
.tk-choice3-subcat span{flex:1;min-width:0;}
.tk-choice3-subcat small{color:#8a8a8a;font-size:11px;font-weight:800;white-space:nowrap;}
.tk-choice3-subcat:hover,
.tk-choice3-subcat.is-active{
  color:#e31b23;
  background:#fff7f7;
  border-color:rgba(227,27,35,.14);
}
.tk-choice3-subcat:hover:before,
.tk-choice3-subcat.is-active:before{background:#e31b23;}
.tk-choice3-main{min-width:0;}
.tk-choice3-filterbar{
  display:grid;
  grid-template-columns:minmax(240px,1.25fr) minmax(150px,.65fr) minmax(150px,.65fr) auto auto;
  align-items:end;
  gap:14px;
  border-radius:24px;
  padding:18px;
}
.tk-choice3-filterbar label span{
  display:block;
  margin-bottom:6px;
  color:#6b7280;
  font-size:12px;
  font-weight:900;
}
.tk-choice3-filterbar .input{
  min-height:48px;
  border-radius:14px;
  background:#fff;
}
.tk-choice3-apply,.tk-choice3-reset{
  min-height:48px;
  border-radius:14px!important;
  white-space:nowrap;
}
.tk-choice3-result-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin:24px 0 14px;
}
.tk-choice3-result-head strong{
  display:block;
  color:#111827;
  font-size:16px;
  font-weight:950;
}
.tk-choice3-result-head small{
  display:block;
  margin-top:4px;
  color:#6b7280;
  font-weight:750;
}
.tk-choice3-sort-note{
  color:#52525b;
  font-size:13px;
  font-weight:850;
}
.tk-choice3-sort-note b{color:#e31b23;}
.tk-choice3-product-grid{
  align-items:stretch;
}
.tk-choice3-empty{
  grid-column:1/-1;
  display:grid;
  gap:4px;
  min-height:180px;
  place-content:center;
  text-align:center;
  border:1px dashed rgba(227,27,35,.22);
  border-radius:24px;
  background:#fff;
  color:#111827;
}
.tk-choice3-empty span{color:#6b7280;}
.tk-choice3-drawer-overlay{
  position:fixed;
  inset:0;
  z-index:10010;
  background:rgba(15,23,42,.46);
  backdrop-filter:blur(5px);
}
.tk-choice3-drawer{
  position:fixed;
  z-index:10011;
  top:0;
  right:0;
  width:min(92vw,390px);
  height:100dvh;
  overflow:auto;
  border-radius:24px 0 0 24px;
  padding:18px;
  animation:tkDrawerIn .18s ease both;
}
@keyframes tkDrawerIn{from{transform:translateX(18px);opacity:.72}to{transform:translateX(0);opacity:1}}
body.tk-choice3-drawer-open{overflow:hidden;}
.tk-choice3-drawer-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding-bottom:14px;
  margin-bottom:12px;
  border-bottom:1px solid rgba(15,23,42,.07);
}
.tk-choice3-drawer-head strong{display:block;font-size:20px;font-weight:950;color:#111827;}
.tk-choice3-drawer-head small{display:block;margin-top:4px;color:#6b7280;font-weight:800;}
.tk-choice3-drawer-head button{
  width:40px;
  height:40px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:999px;
  background:#fff;
  color:#111827;
  font-size:22px;
  cursor:pointer;
}
.tk-choice3-drawer-search{display:block;margin-bottom:12px;}
.tk-choice3-drawer-search input{
  width:100%;
  min-height:46px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  padding:0 13px;
  outline:none;
  background:#fff;
  font-weight:800;
}
@media(max-width:1100px){
  .tk-choice3-layout{grid-template-columns:270px minmax(0,1fr);gap:16px;}
  .tk-choice3-filterbar{grid-template-columns:1fr 1fr;}
  .tk-choice3-search-field{grid-column:1/-1;}
  .tk-choice3-apply,.tk-choice3-reset{width:100%;justify-content:center;}
}
@media(max-width:860px){
  .tk-choice3-hero{align-items:flex-start;padding-top:8px;}
  .tk-choice3-mobile-filter{display:inline-flex;}
  .tk-choice3-layout{display:block;}
  .tk-choice3-sidebar{display:none;}
  .tk-choice3-filterbar{grid-template-columns:1fr 1fr;gap:10px;padding:12px;border-radius:18px;}
  .tk-choice3-search-field{grid-column:1/-1;}
  .tk-choice3-result-head{align-items:flex-start;flex-direction:column;margin-top:18px;}
}
@media(max-width:560px){
  .tk-choice3-hero{flex-direction:column;gap:12px;}
  .tk-choice3-mobile-filter{width:100%;}
  .tk-choice3-filterbar{grid-template-columns:1fr;}
  .tk-choice3-filterbar .input{min-height:44px;}
  .tk-choice3-drawer{width:100vw;border-radius:0;}
  .tk-choice3-subcat-list{padding-left:34px;}
  .tk-choice3-product-grid.grid{grid-template-columns:1fr!important;}
}

/* === Hotfix 14 Mei G: Choice 3 catalog responsive/sidebar cleanup ===
   Fixes:
   - stray chevrons/underlines from global a::after
   - sidebar too wide on tablet/mobile
   - mobile category should use drawer, not desktop sidebar
   - tighter category rows and safer text wrapping
*/
.tk-choice3-catalog,
.tk-choice3-catalog *{box-sizing:border-box;}

.tk-choice3-catalog a::after,
.tk-choice3-drawer a::after,
.tk-choice3-category-menu a::after,
.tk-choice3-subcat::after,
.tk-choice3-cat-all::after,
.tk-choice3-cat-direct::after{
  content:none!important;
  display:none!important;
  width:0!important;
  height:0!important;
  background:transparent!important;
}

.tk-choice3-cat-group summary::after{
  position:static!important;
  left:auto!important;
  right:auto!important;
  bottom:auto!important;
  width:auto!important;
  height:auto!important;
  background:transparent!important;
  margin-left:auto!important;
  flex:0 0 auto;
  content:'›'!important;
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  color:#71717a;
  font-size:20px;
  line-height:1;
  transition:.16s ease;
}
.tk-choice3-cat-group[open] summary::after{transform:rotate(90deg);}

.tk-choice3-sidebar-card{max-width:100%;overflow:hidden;}
.tk-choice3-cat-all,
.tk-choice3-cat-direct,
.tk-choice3-cat-group summary{
  min-width:0;
  padding:10px 12px;
  gap:10px;
}
.tk-choice3-cat-name,
.tk-choice3-cat-all span:not(.tk-choice3-cat-icon){
  overflow-wrap:anywhere;
  word-break:normal;
}
.tk-choice3-cat-group summary b,
.tk-choice3-cat-direct b{
  flex:0 0 auto;
  margin-left:8px;
}
.tk-choice3-cat-direct{
  cursor:pointer;
}
.tk-choice3-cat-direct .tk-choice3-cat-name{padding-right:2px;}

@media(max-width:1180px){
  .tk-choice3-layout{grid-template-columns:260px minmax(0,1fr);gap:16px;}
  .tk-choice3-sidebar-card{padding:14px;border-radius:20px;}
  .tk-choice3-cat-all,
  .tk-choice3-cat-direct,
  .tk-choice3-cat-group summary{min-height:44px;border-radius:14px;}
  .tk-choice3-cat-icon{width:26px;height:26px;border-radius:9px;font-size:13px;}
}

@media(max-width:1024px){
  main.container,
  .nav .container,
  .footer .container{width:calc(100% - 28px)!important;max-width:none!important;}
  .tk-choice3-catalog{max-width:100%;overflow-x:hidden;}
  .tk-choice3-hero{align-items:flex-start;padding:10px 0 12px;}
  .tk-choice3-mobile-filter{display:inline-flex!important;}
  .tk-choice3-layout{display:block!important;}
  .tk-choice3-sidebar{display:none!important;}
  .tk-choice3-filterbar{grid-template-columns:1fr 1fr!important;gap:10px;padding:12px;border-radius:18px;}
  .tk-choice3-search-field{grid-column:1/-1!important;}
  .tk-choice3-apply,.tk-choice3-reset{width:100%;justify-content:center;}
  .tk-choice3-result-head{align-items:flex-start;flex-direction:column;margin-top:18px;}
}

@media(max-width:640px){
  html,body{overflow-x:hidden;}
  main.container{width:100%!important;padding-left:14px!important;padding-right:14px!important;}
  .tk-choice3-hero{flex-direction:column;gap:12px;}
  .tk-choice3-kicker{display:none;}
  .tk-choice3-hero h1{font-size:42px;line-height:.96;letter-spacing:-.05em;}
  .tk-choice3-hero p{font-size:14px;margin-top:8px;}
  .tk-choice3-mobile-filter{width:100%;min-height:46px;}
  .tk-choice3-filterbar{grid-template-columns:1fr!important;}
  .tk-choice3-filterbar .input{min-height:44px;font-size:16px;}
  .tk-choice3-product-grid.grid{grid-template-columns:1fr!important;gap:12px;}
  .tk-choice3-drawer{width:100vw!important;max-width:100vw;border-radius:0!important;padding:16px;}
  .tk-choice3-drawer .tk-choice3-category-menu{gap:7px;}
  .tk-choice3-drawer .tk-choice3-cat-all,
  .tk-choice3-drawer .tk-choice3-cat-direct,
  .tk-choice3-drawer .tk-choice3-cat-group summary{min-height:48px;}
  .tk-choice3-subcat-list{padding-left:34px;}
}

@media(max-width:420px){
  main.container{padding-left:12px!important;padding-right:12px!important;}
  .tk-choice3-hero h1{font-size:38px;}
  .tk-choice3-filterbar{padding:10px;border-radius:16px;}
  .tk-choice3-result-head strong{font-size:15px;}
  .tk-choice3-drawer{padding:14px;}
  .tk-choice3-cat-name{font-size:14px;}
  .tk-choice3-cat-group summary b,
  .tk-choice3-cat-direct b{min-width:24px;min-height:20px;font-size:10px;}
}

/* === Hotfix 14 Mei H: Choice 3 Sidebar Final Polish ===
   Fix: uneven category buttons, tilted/stray arrows, mobile sidebar leakage.
   This block intentionally overrides earlier Choice 3 rules.
*/
.tk-choice3-catalog,
.tk-choice3-catalog *{box-sizing:border-box!important;}

/* Never allow old global link underline/arrow pseudo elements inside category UI */
.tk-choice3-catalog .tk-choice3-category-menu a::before,
.tk-choice3-catalog .tk-choice3-category-menu a::after,
.tk-choice3-drawer .tk-choice3-category-menu a::before,
.tk-choice3-drawer .tk-choice3-category-menu a::after,
.tk-choice3-catalog .tk-choice3-cat-direct::before,
.tk-choice3-catalog .tk-choice3-cat-direct::after,
.tk-choice3-drawer .tk-choice3-cat-direct::before,
.tk-choice3-drawer .tk-choice3-cat-direct::after{
  content:none!important;
  display:none!important;
  position:static!important;
  width:0!important;
  height:0!important;
  transform:none!important;
  background:transparent!important;
}

.tk-choice3-sidebar-card{
  overflow:hidden!important;
  padding:16px!important;
  border-radius:22px!important;
}
.tk-choice3-category-menu{
  display:flex!important;
  flex-direction:column!important;
  gap:8px!important;
}
.tk-choice3-cat-group{
  display:block!important;
  overflow:visible!important;
  border-radius:16px!important;
}

/* Uniform main category button geometry */
.tk-choice3-cat-all,
.tk-choice3-cat-direct,
.tk-choice3-cat-group > summary{
  position:relative!important;
  display:grid!important;
  grid-template-columns:32px minmax(0,1fr) auto!important;
  align-items:center!important;
  column-gap:10px!important;
  width:100%!important;
  min-width:0!important;
  min-height:52px!important;
  height:52px!important;
  margin:0!important;
  padding:9px 12px!important;
  border:1px solid rgba(15,23,42,.045)!important;
  border-radius:16px!important;
  background:#fff!important;
  box-shadow:0 8px 22px rgba(15,23,42,.035)!important;
  color:#111827!important;
  text-decoration:none!important;
  transform:none!important;
  vertical-align:middle!important;
  cursor:pointer!important;
}
.tk-choice3-cat-group > summary{
  padding-right:42px!important;
  list-style:none!important;
}
.tk-choice3-cat-group > summary::-webkit-details-marker{display:none!important;}

/* Chevron only belongs to expandable <details>, never direct links */
.tk-choice3-cat-group > summary::after{
  content:'›'!important;
  display:inline-flex!important;
  position:absolute!important;
  right:14px!important;
  top:50%!important;
  width:18px!important;
  height:18px!important;
  align-items:center!important;
  justify-content:center!important;
  margin:0!important;
  background:transparent!important;
  color:#6b7280!important;
  font-size:22px!important;
  line-height:1!important;
  transform:translateY(-50%)!important;
  transform-origin:center!important;
  transition:transform .16s ease,color .16s ease!important;
}
.tk-choice3-cat-group[open] > summary::after{
  transform:translateY(-50%) rotate(90deg)!important;
  color:#e31b23!important;
}

.tk-choice3-cat-icon{
  grid-column:1!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:30px!important;
  height:30px!important;
  min-width:30px!important;
  border-radius:11px!important;
  margin:0!important;
  font-size:13px!important;
  line-height:1!important;
  background:#fff!important;
  border:1px solid rgba(15,23,42,.08)!important;
  color:#111827!important;
}
.tk-choice3-cat-name,
.tk-choice3-cat-all > span:not(.tk-choice3-cat-icon){
  grid-column:2!important;
  min-width:0!important;
  display:block!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
  line-height:1.15!important;
  font-size:15px!important;
  font-weight:950!important;
  letter-spacing:-.02em!important;
}
.tk-choice3-cat-group > summary b,
.tk-choice3-cat-direct > b{
  grid-column:3!important;
  justify-self:end!important;
  align-self:center!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:auto!important;
  min-width:28px!important;
  height:22px!important;
  margin:0!important;
  padding:0 8px!important;
  border-radius:999px!important;
  background:#fff1f2!important;
  border:1px solid #ffd7da!important;
  color:#e31b23!important;
  font-size:11px!important;
  font-weight:950!important;
  line-height:1!important;
  white-space:nowrap!important;
}

.tk-choice3-cat-all:hover,
.tk-choice3-cat-direct:hover,
.tk-choice3-cat-group > summary:hover,
.tk-choice3-cat-all.is-active,
.tk-choice3-cat-direct.is-active,
.tk-choice3-cat-group.is-active > summary,
.tk-choice3-cat-group[open] > summary{
  color:#e31b23!important;
  border-color:rgba(227,27,35,.14)!important;
  background:linear-gradient(90deg,#fff2f3,#fff)!important;
  box-shadow:0 10px 26px rgba(227,27,35,.06)!important;
}
.tk-choice3-cat-all:hover .tk-choice3-cat-icon,
.tk-choice3-cat-direct:hover .tk-choice3-cat-icon,
.tk-choice3-cat-group > summary:hover .tk-choice3-cat-icon,
.tk-choice3-cat-all.is-active .tk-choice3-cat-icon,
.tk-choice3-cat-direct.is-active .tk-choice3-cat-icon,
.tk-choice3-cat-group.is-active > summary .tk-choice3-cat-icon,
.tk-choice3-cat-group[open] > summary .tk-choice3-cat-icon{
  color:#e31b23!important;
  border-color:rgba(227,27,35,.2)!important;
  background:#fff7f7!important;
}

/* Clean subcategory stack */
.tk-choice3-subcat-list{
  display:flex!important;
  flex-direction:column!important;
  gap:6px!important;
  margin:8px 0 2px 40px!important;
  padding:0!important;
}
.tk-choice3-subcat{
  position:relative!important;
  display:grid!important;
  grid-template-columns:9px minmax(0,1fr) auto!important;
  align-items:center!important;
  column-gap:9px!important;
  min-height:38px!important;
  height:38px!important;
  margin:0!important;
  padding:7px 10px!important;
  border-radius:13px!important;
  border:1px solid rgba(15,23,42,.055)!important;
  background:#fff!important;
  color:#374151!important;
  text-decoration:none!important;
  box-shadow:none!important;
  transform:none!important;
}
.tk-choice3-subcat::before{
  content:''!important;
  display:block!important;
  grid-column:1!important;
  position:static!important;
  width:6px!important;
  height:6px!important;
  border-radius:999px!important;
  background:#a1a1aa!important;
}
.tk-choice3-subcat span{
  grid-column:2!important;
  min-width:0!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
  font-size:13px!important;
  font-weight:850!important;
  line-height:1.1!important;
}
.tk-choice3-subcat small{
  grid-column:3!important;
  justify-self:end!important;
  font-size:10px!important;
  font-weight:900!important;
  color:#8a8a8a!important;
  white-space:nowrap!important;
}
.tk-choice3-subcat:hover,
.tk-choice3-subcat.is-active{
  color:#e31b23!important;
  background:#fff7f7!important;
  border-color:rgba(227,27,35,.15)!important;
}
.tk-choice3-subcat:hover::before,
.tk-choice3-subcat.is-active::before{background:#e31b23!important;}

/* Layout containment */
.tk-choice3-layout{
  display:grid!important;
  grid-template-columns:300px minmax(0,1fr)!important;
  gap:22px!important;
  align-items:start!important;
  width:100%!important;
  max-width:100%!important;
  overflow:visible!important;
}
.tk-choice3-sidebar{min-width:0!important;max-width:300px!important;}
.tk-choice3-main{min-width:0!important;max-width:100%!important;}

@media(max-width:1180px){
  .tk-choice3-layout{grid-template-columns:272px minmax(0,1fr)!important;gap:16px!important;}
  .tk-choice3-sidebar{max-width:272px!important;}
  .tk-choice3-sidebar-card{padding:14px!important;}
  .tk-choice3-cat-all,
  .tk-choice3-cat-direct,
  .tk-choice3-cat-group > summary{height:50px!important;min-height:50px!important;}
  .tk-choice3-cat-name,
  .tk-choice3-cat-all > span:not(.tk-choice3-cat-icon){font-size:14px!important;}
}

/* Tablet/mobile: sidebar must never appear; drawer only */
@media(max-width:980px){
  .tk-choice3-layout{display:block!important;grid-template-columns:1fr!important;overflow:hidden!important;}
  .tk-choice3-sidebar,
  aside.tk-choice3-sidebar,
  .tk-choice3-sidebar-card{display:none!important;visibility:hidden!important;width:0!important;height:0!important;overflow:hidden!important;margin:0!important;padding:0!important;border:0!important;}
  .tk-choice3-mobile-filter{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:9px!important;}
  .tk-choice3-main{width:100%!important;}
}

@media(max-width:640px){
  .tk-choice3-catalog{width:100%!important;max-width:100%!important;overflow-x:hidden!important;}
  .tk-choice3-hero{display:flex!important;flex-direction:column!important;align-items:stretch!important;gap:12px!important;padding:10px 0 12px!important;}
  .tk-choice3-hero h1{font-size:40px!important;line-height:.96!important;letter-spacing:-.05em!important;}
  .tk-choice3-mobile-filter{width:100%!important;height:48px!important;border-radius:16px!important;font-size:15px!important;}
  .tk-choice3-filterbar{grid-template-columns:1fr!important;padding:12px!important;border-radius:18px!important;gap:10px!important;}
  .tk-choice3-product-grid.grid{grid-template-columns:1fr!important;gap:12px!important;}
  .tk-choice3-drawer{width:100vw!important;max-width:100vw!important;border-radius:0!important;padding:16px!important;}
  .tk-choice3-drawer .tk-choice3-cat-all,
  .tk-choice3-drawer .tk-choice3-cat-direct,
  .tk-choice3-drawer .tk-choice3-cat-group > summary{height:52px!important;min-height:52px!important;}
  .tk-choice3-drawer .tk-choice3-subcat-list{margin-left:38px!important;}
}

/* === Hotfix 14 Mei I: Choice 3 no-icon category + working category search ===
   Purpose:
   - Remove category icons completely.
   - Keep category rows uniform, clean, and text-first.
   - Enable category search on both desktop sidebar and mobile drawer.
*/
.tk-choice3-catalog .tk-choice3-cat-icon,
.tk-choice3-drawer .tk-choice3-cat-icon{
  display:none!important;
  width:0!important;
  min-width:0!important;
  height:0!important;
  opacity:0!important;
  pointer-events:none!important;
}

.tk-choice3-category-search{
  display:block!important;
  width:100%!important;
  margin:12px 0 14px!important;
}
.tk-choice3-category-search input{
  display:block!important;
  width:100%!important;
  height:44px!important;
  min-height:44px!important;
  border:1px solid rgba(15,23,42,.08)!important;
  border-radius:14px!important;
  background:#fff!important;
  box-shadow:0 8px 22px rgba(15,23,42,.035)!important;
  padding:0 13px!important;
  color:#111827!important;
  font-size:14px!important;
  font-weight:800!important;
  outline:none!important;
}
.tk-choice3-category-search input:focus{
  border-color:rgba(227,27,35,.28)!important;
  box-shadow:0 0 0 4px rgba(227,27,35,.06)!important;
}

.tk-choice3-cat-all,
.tk-choice3-cat-direct,
.tk-choice3-cat-group > summary{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  column-gap:10px!important;
  height:50px!important;
  min-height:50px!important;
  padding:9px 12px!important;
}
.tk-choice3-cat-group > summary{
  padding-right:42px!important;
}
.tk-choice3-cat-all > .tk-choice3-cat-name,
.tk-choice3-cat-direct > .tk-choice3-cat-name,
.tk-choice3-cat-group > summary > .tk-choice3-cat-name{
  grid-column:1!important;
  min-width:0!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
  line-height:1.15!important;
  align-self:center!important;
}
.tk-choice3-cat-direct > b,
.tk-choice3-cat-group > summary > b{
  grid-column:2!important;
  align-self:center!important;
  justify-self:end!important;
}
.tk-choice3-cat-all{
  grid-template-columns:minmax(0,1fr)!important;
}
.tk-choice3-cat-all > .tk-choice3-cat-name{
  grid-column:1!important;
}

/* Subcategories are text menu items, not icon/bullet rows. */
.tk-choice3-subcat-list{
  margin:8px 0 2px 12px!important;
  padding-left:10px!important;
  border-left:1px solid rgba(227,27,35,.14)!important;
}
.tk-choice3-subcat{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  min-height:36px!important;
  height:36px!important;
  padding:7px 10px!important;
  column-gap:8px!important;
}
.tk-choice3-subcat::before,
.tk-choice3-subcat::after{
  content:none!important;
  display:none!important;
}
.tk-choice3-subcat span{
  grid-column:1!important;
}
.tk-choice3-subcat small{
  grid-column:2!important;
}

/* Keep mobile drawer consistent with the no-icon layout. */
.tk-choice3-drawer .tk-choice3-category-search{
  margin:0 0 12px!important;
}
.tk-choice3-drawer .tk-choice3-cat-all,
.tk-choice3-drawer .tk-choice3-cat-direct,
.tk-choice3-drawer .tk-choice3-cat-group > summary{
  height:50px!important;
  min-height:50px!important;
}
.tk-choice3-drawer .tk-choice3-subcat-list{
  margin-left:12px!important;
}

@media(max-width:640px){
  .tk-choice3-category-search input{font-size:16px!important;}
  .tk-choice3-cat-all,
  .tk-choice3-cat-direct,
  .tk-choice3-cat-group > summary{
    height:50px!important;
    min-height:50px!important;
  }
}

/* Tokindo admin notification sound + music patch */
.tk-admin-actions .tk-admin-sound-toggle,
.tk-admin-actions .tk-admin-music-toggle{
  min-width:42px;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.tk-admin-actions .tk-admin-sound-toggle.is-active,
.tk-admin-actions .tk-admin-music-toggle.is-active{
  background:linear-gradient(135deg,#fff4ed,#fff);
  border-color:#ffc7b8;
  color:#fb4e30;
  box-shadow:0 10px 24px rgba(251,78,48,.10);
}
.tk-admin-actions .tk-admin-sound-toggle.needs-unlock{
  animation:tkSoundNeedUnlock .72s ease-in-out infinite alternate;
}
@keyframes tkSoundNeedUnlock{
  from{transform:translateY(0) scale(1);box-shadow:0 0 0 rgba(251,78,48,0)}
  to{transform:translateY(-1px) scale(1.04);box-shadow:0 0 0 7px rgba(251,78,48,.10)}
}
.tk-admin-bell-link.is-ringing i{animation:tkAdminBellRing .72s cubic-bezier(.34,1.56,.64,1) 2;transform-origin:50% 0}
@keyframes tkAdminBellRing{
  0%,100%{transform:rotate(0)}
  20%{transform:rotate(18deg)}
  45%{transform:rotate(-15deg)}
  70%{transform:rotate(9deg)}
  88%{transform:rotate(-5deg)}
}
.tk-admin-bell-link.has-dot:after,
.tk-admin-bell-link[data-count]:after{
  content:attr(data-count)!important;
  position:absolute!important;
  top:-7px!important;
  right:-7px!important;
  transform:none!important;
  min-width:18px!important;
  height:18px!important;
  padding:0 5px!important;
  border-radius:999px!important;
  background:#fb4e30!important;
  color:#fff!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  font-size:10px!important;
  font-weight:1000!important;
  box-shadow:0 8px 18px rgba(251,78,48,.28)!important;
}
.tk-admin-bell-link[data-count="0"]:after{display:none!important}
.tk-admin-sound-toast{
  position:fixed;
  right:22px;
  top:92px;
  z-index:100500;
  min-width:260px;
  max-width:min(360px,calc(100vw - 32px));
  padding:14px 16px;
  border-radius:18px;
  background:rgba(17,24,39,.96);
  color:#fff;
  box-shadow:0 24px 70px rgba(15,23,42,.26);
  opacity:0;
  pointer-events:none;
  transform:translateY(-10px) scale(.98);
  transition:opacity .18s ease, transform .18s ease;
}
.tk-admin-sound-toast.is-visible{opacity:1;transform:translateY(0) scale(1)}
.tk-admin-sound-toast strong{display:block;font-size:14px;font-weight:950;margin-bottom:4px}
.tk-admin-sound-toast span{display:block;font-size:12px;line-height:1.45;color:rgba(255,255,255,.78);font-weight:700}
@media(max-width:1280px){
  .tk-admin-actions .tk-admin-sound-toggle span,
  .tk-admin-actions .tk-admin-music-toggle span{display:none}
}
@media(max-width:640px){
  .tk-admin-sound-toast{right:14px;left:14px;top:auto;bottom:18px;max-width:none}
}

/* =========================================================
   PATCH 14 MEI J: Public top menu redesign
   Scope: customer-facing navigation only. Does not touch admin topbar.
   ========================================================= */
.tk-public-nav.nav{
  position:sticky!important;
  top:0!important;
  z-index:12000!important;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,196,0,.24), transparent 28%),
    linear-gradient(90deg,#d71920 0%,#e31f26 48%,#c9151d 100%)!important;
  box-shadow:0 12px 34px rgba(139,0,0,.16)!important;
  border-bottom:1px solid rgba(255,255,255,.18)!important;
  overflow:visible!important;
}

.tk-public-nav .tk-public-nav-inner{
  max-width:1440px!important;
  min-height:72px!important;
  padding:11px 18px!important;
  gap:14px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  overflow:visible!important;
}

.tk-public-nav .brand{
  flex:0 0 auto!important;
  width:154px!important;
  min-width:154px!important;
  height:46px!important;
  padding:7px 12px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:#fff!important;
  border:1px solid rgba(255,255,255,.72)!important;
  border-radius:16px!important;
  box-shadow:0 14px 30px rgba(111,0,0,.16)!important;
  overflow:hidden!important;
  transform:none!important;
  position:static!important;
}

.tk-public-nav .brand img,
.tk-public-nav .brand #apple,
.tk-public-nav #apple{
  width:auto!important;
  height:32px!important;
  max-width:132px!important;
  max-height:32px!important;
  object-fit:contain!important;
  object-position:center!important;
  background:transparent!important;
  border-radius:0!important;
  display:block!important;
  margin:0!important;
}

.tk-public-nav .search{
  flex:1 1 430px!important;
  max-width:460px!important;
  min-width:260px!important;
  height:48px!important;
  display:flex!important;
  align-items:center!important;
  gap:8px!important;
  padding:6px 6px 6px 18px!important;
  border:2px solid #ffcf25!important;
  border-radius:999px!important;
  background:rgba(255,255,255,.98)!important;
  box-shadow:0 12px 30px rgba(116,0,0,.12), inset 0 0 0 1px rgba(255,255,255,.7)!important;
}

.tk-public-nav .search input{
  min-width:0!important;
  width:100%!important;
  border:0!important;
  outline:0!important;
  background:transparent!important;
  color:#111827!important;
  font-size:14px!important;
  font-weight:800!important;
}

.tk-public-nav .search input::placeholder{
  color:#8a5a00!important;
  opacity:.88!important;
}

.tk-public-nav .search .btn,
.tk-public-nav .search button{
  flex:0 0 auto!important;
  height:36px!important;
  min-width:68px!important;
  padding:0 16px!important;
  border-radius:999px!important;
  border:1px solid rgba(226,32,36,.26)!important;
  background:#fff!important;
  color:#d71920!important;
  box-shadow:none!important;
  font-size:13px!important;
  font-weight:950!important;
  letter-spacing:-.01em!important;
  cursor:pointer!important;
}

.tk-public-nav .search button:hover{
  background:#fff6f6!important;
  transform:none!important;
}

.tk-public-nav .nav-links{
  flex:0 0 auto!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:6px!important;
  margin-left:auto!important;
  min-width:0!important;
}

.tk-public-nav .nav-links > a,
.tk-public-nav .nav-links > .tk-nav-dropdown > a,
.tk-public-nav .nav-links .pill{
  height:42px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0 13px!important;
  color:#fff!important;
  background:transparent!important;
  border:1px solid transparent!important;
  border-radius:999px!important;
  font-weight:950!important;
  font-size:14px!important;
  line-height:1!important;
  text-decoration:none!important;
  box-shadow:none!important;
  white-space:nowrap!important;
  transition:background .18s ease, border-color .18s ease, transform .18s ease!important;
}

.tk-public-nav .nav-links > a:hover,
.tk-public-nav .nav-links > .tk-nav-dropdown:hover > a,
.tk-public-nav .nav-links .pill:hover{
  background:rgba(255,255,255,.14)!important;
  border-color:rgba(255,255,255,.18)!important;
  transform:translateY(-1px)!important;
}

.tk-public-nav #cartBtn.tk-nav-cart,
.tk-public-nav .tk-nav-cart{
  height:42px!important;
  min-width:auto!important;
  padding:0 12px!important;
  gap:9px!important;
  border-radius:999px!important;
  background:#fff!important;
  border:1px solid rgba(255,255,255,.8)!important;
  color:#d71920!important;
  box-shadow:0 12px 28px rgba(104,0,0,.16)!important;
  font-weight:950!important;
  text-decoration:none!important;
}

.tk-public-nav #cartBtn.tk-nav-cart:hover,
.tk-public-nav .tk-nav-cart:hover{
  transform:translateY(-1px)!important;
  background:#fff8f8!important;
}

.tk-public-nav #cartCount,
.tk-public-nav #cartCount2{
  min-width:24px!important;
  height:24px!important;
  padding:0 7px!important;
  display:inline-grid!important;
  place-items:center!important;
  border-radius:999px!important;
  background:#d71920!important;
  color:#fff!important;
  font-size:12px!important;
  font-weight:1000!important;
  line-height:1!important;
}

.tk-public-nav .tk-nav-dropdown{
  position:relative!important;
  display:inline-flex!important;
  align-items:center!important;
}

.tk-public-nav .tk-nav-dropdown-menu{
  position:absolute!important;
  top:calc(100% + 13px)!important;
  left:0!important;
  width:min(720px,calc(100vw - 34px))!important;
  max-height:min(70vh,620px)!important;
  overflow:auto!important;
  padding:14px!important;
  display:none!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:10px!important;
  background:rgba(255,255,255,.98)!important;
  border:1px solid rgba(255,193,7,.36)!important;
  border-radius:22px!important;
  box-shadow:0 24px 62px rgba(15,23,42,.16)!important;
  backdrop-filter:blur(14px)!important;
}

.tk-public-nav .tk-nav-dropdown:hover .tk-nav-dropdown-menu,
.tk-public-nav .tk-nav-dropdown:focus-within .tk-nav-dropdown-menu{
  display:grid!important;
}

.tk-public-nav .tk-nav-cat-group{
  border:1px solid rgba(15,23,42,.06)!important;
  border-radius:17px!important;
  background:linear-gradient(180deg,#fff,#fffaf3)!important;
  padding:8px!important;
  min-width:0!important;
}

.tk-public-nav .tk-nav-cat-parent{
  width:100%!important;
  min-height:42px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:10px!important;
  padding:9px 10px!important;
  border:0!important;
  background:transparent!important;
  color:#111827!important;
  font-weight:950!important;
  text-decoration:none!important;
  border-radius:13px!important;
  cursor:pointer!important;
  text-align:left!important;
  font-size:13px!important;
}

.tk-public-nav .tk-nav-cat-parent:hover{
  background:#fff1ec!important;
  color:#e21d2a!important;
}

.tk-public-nav .tk-nav-cat-parent span{
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
}

.tk-public-nav .tk-nav-cat-parent em{
  flex:0 0 auto!important;
  width:22px!important;
  height:22px!important;
  display:grid!important;
  place-items:center!important;
  border-radius:999px!important;
  background:#fff3f3!important;
  color:#e21d2a!important;
  font-size:11px!important;
  font-style:normal!important;
}

.tk-public-nav .tk-nav-cat-sublist{
  display:none!important;
  padding:4px 4px 8px 16px!important;
  gap:6px!important;
}

.tk-public-nav .tk-nav-cat-group.is-open .tk-nav-cat-sublist,
.tk-public-nav .tk-nav-cat-group:hover .tk-nav-cat-sublist{
  display:grid!important;
}

.tk-public-nav .tk-nav-cat-child{
  display:block!important;
  padding:8px 9px!important;
  border-radius:11px!important;
  color:#475569!important;
  text-decoration:none!important;
  font-weight:850!important;
  font-size:13px!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}

.tk-public-nav .tk-nav-cat-child:hover{
  background:#fff3ea!important;
  color:#e21d2a!important;
}

.tk-public-nav .burger{
  border:1px solid rgba(255,255,255,.18)!important;
  border-radius:14px!important;
  background:rgba(255,255,255,.12)!important;
}

.tk-public-nav .burger span{
  background:#fff!important;
  border-radius:999px!important;
}

.tk-public-nav .mobile-cart-btn{display:none!important;}

.tk-public-nav .menu-overlay{
  z-index:12001!important;
  background:rgba(15,23,42,.48)!important;
  backdrop-filter:blur(3px)!important;
}

.tk-public-nav .mobile-menu{
  z-index:12002!important;
  background:#fff!important;
  color:#111827!important;
  box-shadow:-24px 0 60px rgba(15,23,42,.28)!important;
}

.tk-public-nav .mobile-menu-head{
  background:linear-gradient(90deg,#fff,#fff7ef)!important;
  border-bottom:1px solid rgba(255,193,7,.26)!important;
}

.tk-public-nav .mobile-menu-head img{
  width:128px!important;
  height:auto!important;
  max-height:42px!important;
  object-fit:contain!important;
  background:#fff!important;
  border-radius:14px!important;
  padding:5px 8px!important;
}

.tk-public-nav .menu-close{
  background:#fff2f2!important;
  color:#e21d2a!important;
  border:1px solid #ffd3d3!important;
  border-radius:12px!important;
}

.tk-public-nav .mobile-menu-body{
  color:#111827!important;
  background:#fff!important;
  padding:16px!important;
}

.tk-public-nav .mobile-menu-body .pill,
.tk-public-nav .mobile-menu-body .tk-mobile-cat-parent,
.tk-public-nav .mobile-menu-body .tk-mobile-cat-child,
.tk-public-nav .mobile-menu-body .btn{
  width:100%!important;
  min-height:46px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:10px!important;
  margin:0 0 8px!important;
  padding:12px 14px!important;
  border-radius:15px!important;
  border:1px solid rgba(15,23,42,.08)!important;
  background:#fff!important;
  color:#111827!important;
  box-shadow:0 8px 22px rgba(15,23,42,.04)!important;
  text-decoration:none!important;
  font-weight:900!important;
  text-align:left!important;
}

.tk-public-nav .mobile-menu-body .tk-mobile-cat-child{
  width:calc(100% - 18px)!important;
  margin-left:18px!important;
  background:#fff8f3!important;
  color:#475569!important;
  min-height:40px!important;
  font-size:13px!important;
}

.tk-public-nav .mobile-menu-body .tk-mobile-cat-sublist{
  display:none!important;
}
.tk-public-nav .mobile-menu-body .tk-mobile-cat-group.is-open .tk-mobile-cat-sublist{
  display:block!important;
}

.tk-public-nav .mobile-menu-body .tk-nav-cart,
.tk-public-nav .mobile-menu-body .btn{
  background:linear-gradient(135deg,#e31f26,#ff4b2b)!important;
  color:#fff!important;
  border-color:transparent!important;
  justify-content:center!important;
}

@media(max-width:1180px){
  .tk-public-nav .tk-public-nav-inner{gap:10px!important;padding-left:14px!important;padding-right:14px!important;}
  .tk-public-nav .brand{width:142px!important;min-width:142px!important;}
  .tk-public-nav .search{max-width:360px!important;min-width:230px!important;}
  .tk-public-nav .nav-links{gap:3px!important;}
  .tk-public-nav .nav-links > a,
  .tk-public-nav .nav-links > .tk-nav-dropdown > a,
  .tk-public-nav .nav-links .pill{padding-left:10px!important;padding-right:10px!important;font-size:13px!important;}
}

@media(max-width:1024px){
  .tk-public-nav .nav-links a[href="/kontak"],
  .tk-public-nav .nav-links a[href="/login"],
  .tk-public-nav .nav-links a[href="/account"],
  .tk-public-nav .nav-links a[href="/admin"]{display:none!important;}
}

@media(max-width:900px){
  .tk-public-nav .tk-public-nav-inner{
    min-height:auto!important;
    height:auto!important;
    padding:8px 10px 10px!important;
    display:grid!important;
    grid-template-columns:44px minmax(0,1fr) auto!important;
    grid-template-areas:
      "burger brand cart"
      "search search search"!important;
    gap:8px!important;
  }
  .tk-public-nav .burger{
    grid-area:burger!important;
    display:inline-flex!important;
    width:42px!important;
    height:42px!important;
    flex:0 0 42px!important;
    margin:0!important;
  }
  .tk-public-nav .brand{
    grid-area:brand!important;
    position:static!important;
    transform:none!important;
    left:auto!important;
    width:136px!important;
    min-width:0!important;
    max-width:155px!important;
    height:42px!important;
    justify-self:start!important;
    padding:6px 10px!important;
    overflow:hidden!important;
  }
  .tk-public-nav .brand img,
  .tk-public-nav .brand #apple,
  .tk-public-nav #apple{
    width:auto!important;
    max-width:118px!important;
    height:29px!important;
    max-height:29px!important;
    object-fit:contain!important;
    object-position:center!important;
  }
  .tk-public-nav .search{
    grid-area:search!important;
    width:100%!important;
    max-width:none!important;
    min-width:0!important;
    height:44px!important;
    flex:1 1 auto!important;
    padding:5px 6px 5px 14px!important;
  }
  .tk-public-nav .search input{font-size:13px!important;}
  .tk-public-nav .search button{height:32px!important;min-width:60px!important;padding:0 12px!important;}
  .tk-public-nav .nav-links{display:none!important;}
  .tk-public-nav .mobile-cart-btn{
    grid-area:cart!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:8px!important;
    height:42px!important;
    min-width:92px!important;
    padding:0 12px!important;
    border-radius:14px!important;
    background:#fff!important;
    color:#d71920!important;
    font-weight:950!important;
    text-decoration:none!important;
    box-shadow:0 10px 24px rgba(116,0,0,.14)!important;
  }
  .tk-public-nav .mobile-cart-btn b{
    min-width:23px!important;
    height:23px!important;
    display:grid!important;
    place-items:center!important;
    border-radius:999px!important;
    background:#d71920!important;
    color:#fff!important;
    font-size:12px!important;
  }
  .search-label-desktop{display:none!important;}
  .search-label-mobile{display:inline!important;}
}

@media(max-width:390px){
  .tk-public-nav .tk-public-nav-inner{
    grid-template-columns:42px minmax(0,1fr) 52px!important;
    gap:7px!important;
  }
  .tk-public-nav .brand{width:126px!important;max-width:126px!important;padding-left:8px!important;padding-right:8px!important;}
  .tk-public-nav .brand img,
  .tk-public-nav .brand #apple,
  .tk-public-nav #apple{max-width:108px!important;}
  .tk-public-nav .mobile-cart-btn{
    min-width:52px!important;
    padding:0!important;
  }
  .tk-public-nav .mobile-cart-btn span{display:none!important;}
}

/* Tokindo patch: Shopee-style homepage flash sale replacing trust cards */
.bdx-home-flash{
  width:min(1480px, calc(100% - 32px));
  margin:54px auto 30px;
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(135deg,#ff4d2d 0%,#ff7a00 46%,#ffb300 100%);
  box-shadow:0 24px 70px rgba(255,77,45,.22);
  border:1px solid rgba(255,255,255,.45);
}
.bdx-home-flash__head{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto auto;
  align-items:center;
  gap:14px;
  padding:18px 22px;
  color:#fff;
}
.bdx-home-flash__brand{display:flex;align-items:center;gap:12px;min-width:0}.bdx-home-flash__brand span{display:inline-flex;align-items:center;border-radius:999px;background:#111;color:#fff;padding:8px 12px;font-weight:1000;letter-spacing:.08em;font-size:12px}.bdx-home-flash__brand b{font-size:clamp(22px,2.4vw,38px);font-weight:1000;letter-spacing:-.04em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bdx-home-flash__timer{display:flex;align-items:center;gap:9px;background:rgba(17,17,17,.88);border:1px solid rgba(255,255,255,.18);border-radius:999px;padding:8px 13px;box-shadow:inset 0 1px 0 rgba(255,255,255,.16)}.bdx-home-flash__timer small{font-size:11px;text-transform:uppercase;letter-spacing:.08em;color:#ffd8cb;font-weight:1000}.bdx-home-flash__timer strong{font-variant-numeric:tabular-nums;font-size:16px;letter-spacing:.08em}.bdx-home-flash__more{justify-self:end;background:#fff;color:#ff4d2d;border-radius:999px;padding:10px 14px;font-weight:1000;box-shadow:0 10px 22px rgba(0,0,0,.12);white-space:nowrap}.bdx-home-flash__rail{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(160px, 1fr);gap:12px;overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x mandatory;padding:0 18px 20px}.bdx-home-flash-card{position:relative;scroll-snap-align:start;min-height:274px;border-radius:22px;background:#fff;display:flex;flex-direction:column;gap:7px;padding:12px;box-shadow:0 16px 36px rgba(17,24,39,.14);border:1px solid rgba(255,255,255,.7);transition:transform .18s ease, box-shadow .18s ease}.bdx-home-flash-card:hover{transform:translateY(-3px);box-shadow:0 22px 50px rgba(17,24,39,.2)}.bdx-home-flash-card em{position:absolute;z-index:2;top:10px;right:10px;background:#ff4d2d;color:#fff;border-radius:999px;padding:6px 9px;font-style:normal;font-weight:1000;font-size:12px;box-shadow:0 10px 18px rgba(255,77,45,.28)}.bdx-home-flash-card__img{height:128px;border-radius:18px;display:grid;place-items:center;background:linear-gradient(180deg,#fff7ed,#fff);overflow:hidden}.bdx-home-flash-card__img img{width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 14px 18px rgba(0,0,0,.12))}.bdx-home-flash-card b{font-size:14px;line-height:1.25;min-height:36px;color:#111;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.bdx-home-flash-card strong{font-size:18px;color:#ff1f1f;font-weight:1000}.bdx-home-flash-card small{color:#9ca3af;text-decoration:line-through;font-weight:800}.bdx-home-flash-card span{margin-top:auto;display:block;text-align:center;border-radius:999px;background:#fff1f2;color:#ff4d2d;padding:8px 10px;font-weight:1000;font-size:12px}.bdx-home-flash__rail::-webkit-scrollbar{height:8px}.bdx-home-flash__rail::-webkit-scrollbar-thumb{background:rgba(255,255,255,.55);border-radius:999px}
@media (max-width: 860px){
  .bdx-home-flash{width:calc(100% - 24px);margin-top:34px;border-radius:24px}.bdx-home-flash__head{grid-template-columns:1fr auto;padding:15px}.bdx-home-flash__brand{grid-column:1/-1}.bdx-home-flash__brand b{white-space:normal}.bdx-home-flash__more{padding:9px 12px}.bdx-home-flash__rail{grid-auto-columns:44%;padding:0 12px 16px}.bdx-home-flash-card{min-height:252px}.bdx-home-flash-card__img{height:112px}
}
@media (max-width: 520px){
  .bdx-home-flash__head{grid-template-columns:1fr}.bdx-home-flash__timer,.bdx-home-flash__more{justify-self:start}.bdx-home-flash__rail{grid-auto-columns:68%}.bdx-home-flash-card b{font-size:13px}.bdx-home-flash-card strong{font-size:16px}
}

/* Tokindo patch: flash sale replaces old trust section cleanly */
.bdx-home-flash__empty{margin:0 18px 20px;border-radius:24px;background:rgba(255,255,255,.92);padding:24px;display:flex;align-items:center;justify-content:space-between;gap:14px;box-shadow:0 14px 32px rgba(17,24,39,.12)}
.bdx-home-flash__empty b{font-size:20px;font-weight:1000;color:#111827}.bdx-home-flash__empty span{color:#64748b;font-weight:800;line-height:1.45}.bdx-home-flash__empty a{border-radius:999px;background:#111827;color:#fff;padding:10px 14px;font-weight:1000;white-space:nowrap}.bdx-home-flash.is-upcoming .bdx-home-flash__timer{background:rgba(255,255,255,.92);color:#111827}.bdx-home-flash.is-upcoming .bdx-home-flash__timer small{color:#ff4d2d}.bdx-home-flash-card.is-upcoming span{background:#fff7ed;color:#c2410c}
@media(max-width:700px){.bdx-home-flash__empty{margin:0 12px 16px;display:block}.bdx-home-flash__empty span{display:block;margin:7px 0 14px}.bdx-home-flash__empty a{display:inline-flex}}

/* Tokindo patch: verified customer reviews, order received flow, homepage review carousel */
.tk-order-history-panel{overflow:hidden}
.tk-order-review-list{display:grid;gap:18px}
.tk-order-review-card{display:block;padding:0!important;border:1px solid rgba(226,232,240,.96);overflow:hidden;background:linear-gradient(180deg,#fff,#fffaf2)}
.tk-order-review-head{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;padding:18px;border-bottom:1px solid rgba(226,232,240,.85)}
.tk-order-review-head strong{display:block;font-size:17px;font-weight:1000;color:#0f172a}
.tk-order-review-head small{display:block;margin-top:5px;color:#64748b;font-weight:800;line-height:1.5}
.tk-order-review-actions{display:flex;align-items:center;justify-content:flex-end;gap:10px;flex-wrap:wrap;text-align:right}
.tk-order-review-actions b{font-size:16px;color:#0f172a}
.tk-received-badge,.tk-review-done-badge{display:inline-flex;align-items:center;gap:6px;border-radius:999px;padding:8px 12px;font-size:12px;font-weight:1000;background:#ecfdf5;color:#047857;border:1px solid rgba(16,185,129,.22)}
.tk-review-done-badge{background:#fff7ed;color:#c2410c;border-color:rgba(251,146,60,.25)}
.tk-order-items-review{display:grid;gap:14px;padding:16px;background:#f8fafc}
.tk-order-item-review-card,.tk-seller-review-card{border:1px solid rgba(226,232,240,.96);border-radius:22px;background:#fff;padding:16px;box-shadow:0 12px 30px rgba(15,23,42,.04)}
.tk-seller-review-card{margin:0 16px 16px;background:linear-gradient(135deg,#fff7ed,#fff)}
.tk-order-item-review-title{display:flex;justify-content:space-between;gap:12px;align-items:flex-start;margin-bottom:12px}
.tk-order-item-review-title strong{display:block;color:#111827;font-weight:1000;font-size:15px}
.tk-order-item-review-title small{display:block;color:#64748b;font-weight:800;margin-top:4px;line-height:1.45}
.tk-mini-review-form{display:grid;grid-template-columns:180px minmax(180px,1fr) minmax(220px,1.4fr);gap:12px;align-items:start}
.tk-mini-review-form label{display:grid;gap:6px;color:#334155;font-size:12px;font-weight:1000}
.tk-mini-review-form label span{color:#ef3b20;font-size:11px;text-transform:uppercase;letter-spacing:.05em}
.tk-mini-review-form .input{width:100%}
.tk-mini-review-form small{color:#64748b;font-size:11px;font-weight:800;line-height:1.45}
.tk-mini-review-form .tk-review-textarea{grid-column:1 / -1}
.tk-mini-review-form textarea{min-height:96px;resize:vertical}
.tk-mini-review-form button{justify-self:start}
.tk-review-thumb{width:92px;height:92px;object-fit:cover;border-radius:18px;border:1px solid rgba(226,232,240,.9);box-shadow:0 10px 24px rgba(15,23,42,.08)}
.tk-review-locked{margin:0;color:#64748b;background:#f8fafc;border:1px dashed rgba(148,163,184,.65);border-radius:16px;padding:12px;font-weight:800;line-height:1.5}
.tk-empty.small{padding:10px;font-size:13px}

.bdx-review-carousel{position:relative;overflow:hidden;background:linear-gradient(180deg,#fff,#fffdf8);padding-top:54px;padding-bottom:56px}
.bdx-review-carousel-shell{position:relative;width:min(1320px,calc(100% - 36px));margin:0 auto}
.bdx-review-stage{position:relative;min-height:470px}
.bdx-review-slide{display:none;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;animation:bdxReviewIn .28s ease both}
.bdx-review-slide.is-active{display:grid}
@keyframes bdxReviewIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
.bdx-review-card-v2{position:relative;display:grid;grid-template-rows:auto auto auto 1fr auto;min-height:218px;border:1px solid rgba(226,232,240,.96);border-radius:24px;background:#fff;padding:16px;box-shadow:0 18px 50px rgba(15,23,42,.06);overflow:hidden}
.bdx-review-card-v2::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 88% 5%,rgba(255,196,0,.2),transparent 34%);pointer-events:none}
.bdx-review-photo{position:relative;width:100%;height:132px;object-fit:cover;border-radius:18px;background:#f8fafc;margin-bottom:12px;border:1px solid rgba(226,232,240,.88)}
.bdx-review-photo--empty{display:grid;place-items:center;background:linear-gradient(135deg,#fff7ed,#fef3c7);font-size:32px;color:#f59e0b;font-weight:1000}
.bdx-review-stars{position:relative;color:#f59e0b;font-weight:1000;letter-spacing:1px;font-size:14px;margin-bottom:6px}
.bdx-review-card-v2 h3{position:relative;margin:0 0 7px;font-size:16px;line-height:1.18;color:#0f172a;font-weight:1000;letter-spacing:-.03em}
.bdx-review-card-v2 p{position:relative;margin:0;color:#475569;line-height:1.55;font-weight:800;font-size:13px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.bdx-review-card-v2 footer{position:relative;margin-top:13px;display:flex;align-items:flex-start;justify-content:space-between;gap:10px;border-top:1px solid rgba(226,232,240,.8);padding-top:12px}
.bdx-review-card-v2 footer b{display:block;color:#0f172a;font-size:13px;font-weight:1000}
.bdx-review-card-v2 footer span{display:block;text-align:right;color:#64748b;font-size:12px;font-weight:900;max-width:50%}
.bdx-review-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:4;width:46px;height:46px;border-radius:999px;border:1px solid rgba(226,232,240,.95);background:#111827;color:#fff;font-size:34px;line-height:1;display:grid;place-items:center;cursor:pointer;box-shadow:0 18px 36px rgba(15,23,42,.18);transition:.18s ease}
.bdx-review-arrow:hover{transform:translateY(-50%) scale(1.05);background:#ef3b20}
.bdx-review-prev{left:-18px}.bdx-review-next{right:-18px}
.bdx-review-dots{display:flex;justify-content:center;gap:8px;margin-top:18px}
.bdx-review-dots button{width:9px;height:9px;border:0;border-radius:999px;background:#cbd5e1;cursor:pointer;transition:.2s ease}.bdx-review-dots button.is-active{width:28px;background:#ef3b20}
.review-photo{width:100%;height:210px;object-fit:cover;border-radius:20px;margin:0 0 16px;border:1px solid rgba(226,232,240,.95);box-shadow:0 14px 32px rgba(15,23,42,.08)}

@media(max-width:1100px){
  .tk-mini-review-form{grid-template-columns:1fr 1fr}
  .tk-mini-review-form .tk-review-textarea{grid-column:1 / -1}
  .bdx-review-slide{grid-template-columns:repeat(2,minmax(0,1fr))}
  .bdx-review-stage{min-height:700px}
}
@media(max-width:720px){
  .tk-order-review-head,.tk-order-item-review-title{flex-direction:column;align-items:stretch}
  .tk-order-review-actions{justify-content:flex-start;text-align:left}
  .tk-mini-review-form{grid-template-columns:1fr}
  .tk-mini-review-form .tk-review-textarea{grid-column:auto}
  .tk-seller-review-card{margin:0 12px 12px}
  .tk-order-items-review{padding:12px}
  .bdx-review-carousel{padding-top:36px;padding-bottom:42px}
  .bdx-review-carousel-shell{width:min(100% - 24px,620px)}
  .bdx-review-slide{grid-template-columns:1fr;gap:14px}
  .bdx-review-stage{min-height:1440px}
  .bdx-review-card-v2{min-height:0;padding:14px;border-radius:20px}
  .bdx-review-photo{height:150px}
  .bdx-review-prev{left:4px}.bdx-review-next{right:4px}
  .bdx-review-arrow{top:32px;width:40px;height:40px;font-size:28px;background:rgba(15,23,42,.92)}
  .bdx-review-card-v2 footer span{text-align:left;max-width:none}
}

/* Tokindo patch: richer public testimoni + stricter review unlock state */
.tk-waiting-shipment-badge{display:inline-flex;align-items:center;gap:6px;border-radius:999px;padding:8px 12px;font-size:12px;font-weight:1000;background:#f8fafc;color:#64748b;border:1px solid rgba(148,163,184,.35)}
.tk-order-item-title-media{display:flex;align-items:center;gap:12px;min-width:0}.tk-order-item-title-media img{width:58px;height:58px;border-radius:14px;object-fit:cover;border:1px solid rgba(226,232,240,.95);background:#fff}.tk-order-item-title-media>div{min-width:0}.tk-order-item-title-media strong{overflow-wrap:anywhere}
.review-grid--rich{align-items:stretch}.review-card--rich{padding:0;overflow:hidden;border-color:rgba(226,232,240,.95);background:linear-gradient(180deg,#fff,#fffdf7)}.review-product-media{position:relative;margin:0;background:linear-gradient(135deg,#fff7ed,#fff);border-bottom:1px solid rgba(226,232,240,.92)}.review-product-image{width:100%;height:214px;display:block;object-fit:cover;background:#f8fafc}.review-product-image--empty{display:grid;place-items:center;color:#94a3b8;font-weight:1000;font-size:18px}.review-buyer-photo{position:absolute;right:18px;bottom:-28px;width:68px;height:68px;border-radius:22px;border:4px solid #fff;overflow:hidden;background:linear-gradient(135deg,#ff4d2d,#ffc400);display:grid;place-items:center;box-shadow:0 14px 32px rgba(15,23,42,.18)}.review-buyer-photo img{width:100%;height:100%;object-fit:cover}.review-buyer-photo span{font-size:26px;font-weight:1000;color:#fff}.review-card__head--rich{padding:38px 20px 0}.review-card--rich .review-highlight,.review-card--rich .review-content{padding-left:20px;padding-right:20px}.review-card--rich .review-highlight{margin-top:16px}.review-card__foot--rich{margin:18px 20px 20px;display:flex;align-items:center;justify-content:space-between;gap:12px}.review-card__foot--rich b{display:inline-flex;border-radius:999px;padding:7px 10px;background:#fff7ed;color:#ea580c;font-size:12px;font-weight:1000}.review-card__foot--rich div{display:grid;gap:4px}
@media(max-width:900px){.review-product-image{height:190px}.review-card__head--rich{display:grid}.review-buyer-photo{width:62px;height:62px;border-radius:20px}}
@media(max-width:560px){.review-product-image{height:170px}.review-card__head--rich{padding:34px 16px 0}.review-card--rich .review-highlight,.review-card--rich .review-content{padding-left:16px;padding-right:16px}.review-card__foot--rich{margin:16px}.review-buyer-photo{right:14px}}

/* Tokindo patch: customer reviews are final after submit; admin-only edit */
.tk-review-final-card{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;border:1px solid rgba(34,197,94,.24);border-radius:20px;background:linear-gradient(135deg,#f0fdf4,#ffffff);padding:14px;box-shadow:0 10px 28px rgba(15,23,42,.045)}
.tk-review-final-card--seller{background:linear-gradient(135deg,#fff7ed,#ffffff);border-color:rgba(251,146,60,.26)}
.tk-review-final-card>div{min-width:0;display:grid;gap:6px}
.tk-review-final-label{display:inline-flex;width:max-content;border-radius:999px;background:#dcfce7;color:#047857;padding:5px 9px;font-size:10px;font-weight:1000;text-transform:uppercase;letter-spacing:.07em}
.tk-review-final-card--seller .tk-review-final-label{background:#ffedd5;color:#c2410c}
.tk-review-final-card strong{font-size:15px;color:#f59e0b;letter-spacing:1px;font-weight:1000}
.tk-review-final-card strong em{font-style:normal;color:#64748b;font-size:12px;letter-spacing:0;margin-left:4px}
.tk-review-final-card b{display:block;color:#111827;font-size:14px;font-weight:1000}
.tk-review-final-card p{margin:0;color:#475569;font-weight:800;line-height:1.55;white-space:normal}
.tk-review-final-card small{color:#64748b;font-weight:900;line-height:1.45}
.tk-review-final-card .tk-review-thumb{flex:0 0 auto}
@media(max-width:680px){.tk-review-final-card{display:grid}.tk-review-final-card .tk-review-thumb{width:100%;height:180px}}

/* Tokindo patch: global responsive hardening audit - prevents mobile clipping */
html,body{max-width:100%;overflow-x:hidden}
*,*::before,*::after{box-sizing:border-box}
img,svg,video,canvas,iframe{max-width:100%}
iframe{border:0}
input,select,textarea,button{max-width:100%;font-size:16px}
button,a,[role="button"]{touch-action:manipulation}
.tk-container,.container,.wrap,.section,.tk-section,.tk-page,.tk-block,.tk-admin-card{min-width:0}
.tk-table-wrap,.table-wrap,.responsive-table{max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}
.tk-card,.card,.product-card,.review-card,[class*="grid"]>*{min-width:0}
.tk-public-nav,.tk-public-nav *{min-width:0}

@media(max-width:900px){
  .tk-grid,.products-grid,.review-grid,.catalog-grid,.footer-grid,.tk-form-grid,.tk-payment-layout,.tk-checkout-grid{grid-template-columns:1fr!important}
  .tk-section,.section,.tk-block{padding-left:16px!important;padding-right:16px!important}
  h1{font-size:clamp(30px,9vw,48px)!important;line-height:1.05!important;overflow-wrap:anywhere}
  h2{font-size:clamp(24px,7vw,38px)!important;line-height:1.1!important;overflow-wrap:anywhere}
  .btn,.button,.tk-btn,.tk-admin-submit{white-space:normal;text-align:center}
}

@media(max-width:560px){
  body{font-size:15px}
  .hide-mobile{display:none!important}
  .tk-card,.card,.tk-block,.tk-admin-card{border-radius:18px!important}
  input,select,textarea{min-height:44px}
  .tk-public-nav{position:sticky;top:0;z-index:1000}
}

/* =========================================================
   Tokindo global mobile overflow hardening - 21 May
   Prevent clipped public pages / filters / nav on small screens.
   ========================================================= */
html,body{max-width:100%!important;overflow-x:hidden!important}
body *{box-sizing:border-box}
img,svg,video,canvas,iframe{max-width:100%}
.main,.page,.container,.section,.content,.wrap,.shell,[class*="container"],[class*="wrapper"],[class*="shell"]{max-width:100%;min-width:0}
.tk-choice3-catalog,.tk-choice3-catalog *, .tk-catalog-filter-form--native-cat,.tk-catalog-filter-form--menu-cat{min-width:0!important;max-width:100%!important}
@media(max-width:900px){
  .nav{width:100%!important;max-width:100vw!important;overflow:hidden!important}
  .nav-inner{width:100%!important;max-width:100vw!important;grid-template-columns:none!important;min-width:0!important;overflow:hidden!important}
  .nav-inner>.burger{flex:0 0 40px!important;min-width:40px!important}
  .nav-inner>.brand{flex:0 0 118px!important;width:118px!important;min-width:0!important;max-width:118px!important;border-radius:14px!important;background:#fff!important;overflow:hidden!important;justify-content:flex-start!important;padding:0 8px!important}
  .nav-inner>.brand img,.nav-inner>.brand #apple,#apple{width:100%!important;max-width:102px!important;height:34px!important;object-fit:contain!important;object-position:left center!important;border-radius:0!important;background:transparent!important}
  .nav-inner>.search{flex:1 1 0!important;min-width:0!important;width:auto!important;max-width:100%!important}
  .nav-inner>.search input{min-width:0!important;width:100%!important;max-width:100%!important}
  .mobile-cart-btn{flex:0 0 auto!important;max-width:118px!important;overflow:hidden!important;white-space:nowrap!important}
}
@media(max-width:520px){
  .nav-inner{padding-left:8px!important;padding-right:8px!important;gap:7px!important;height:auto!important;min-height:60px!important;flex-wrap:wrap!important;align-content:center!important}
  .nav-inner>.burger{order:0!important}
  .nav-inner>.brand{order:1!important;flex:1 1 calc(100% - 96px)!important;max-width:none!important;height:40px!important}
  .mobile-cart-btn{order:2!important;height:40px!important;max-width:none!important;padding:0 10px!important}
  .nav-inner>.search{order:3!important;flex:1 0 100%!important;width:100%!important;height:42px!important;margin-top:4px!important}
  .mobile-menu,.mobile-menu.open{width:100%!important;max-width:100vw!important;left:0!important;right:auto!important;overflow-x:hidden!important}
  .catalog,.tk-choice3-catalog,.products,.section{width:100%!important;max-width:100vw!important;overflow-x:hidden!important}
  .card,.product,.product-card,.tk-card,.filter-card,[class*="filter"],[class*="panel"]{max-width:100%!important;min-width:0!important}
  input,select,textarea,button{max-width:100%!important}
}
@media(max-width:380px){
  .nav-inner>.brand{flex-basis:calc(100% - 88px)!important}
  .mobile-cart-btn span{display:none!important}
}

/* =========================================================
   TOKINDO FINAL RESPONSIVE GUARD - Public + Catalog + Account
   Fix target: mobile cut/overflow on homepage, product pages, catalog,
   and customer member area. Keep at END of app.css for override priority.
   ========================================================= */
html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden!important;
}
body,
body *{
  min-width:0;
}
img,
svg,
video,
canvas,
iframe,
embed,
object{
  max-width:100%;
}
iframe{
  border:0;
}
table{
  max-width:100%;
}
.section,
.card,
.grid,
.row,
.hero-grid,
.tk-choice3-catalog,
.tk-choice3-layout,
.tk-choice3-main,
.tk-member-shopee,
.tk-member-shell,
.tk-member-main,
.tk-account-panel,
.tk-order-review-card,
.tk-order-item-review-card,
.tk-seller-review-card{
  min-width:0!important;
  max-width:100%!important;
}

@media(max-width:900px){
  .container,
  main.container,
  .nav .container,
  .footer .container,
  .tk-public-nav .container,
  .tk-public-nav-inner{
    width:100%!important;
    max-width:100%!important;
    margin-left:0!important;
    margin-right:0!important;
    padding-left:12px!important;
    padding-right:12px!important;
  }

  main.container{
    padding-top:0!important;
  }

  .tk-public-nav{
    width:100%!important;
    max-width:100%!important;
    left:0!important;
    right:0!important;
    overflow:hidden!important;
  }

  .tk-public-nav .tk-public-nav-inner{
    grid-template-columns:42px minmax(0,1fr) auto!important;
    grid-template-areas:"burger brand cart" "search search search"!important;
    gap:8px!important;
    padding:8px 10px 10px!important;
  }

  .tk-public-nav .brand{
    width:auto!important;
    max-width:min(145px,42vw)!important;
    min-width:0!important;
    justify-self:start!important;
  }

  .tk-public-nav .brand img,
  .tk-public-nav .brand #apple,
  .tk-public-nav #apple{
    width:auto!important;
    max-width:min(120px,36vw)!important;
    height:28px!important;
    max-height:28px!important;
    object-fit:contain!important;
  }

  .tk-public-nav .mobile-cart-btn{
    min-width:0!important;
    max-width:118px!important;
    height:42px!important;
    padding:0 10px!important;
    white-space:nowrap!important;
    overflow:hidden!important;
  }

  .tk-public-nav .mobile-cart-btn span{
    max-width:76px!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }

  .tk-public-nav .search{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    margin:0!important;
    border-radius:999px!important;
    overflow:hidden!important;
  }

  .tk-public-nav .search input{
    min-width:0!important;
    width:100%!important;
    font-size:14px!important;
  }

  .tk-public-nav .search .btn,
  .tk-public-nav .search button{
    flex:0 0 auto!important;
    min-width:62px!important;
    max-width:86px!important;
    padding-left:10px!important;
    padding-right:10px!important;
    height:34px!important;
    border-radius:999px!important;
    font-size:12px!important;
  }

  .mobile-menu{
    width:min(88vw,360px)!important;
    max-width:100vw!important;
  }

  .mobile-menu-body,
  .mobile-menu-head{
    max-width:100%!important;
    overflow-x:hidden!important;
  }
}

@media(max-width:480px){
  .container,
  main.container,
  .nav .container,
  .footer .container,
  .tk-public-nav .container,
  .tk-public-nav-inner{
    padding-left:10px!important;
    padding-right:10px!important;
  }

  .tk-public-nav .tk-public-nav-inner{
    grid-template-columns:40px minmax(0,1fr) 54px!important;
    gap:7px!important;
  }

  .tk-public-nav .burger{
    width:40px!important;
    height:40px!important;
  }

  .tk-public-nav .brand{
    max-width:126px!important;
    height:40px!important;
    padding:5px 8px!important;
  }

  .tk-public-nav .brand img,
  .tk-public-nav .brand #apple,
  .tk-public-nav #apple{
    max-width:105px!important;
    height:26px!important;
  }

  .tk-public-nav .mobile-cart-btn{
    width:54px!important;
    max-width:54px!important;
    padding:0!important;
  }

  .tk-public-nav .mobile-cart-btn span{
    display:none!important;
  }

  .tk-public-nav .search{
    height:42px!important;
    padding:4px 5px 4px 12px!important;
  }

  .tk-public-nav .search button{
    min-width:56px!important;
    max-width:62px!important;
    padding:0 8px!important;
    font-size:11px!important;
  }
}

/* Catalog/product listing: prevent sidebar/filter/card overflow on mobile */
@media(max-width:900px){
  .tk-choice3-catalog{
    width:100%!important;
    padding-left:0!important;
    padding-right:0!important;
    overflow-x:hidden!important;
  }

  .tk-choice3-hero,
  .tk-choice3-filterbar,
  .tk-choice3-result-head,
  .tk-choice3-product-grid{
    width:100%!important;
    max-width:100%!important;
  }

  .tk-choice3-hero{
    padding-top:14px!important;
    padding-bottom:12px!important;
  }

  .tk-choice3-hero h1{
    font-size:clamp(32px,11vw,44px)!important;
    line-height:1!important;
    letter-spacing:-.04em!important;
    overflow-wrap:anywhere!important;
  }

  .tk-choice3-hero p{
    font-size:14px!important;
    line-height:1.45!important;
    overflow-wrap:anywhere!important;
  }

  .tk-choice3-layout{
    display:block!important;
    width:100%!important;
    overflow:visible!important;
  }

  .tk-choice3-sidebar,
  aside.tk-choice3-sidebar,
  .tk-choice3-sidebar-card{
    display:none!important;
  }

  .tk-choice3-main{
    width:100%!important;
  }

  .tk-choice3-filterbar{
    grid-template-columns:1fr!important;
    gap:10px!important;
    padding:12px!important;
    border-radius:18px!important;
  }

  .tk-choice3-filterbar label,
  .tk-choice3-filterbar .input,
  .tk-choice3-filterbar select,
  .tk-choice3-filterbar input,
  .tk-choice3-filterbar .btn,
  .tk-choice3-apply,
  .tk-choice3-reset{
    width:100%!important;
    max-width:100%!important;
  }

  .tk-choice3-result-head{
    align-items:flex-start!important;
    flex-direction:column!important;
    gap:8px!important;
  }

  .tk-choice3-sort-note{
    max-width:100%!important;
    overflow-wrap:anywhere!important;
  }
}

@media(max-width:640px){
  .tk-choice3-product-grid.grid,
  .grid.tk-choice3-product-grid,
  .product-grid,
  .grid{
    grid-template-columns:1fr!important;
  }

  .product-card,
  .tk-product-card,
  .bdx-product-card,
  .card{
    max-width:100%!important;
  }

  .tk-choice3-drawer{
    width:100vw!important;
    max-width:100vw!important;
    right:0!important;
    left:auto!important;
    border-radius:0!important;
  }
}

/* Customer/member area: force safe card layout */
@media(max-width:1100px){
  .tk-member-shopee{
    width:100%!important;
    overflow-x:hidden!important;
  }

  .tk-member-shell{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:14px!important;
    width:100%!important;
    padding-left:0!important;
    padding-right:0!important;
  }

  .tk-member-sidebar{
    position:relative!important;
    top:auto!important;
    width:100%!important;
    max-width:100%!important;
  }

  .tk-member-sidebar nav{
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:8px!important;
  }

  .tk-member-sidebar nav a,
  .tk-member-logout{
    min-width:0!important;
    justify-content:center!important;
    text-align:center!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
  }
}

@media(max-width:700px){
  .tk-account-page.tk-member-shopee{
    padding-top:14px!important;
    padding-bottom:38px!important;
  }

  .tk-member-sidebar,
  .tk-account-panel,
  .tk-account-hero,
  .tk-order-review-card,
  .tk-order-item-review-card,
  .tk-seller-review-card{
    border-radius:18px!important;
  }

  .tk-member-sidebar{
    padding:12px!important;
  }

  .tk-member-sidebar nav{
    grid-template-columns:1fr 1fr!important;
  }

  .tk-member-sidebar nav a,
  .tk-member-logout{
    padding:10px 8px!important;
    font-size:12px!important;
  }

  .tk-account-hero,
  .tk-panel-head,
  .tk-address-card-v2,
  .tk-order-card-v2,
  .tk-affiliate-public-card,
  .tk-order-review-head,
  .tk-order-item-review-title{
    display:flex!important;
    flex-direction:column!important;
    align-items:stretch!important;
    text-align:left!important;
  }

  .tk-account-hero{
    padding:18px!important;
  }

  .tk-account-hero h1{
    font-size:28px!important;
    line-height:1.05!important;
  }

  .tk-member-tier-card{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    text-align:left!important;
  }

  .tk-member-kpis,
  .tk-affiliate-mini-grid,
  .tk-shopee-form,
  .tk-address-form{
    grid-template-columns:1fr!important;
  }

  .tk-account-panel{
    padding:14px!important;
  }

  .tk-panel-head{
    gap:10px!important;
  }

  .tk-panel-head .btn,
  .tk-form-actions,
  .tk-form-actions .btn{
    width:100%!important;
  }

  .tk-affiliate-public-card code,
  .tk-address-card-v2 p,
  .tk-address-card-v2 small,
  .tk-order-review-head small,
  .tk-review-final-card p,
  .tk-review-final-card small{
    overflow-wrap:anywhere!important;
    word-break:break-word!important;
  }

  .tk-responsive-table{
    width:100%!important;
    max-width:100%!important;
    overflow-x:auto!important;
    -webkit-overflow-scrolling:touch!important;
  }

  .tk-clean-table{
    min-width:620px!important;
  }

  .tk-order-review-head,
  .tk-order-items-review{
    padding:12px!important;
  }

  .tk-order-review-actions{
    width:100%!important;
    justify-content:flex-start!important;
    text-align:left!important;
  }

  .tk-order-review-actions .btn,
  .tk-order-review-actions form,
  .tk-order-review-actions form button{
    width:100%!important;
  }

  .tk-order-item-title-media{
    display:flex!important;
    align-items:flex-start!important;
    gap:10px!important;
    min-width:0!important;
  }

  .tk-order-item-title-media img{
    flex:0 0 58px!important;
    width:58px!important;
    height:58px!important;
    border-radius:14px!important;
    object-fit:cover!important;
  }

  .tk-order-item-title-media > div{
    min-width:0!important;
  }

  .tk-order-item-title-media strong,
  .tk-order-item-title-media small{
    overflow-wrap:anywhere!important;
  }

  .tk-mini-review-form{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:10px!important;
  }

  .tk-mini-review-form label,
  .tk-mini-review-form .input,
  .tk-mini-review-form textarea,
  .tk-mini-review-form select,
  .tk-mini-review-form input[type="file"],
  .tk-mini-review-form button{
    width:100%!important;
    max-width:100%!important;
  }

  .tk-mini-review-form input[type="file"]{
    font-size:12px!important;
    min-height:44px!important;
    padding:10px!important;
  }

  .tk-review-final-card{
    display:grid!important;
    grid-template-columns:1fr!important;
  }

  .tk-review-thumb,
  .tk-review-final-card .tk-review-thumb{
    width:100%!important;
    height:180px!important;
    max-width:100%!important;
    object-fit:cover!important;
  }
}

@media(max-width:380px){
  .tk-member-sidebar nav{
    grid-template-columns:1fr!important;
  }

  .tk-account-panel,
  .tk-account-hero,
  .tk-member-sidebar{
    padding-left:12px!important;
    padding-right:12px!important;
  }

  .tk-public-nav .brand{
    max-width:112px!important;
  }

  .tk-public-nav .brand img,
  .tk-public-nav .brand #apple,
  .tk-public-nav #apple{
    max-width:94px!important;
  }
}


/* =========================================================
   PATCH 21 MAY: popup close + mobile top breathing / overflow guard
   ========================================================= */
body:not(.tk-admin-body){
  max-width:100vw;
  overflow-x:hidden;
}
body:not(.tk-admin-body) main.container{
  min-width:0!important;
  overflow-x:clip;
}
@media(max-width:640px){
  body:not(.tk-admin-body) main.container{
    width:100%!important;
    max-width:100vw!important;
    padding-left:14px!important;
    padding-right:14px!important;
    padding-top:14px!important;
  }
  body:not(.tk-admin-body) .section:first-child,
  body:not(.tk-admin-body) .tk-choice3-catalog,
  body:not(.tk-admin-body) .tk-member-shopee{
    margin-top:8px!important;
  }
  .tk-public-nav.nav{
    width:100vw!important;
    max-width:100vw!important;
    overflow:visible!important;
  }
  .tk-public-nav .tk-public-nav-inner{
    width:100%!important;
    max-width:100vw!important;
    padding-left:10px!important;
    padding-right:10px!important;
  }
  .tk-public-nav .search{
    margin-left:0!important;
    margin-right:0!important;
  }
}
@media(max-width:380px){
  body:not(.tk-admin-body) main.container{
    padding-left:12px!important;
    padding-right:12px!important;
    padding-top:16px!important;
  }
}

/* =========================================================
   FINAL MOBILE VIEWPORT + POPUP CLOSE HOTFIX - 21 MAY
   Purpose: stop public pages from being clipped on iPhone/small screens
   and make promo popup close button impossible to hide.
   ========================================================= */
html,
body{
  width:100% !important;
  max-width:100% !important;
  overflow-x:hidden !important;
}
*,*::before,*::after{box-sizing:border-box;}
img,video,iframe,svg,canvas{max-width:100%;height:auto;}
body:not(.tk-admin-body) .container,
body:not(.tk-admin-body) main.container,
body:not(.tk-admin-body) .nav .container,
body:not(.tk-admin-body) .footer .container{
  box-sizing:border-box !important;
  max-width:100% !important;
  min-width:0 !important;
}

@media(max-width:768px){
  body:not(.tk-admin-body) main.container{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding-left:16px !important;
    padding-right:16px !important;
    overflow:visible !important;
  }

  body:not(.tk-admin-body) .nav,
  body:not(.tk-admin-body) .tk-public-nav,
  body:not(.tk-admin-body) .nav .container,
  body:not(.tk-admin-body) .footer .container{
    width:100% !important;
    max-width:100% !important;
    margin-left:0 !important;
    margin-right:0 !important;
    padding-left:10px !important;
    padding-right:10px !important;
  }

  body:not(.tk-admin-body) .section,
  body:not(.tk-admin-body) .content-hero,
  body:not(.tk-admin-body) .content-hero__grid,
  body:not(.tk-admin-body) .tk-choice3-catalog,
  body:not(.tk-admin-body) .tk-choice3-layout,
  body:not(.tk-admin-body) .tk-member-shopee,
  body:not(.tk-admin-body) .tk-member-shell,
  body:not(.tk-admin-body) .tk-account-panel,
  body:not(.tk-admin-body) .blog-grid,
  body:not(.tk-admin-body) .review-grid,
  body:not(.tk-admin-body) .stats-panel,
  body:not(.tk-admin-body) .featured-post-card{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    margin-left:0 !important;
    margin-right:0 !important;
  }

  body:not(.tk-admin-body) .content-hero{
    padding-top:18px !important;
    padding-left:0 !important;
    padding-right:0 !important;
    overflow:visible !important;
  }

  body:not(.tk-admin-body) .content-hero__grid,
  body:not(.tk-admin-body) .featured-post-card,
  body:not(.tk-admin-body) .blog-detail-shell,
  body:not(.tk-admin-body) .tk-member-shell,
  body:not(.tk-admin-body) .tk-choice3-layout{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) !important;
  }

  body:not(.tk-admin-body) .content-hero h1,
  body:not(.tk-admin-body) .featured-post-copy h2,
  body:not(.tk-admin-body) .section-head h2,
  body:not(.tk-admin-body) .tk-choice3-hero h1{
    max-width:100% !important;
    font-size:clamp(30px, 9.2vw, 42px) !important;
    line-height:1.04 !important;
    letter-spacing:-.045em !important;
    overflow-wrap:anywhere !important;
    word-break:normal !important;
  }

  body:not(.tk-admin-body) .content-hero p,
  body:not(.tk-admin-body) .featured-post-copy p,
  body:not(.tk-admin-body) .tk-choice3-hero p{
    max-width:100% !important;
    font-size:clamp(15px, 4.2vw, 18px) !important;
    line-height:1.65 !important;
    overflow-wrap:anywhere !important;
  }

  body:not(.tk-admin-body) .stats-panel,
  body:not(.tk-admin-body) .review-grid,
  body:not(.tk-admin-body) .blog-grid,
  body:not(.tk-admin-body) .tk-choice3-product-grid.grid,
  body:not(.tk-admin-body) .tk-member-kpis,
  body:not(.tk-admin-body) .tk-affiliate-mini-grid,
  body:not(.tk-admin-body) .tk-shopee-form,
  body:not(.tk-admin-body) .tk-address-form{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) !important;
  }

  body:not(.tk-admin-body) .content-kicker{
    max-width:100% !important;
    white-space:normal !important;
  }

  body:not(.tk-admin-body) .nav .search,
  body:not(.tk-admin-body) .tk-public-nav .search{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
  }
}

@media(max-width:390px){
  body:not(.tk-admin-body) main.container{
    padding-left:12px !important;
    padding-right:12px !important;
  }
  body:not(.tk-admin-body) .content-hero h1,
  body:not(.tk-admin-body) .featured-post-copy h2,
  body:not(.tk-admin-body) .section-head h2,
  body:not(.tk-admin-body) .tk-choice3-hero h1{
    font-size:clamp(28px, 8.8vw, 36px) !important;
    line-height:1.06 !important;
  }
}

/* Promo popup must sit above sticky nav and must always show X */
#promoPopup.promo-overlay{
  z-index:2147483600 !important;
  padding-top:max(58px, calc(env(safe-area-inset-top) + 46px)) !important;
  align-items:flex-start !important;
}
#promoPopup .promo-box{
  max-width:min(92vw, 520px) !important;
  width:min(92vw, 520px) !important;
  max-height:calc(100dvh - 86px) !important;
  overflow:auto !important;
  margin-top:0 !important;
}
#promoPopup .promo-close,
#tkPromoEmergencyClose{
  position:fixed !important;
  top:max(12px, calc(env(safe-area-inset-top) + 10px)) !important;
  right:max(12px, calc(env(safe-area-inset-right) + 10px)) !important;
  width:48px !important;
  height:48px !important;
  min-width:48px !important;
  min-height:48px !important;
  border-radius:999px !important;
  border:2px solid #fff !important;
  background:#111827 !important;
  color:#fff !important;
  font-size:34px !important;
  font-weight:950 !important;
  line-height:42px !important;
  text-align:center !important;
  display:grid !important;
  place-items:center !important;
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
  z-index:2147483647 !important;
  box-shadow:0 12px 32px rgba(0,0,0,.42) !important;
  -webkit-appearance:none !important;
  appearance:none !important;
}
#promoPopup:not(.show) .promo-close,
#tkPromoEmergencyClose[hidden]{display:none !important;}
@media(max-width:480px){
  #promoPopup.promo-overlay{
    padding-top:max(64px, calc(env(safe-area-inset-top) + 52px)) !important;
    padding-left:10px !important;
    padding-right:10px !important;
  }
  #promoPopup .promo-box{
    width:min(90vw, 380px) !important;
    max-height:calc(100dvh - 96px) !important;
    border-radius:18px !important;
    padding:10px !important;
  }
  #promoPopup .promo-title{display:none !important;}
  #promoPopup .promo-content{
    min-height:auto !important;
    height:auto !important;
    margin:0 !important;
  }
  #promoPopup .gift-main{
    position:relative !important;
    left:auto !important;
    top:auto !important;
    transform:none !important;
    width:100% !important;
    max-width:100% !important;
    display:block !important;
    animation:none !important;
  }
  #promoPopup .confetti{display:none !important;}
}

/* HOTFIX 21 MAY: center promo popup on laptop + phone, keep X visible */
#promoPopup.promo-overlay{
  position:fixed !important;
  inset:0 !important;
  min-height:100dvh !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left)) !important;
  overflow:auto !important;
  z-index:2147483600 !important;
  overscroll-behavior:contain !important;
}
#promoPopup.promo-overlay.show{
  opacity:1 !important;
  visibility:visible !important;
}
#promoPopup .promo-box{
  margin:auto !important;
  width:min(92vw, 620px) !important;
  max-width:min(92vw, 620px) !important;
  min-height:0 !important;
  max-height:calc(100dvh - 44px) !important;
  overflow:auto !important;
  transform-origin:center center !important;
}
#promoPopup .promo-close,
#tkPromoEmergencyClose{
  position:fixed !important;
  top:max(12px, calc(env(safe-area-inset-top) + 10px)) !important;
  right:max(12px, calc(env(safe-area-inset-right) + 10px)) !important;
  z-index:2147483647 !important;
  display:grid !important;
  visibility:visible !important;
  opacity:1 !important;
  pointer-events:auto !important;
}
@media(max-width:768px){
  #promoPopup.promo-overlay{
    align-items:center !important;
    justify-content:center !important;
    padding:max(64px, calc(env(safe-area-inset-top) + 54px)) 12px max(18px, env(safe-area-inset-bottom)) !important;
  }
  #promoPopup .promo-box{
    margin:auto !important;
    width:min(90vw, 420px) !important;
    max-width:min(90vw, 420px) !important;
    max-height:calc(100dvh - 92px) !important;
  }
}
@media(max-width:480px){
  #promoPopup.promo-overlay{
    align-items:center !important;
    justify-content:center !important;
    padding:max(60px, calc(env(safe-area-inset-top) + 50px)) 10px max(16px, env(safe-area-inset-bottom)) !important;
  }
  #promoPopup .promo-box{
    margin:auto !important;
    width:min(88vw, 380px) !important;
    max-width:min(88vw, 380px) !important;
    max-height:calc(100dvh - 90px) !important;
    border-radius:20px !important;
  }
}
