/* ================================
   TOKENS
================================ */
:root{
  --bg:#0a0a0a;
  --dark:#111;
  --surface:#121212;
  --text:#efefef;
  --muted:#111;
  --line:rgba(255,255,255,.10);

  --light-bg:#ffffff;
  --light-text:#111111;
  --light-muted:#111111;
  --light-line:rgba(0,0,0,.10);
  --light-surface:#f8f8f8;

  --radius:16px;
  --shadow:0 20px 45px rgba(0,0,0,.35);
  --shadow-sm:0 10px 24px rgba(0,0,0,.25);
  --container:1200px;
  --gap:16px;
}

/* ================================
   RESET & BASE
================================ */
*,*::before,*::after{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.6;
  display:flex;
  flex-direction:column;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer}
input,select,textarea{font:inherit}
::selection{background:rgba(255,255,255,.22)}
.container{max-width:var(--container);margin:0 auto;padding:0 20px}
.page{flex:1 1 auto}

/* ================================
   HEADER
================================ */
.header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:saturate(120%) blur(8px);
  background:#141414;
  border-bottom:1px solid var(--line);
}
.header__inner{height:72px;display:flex;align-items:center;justify-content:space-between;gap:12px}

/* Brand */
.brand{display:flex;align-items:center;gap:5px;font-weight:800;letter-spacing:.3px}
.brand .word{color:#fff;font-size:15px}
.brand-mark{display:block;height:36px;width:auto;object-fit:contain;image-rendering:auto}
@media (max-width:480px){.brand-mark{height:30px}}

/* Nav (desktop) */
.nav{display:flex;align-items:center;gap:22px}
.nav a{font-weight:600;color:#e6e6e6;font-size:14.5px;opacity:.95}
.nav a:hover{color:#fff;text-decoration:underline;text-underline-offset:3px}

/* Cart pill (desktop) */
.cart-badge{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:22px;height:22px;padding:0 6px;
  background:#fff;color:#000;border-radius:999px;font-size:12px;margin-left:6px;
  box-shadow:0 6px 16px rgba(0,0,0,.45);
}

/* Header actions (mobile) */
.header__actions{display:none;align-items:center;gap:10px}
.icon-btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:36px;height:36px;border:1px solid var(--line);
  background:rgba(255,255,255,.06);border-radius:10px;
}
.icon-btn svg{width:18px;height:18px;color:#eaeaea}

/* Cart icon in desktop nav */
.nav .icon-btn{width:36px;height:36px;border-radius:10px;background:rgba(255,255,255,.06);border:1px solid var(--line)}
.nav .icon-btn svg{width:18px;height:18px;color:#eaeaea}

/* Cart count badge */
.icon-btn--cart{position:relative}
.icon-btn--cart .cart-count{
  position:absolute;top:-6px;right:-6px;
  min-width:18px;height:18px;padding:0 5px;
  display:flex;align-items:center;justify-content:center;
  border-radius:999px;background:#fff;color:#000;border:1px solid #222;
  font-size:11px;font-weight:700;
}

/* Hamburger */
.hamburger{
  width:36px;height:36px;border:1px solid var(--line);
  background:rgba(255,255,255,.06);border-radius:10px;
  position:relative;padding:0;
}
.hamburger span{
  position:absolute;left:50%;transform:translateX(-50%);
  width:20px;height:2px;background:#eaeaea;border-radius:2px;
}
.hamburger span:nth-child(1){top:9px}
.hamburger span:nth-child(2){top:17px}
.hamburger span:nth-child(3){top:25px}

/* Drawer (mobile) */
.drawer{display:none}
.drawer.open{
  display:block;position:absolute;inset:72px 0 auto 0;
  background:#0a0a0a;border-bottom:1px solid var(--line);
}
.drawer .nav-col{display:flex;flex-direction:column;padding:16px 20px;gap:10px}
.drawer .nav-col a{padding:12px 14px;border-radius:12px}
.drawer .nav-col a:hover{background:rgba(255,255,255,.06)}

/* Header responsive */
@media (max-width:920px){
  .nav{display:none}
  .header__actions{display:flex}
}

/* ================================
   BUTTONS
================================ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:12px;border:1px solid #2a2a2a;
  font-weight:700;transition:.18s ease;
  background:#fff;color:#111;line-height:1.1;max-width:100%;
  white-space:normal;word-break:break-word;
}
.btn:hover{transform:translateY(-1px);background:#f5f5f5;color:#111;border-color:#1f1f1f}
.btn--danger{background:#eaeaea;color:#111;border-color:#d0d0d0}
.btn--success{background:#fff;color:#111;border-color:#2a2a2a}
@media (max-width:480px){.btn{padding:9px 12px;border-radius:10px;font-size:13px}}
.btn--chat{display:inline-flex;align-items:center;gap:4px}
.btn--chat svg{width:14px;height:14px}

/* Icon-only button */
.btn--icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:36px;height:36px;border:1px solid var(--line);
  background:rgba(255,255,255,.06);border-radius:10px;
}
.btn--icon svg{width:18px;height:18px;color:#eaeaea}

/* ================================
   HERO
================================ */
.hero{position:relative;overflow:hidden;color:#fff;background:#111}
.hero .container{padding-left:20px;padding-right:20px}
.hero__inner{padding:0}
.hero__grid{display:grid;gap:20px;grid-template-columns:1fr;align-items:center}
.hero__col{min-width:0}
.hero__title{font-size:clamp(26px,5vw,40px);line-height:1.15;margin:0 0 10px}
.hero__lead{margin:12px 0 0;max-width:820px;color:#e3e3e3}
.hero__cta{display:flex;gap:12px;margin-top:22px;flex-wrap:wrap}
.hero__stats{display:flex;gap:8px;margin-top:18px;flex-wrap:wrap}
.pill{
  padding:8px 10px;border:1px solid rgba(255,255,255,.18);
  border-radius:999px;background:rgba(255,255,255,.06);
  font-weight:600;color:#f0f0f0;font-size:13px;
}
.hero__media{
  display:block;width:90%;max-width:480px;margin:12px auto 0;
  border-radius:16px;border:1px solid rgba(255,255,255,.1);
  background:#0f0f0f;aspect-ratio:16/10;object-fit:cover;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}

/* Hero ghost button */
.hero .btn--ghost{background:transparent;color:#fff;border:1px solid #fff;transition:.2s ease}
.hero .btn--ghost:hover{background:#fff;color:#000;border-color:#fff}

/* Hero spacing variant */
.hero--spacious{
  padding-top:clamp(64px,12vh,140px);
  padding-bottom:clamp(40px,8vh,100px);
  scroll-margin-top:84px;
}

/* Hero responsive */
@media (max-width:480px){
  .hero .container{padding-left:16px;padding-right:16px}
  .pill{font-size:12px;padding:6px 8px}
  .hero__media{width:94%;margin-top:12px}
  .hero--spacious{padding-top:clamp(56px,10vh,96px);padding-bottom:48px}
}
@media (min-width:980px){
  .hero__grid{grid-template-columns:1.2fr .8fr}
  .hero__media{width:88%;max-width:440px;margin:0 0 0 auto}
  .pill{font-size:14px}
}
@media (min-width:1400px){.hero__media{max-width:460px}}

/* Eyebrow */
.hero__eyebrow{display:flex;align-items:center;gap:8px;margin-bottom:10px;flex-wrap:wrap;color:#dcdcdc}
.eyebrow-pill{
  padding:6px 10px;border:1px solid rgba(255,255,255,.18);
  border-radius:999px;background:rgba(255,255,255,.06);
  font-weight:600;font-size:12.5px;color:#f0f0f0;
}
.eyebrow-dot{opacity:.6}
.eyebrow-text{font-size:13px;opacity:.85}

/* Hero About: center layout */
.hero--center .hero__grid{display:block}
/* Breadcrumb center alignment */
.crumbs--center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  margin-bottom: 12px;
}
.hero__title--center,
.hero__lead--center{text-align:center;margin-left:auto;margin-right:auto}
.hero__lead--center{max-width:760px}


/* ================================
   SECTIONS
================================ */
.section{padding:48px 0}
.section--dark{background:#111;color:var(--text)}
.section--light{background:var(--light-bg);color:var(--light-text)}
.section__title{font-size:22px;font-weight:800;margin:0 0 14px}

/* ================================
   CARDS & KATALOG GRID
================================ */
.card{
  background:var(--surface);border:1px solid var(--line);
  border-radius:var(--radius);box-shadow:var(--shadow-sm);
  display:flex;flex-direction:column;min-height:100%;overflow:hidden;
}
.section--light .card{
  background:var(--light-surface);border-color:var(--light-line);
  color:var(--light-text);box-shadow:0 8px 24px rgba(0,0,0,.08);
}
.cards{display:grid;gap:var(--gap);grid-template-columns:repeat(2,minmax(0,1fr))}
@media (min-width:720px){.cards{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (min-width:1100px){.cards{grid-template-columns:repeat(4,minmax(0,1fr))}}

.card__media{aspect-ratio:16/9;object-fit:cover;width:100%;display:block}
.card__body{padding:14px;display:flex;flex-direction:column;gap:10px;flex:1 1 auto}
.card__title{font-weight:800}
.card__desc{color:#fff;font-size:14px;min-height:40px}
.section--light .card__desc{color:var(--light-muted)}
.price{display:flex;align-items:baseline;gap:8px}
.price .now{font-size:18px;font-weight:800}
.price .was{font-size:12px;color:#a0a0a0;text-decoration:line-through}
.card__actions{margin-top:auto;display:flex;gap:10px;flex-wrap:wrap;align-items:stretch}
.card__actions .btn{align-self:flex-end}

/* ================================
   DETAIL / SPLIT
================================ */
.split{display:grid;gap:24px;grid-template-columns:1fr}
@media (min-width:980px){.split{grid-template-columns:1.05fr .95fr}}
.gallery-main{width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:16px;border:1px solid var(--line)}
.thumbs{margin-top:10px;display:grid;grid-template-columns:repeat(5,1fr);gap:10px}
.thumbs img{height:80px;object-fit:cover;border-radius:12px;border:1px solid var(--line);cursor:pointer}
.muted{font-size:14px}
.section--dark .muted{color:#d0d0d0}

/* ================================
   BREADCRUMBS
================================ */
.crumbs{font-size:14px;color:#cfcfcf;display:flex;align-items:center;gap:8px}
.crumbs a{color:#fff}
.crumbs a:hover{text-decoration:underline;text-underline-offset:3px}
.section--light .crumbs{color:#666}
.section--light .crumbs a{color:#000}

/* ================================
   FEATURES & ACCORDION
================================ */
.features{display:grid;gap:16px;grid-template-columns:repeat(2,minmax(0,1fr))}
@media (min-width:900px){.features{grid-template-columns:repeat(4,minmax(0,1fr))}}
.feat{padding:16px;border-radius:16px;border:1px solid var(--line);background:var(--surface)}
.feat svg{width:40px;height:40px;margin-bottom:10px;display:block}
.section--light .feat{background:#fff;border-color:var(--light-line);box-shadow:0 6px 14px rgba(0,0,0,.06)}

.accordion{display:grid;gap:12px}
.accordion details{border:1px solid var(--line);border-radius:14px;background:var(--surface);overflow:hidden}
.accordion summary{
  list-style:none;cursor:pointer;padding:14px 16px;font-weight:700;display:flex;align-items:center;gap:10px;
  position:relative;padding-right:42px;
}
.accordion summary::-webkit-details-marker{display:none}
.accordion summary::after{
  content:"";position:absolute;right:14px;width:18px;height:18px;background-repeat:no-repeat;background-size:18px 18px;
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none" stroke="%23fff" stroke-width="2" viewBox="0 0 24 24"><path d="M12 5v14M5 12h14"/></svg>');
  opacity:.9;
}
.accordion details[open] summary::after{
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none" stroke="%23fff" stroke-width="2" viewBox="0 0 24 24"><path d="M5 12h14"/></svg>');
}
.accordion .acc-body{padding:0 16px 14px;color:#e7e7e7}

.section--light .accordion details{background:#fff;border-color:var(--light-line)}
.section--light .accordion .acc-body{color:#111}
.section--light .accordion summary::after{
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none" stroke="%23000" stroke-width="2" viewBox="0 0 24 24"><path d="M12 5v14M5 12h14"/></svg>');
}
.section--light .accordion details[open] summary::after{
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none" stroke="%23000" stroke-width="2" viewBox="0 0 24 24"><path d="M5 12h14"/></svg>');
}

/* ================================
   STATS
================================ */
.stats{display:grid;gap:16px;grid-template-columns:repeat(4,minmax(0,1fr));margin-top:16px}
@media (max-width:900px){.stats{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:420px){.stats{grid-template-columns:1fr}}
.stat{padding:14px;border-radius:14px;border:1px solid var(--line);background:var(--surface);text-align:center;font-weight:800}
.stat small{display:block;color:#d0d0d0;font-weight:600}
.section--light .stat{background:#fff;border-color:var(--light-line);color:#000}
.section--light .stat small{color:#111}

/* ================================
   CONTACT
================================ */
.contact-grid{display:grid;gap:16px;grid-template-columns:1fr}
@media (min-width:640px){.contact-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (min-width:900px){.contact-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
.contact-card{
  padding:14px;border:1px solid var(--line);border-radius:16px;background:var(--surface);
  word-break:break-word;overflow-wrap:anywhere;font-size:14px;
}
.section--light .contact-card{background:#fff;border-color:var(--light-line);color:#000}
.contact-card .muted{font-size:14px}

/* ================================
   FOOTER
================================ */
.footer{background:#111;color:#e9e9e9}
.footer__top{padding:28px 0}
.footer__grid{display:grid;gap:20px;grid-template-columns:1fr}
@media (min-width:768px){.footer__grid{grid-template-columns:2fr 1fr 1fr 1fr}}
.footer h4{margin:0 0 10px;font-size:14px;letter-spacing:.3px;text-transform:uppercase;color:#fff}
.footer p{margin:0;color:#cfcfcf;font-size:16px}
.footer ul{list-style:none;padding:0;margin:8px 0 0}
.footer li{margin:8px 0}
.footer a{color:#e9e9e9}
.footer a:hover{text-decoration:underline;text-underline-offset:3px}
.footer__bottom{border-top:1px solid var(--line);padding:14px 0;font-size:13px;color:#bdbdbd;text-align:center}
.footer .container{padding-left:20px;padding-right:20px}

/* ================================
   TOAST
================================ */
.toasts{position:fixed;right:18px;bottom:18px;display:flex;flex-direction:column;gap:10px;z-index:100}
.toast{
  min-width:240px;max-width:320px;padding:12px 14px;border-radius:14px;
  border:1px solid rgba(255,255,255,.25);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.06));
  color:#fff;box-shadow:var(--shadow-sm);
  display:flex;align-items:flex-start;gap:12px;animation:slideIn .25s ease-out;
}
.toast--error{border-color:rgba(255,255,255,.25);background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));color:#fff}
.toast__close{margin-left:auto;border:none;background:transparent;color:#fff;opacity:.8}
/* ================================
   TOAST (fix keyframes)
================================ */
@keyframes slideIn{
  from{
    transform: translateY(10px);
    opacity: 0;
  }
  to{
    transform: translateY(0);
    opacity: 1;
  }
}

/* ================================
   MINI MODAL
================================ */
.mini-modal-backdrop{
  position:fixed;inset:0;background:rgba(0,0,0,.4);
  display:flex;align-items:center;justify-content:center;z-index:120;
  opacity:0;pointer-events:none;transition:.2s ease;
}
.mini-modal-backdrop.show{opacity:1;pointer-events:auto}
.mini-modal{
  background:#fff;color:#111;border-radius:12px;border:1px solid #ddd;padding:14px 16px;min-width:240px;
  box-shadow:0 12px 30px rgba(0,0,0,.25);text-align:center;font-weight:700;
}

/* ================================
   CART
================================ */
.cart-section{padding:48px 0}
.cart-title{font-size:22px;font-weight:800;margin:0 0 16px}

/* Empty state */
.cart-empty{
  padding:18px;border:1px solid var(--line);border-radius:16px;background:var(--surface);color:#e6e6e6;
}
.cart-empty a{font-weight:700;text-decoration:underline;text-underline-offset:3px}

/* Table wrap */
.cart .table-wrap{
  border:1px solid var(--line);border-radius:16px;overflow:hidden;
  background:rgba(255,255,255,.02);box-shadow:var(--shadow-sm);
}

/* Table */
.cart-table{width:100%;border-collapse:collapse;font-size:14px;table-layout:auto}
.cart-table thead{background:rgba(255,255,255,.04)}
.cart-table th,.cart-table td{padding:14px 12px;text-align:left;vertical-align:middle;color:#f0f0f0}
.cart-table th{font-weight:700;white-space:nowrap}
.cart-table tbody tr{border-top:1px solid var(--line)}

/* Columns */
.cart-col-no{width:52px;text-align:center}
.cart-col-qty{width:80px;text-align:center}
.cart-col-price{width:160px;text-align:right}
.cart-actions-cell{width:72px;text-align:right}

/* No badge */
.cart-no-badge{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:28px;height:28px;padding:0 8px;
  border-radius:999px;border:1px solid var(--line);
  background:rgba(255,255,255,.04);font-weight:800;
}

/* Product cell */
.cart-product{display:flex;align-items:center;gap:12px;min-width:0}
.cart-thumb{width:56px;height:56px;object-fit:cover;border-radius:12px;border:1px solid var(--line);flex:0 0 auto}
.cart-info{min-width:0}
.cart-title-text{font-weight:800;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.cart-slug{color:#bdbdbd;font-size:12px}
.cart-price{font-variant-numeric:tabular-nums}

/* Footer total */
.cart-tfoot{background:rgba(255,255,255,.04)}
.cart-total-label{font-weight:700;text-align:right}
.cart-total-value{font-weight:800;text-align:right}

/* Summary box */
.cart-summary{
  margin-top:16px;border:1px solid var(--line);border-radius:16px;background:var(--surface);
  padding:14px;display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
}
.cart-summary__total{font-weight:800;font-size:18px;color:#f0f0f0}
.cart-summary__actions{display:flex;gap:10px;align-items:center;justify-content:flex-end;flex:1 1 auto}
.cart-note{margin-top:10px;color:#bdbdbd;font-size:13px;text-align:center}

/* Hover row (desktop) */
@media (hover:hover){.cart-table tbody tr:hover{background:rgba(255,255,255,.02)}}

/* Cart light variant */
.section--light .cart-empty{background:#fff;border-color:var(--light-line);color:#111}
.section--light .cart .table-wrap{background:#fff;border-color:var(--light-line);box-shadow:0 8px 24px rgba(0,0,0,.08)}
.section--light .cart-table th,.section--light .cart-table td{color:#111;border-color:var(--light-line)}
.section--light .cart-thumb{border-color:var(--light-line)}
.section--light .cart-slug{color:#555}
.section--light .cart-tfoot{background:#fff}
@media (max-width:720px){
  .section--light .cart-cell--qty::before,
  .section--light .cart-cell--price::before,
  .section--light .cart-cell--actions::before{color:#000}
}

/* Qty control */
.qty-form{display:flex;align-items:center;justify-content:center;gap:8px}
.qty-btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:36px;height:36px;border:1px solid var(--line);border-radius:10px;
  background:rgba(255,255,255,.10);color:#fff;cursor:pointer;line-height:0;
}
.qty-btn[disabled]{opacity:.55;cursor:not-allowed}
.qty-btn svg{width:16px;height:16px;stroke:#fff}
.qty-input{
  width:64px;height:36px;text-align:center;border:1px solid var(--line);border-radius:10px;
  background:rgba(255,255,255,.03);color:#f0f0f0;font-weight:700;font-variant-numeric:tabular-nums;
  appearance:textfield;-webkit-appearance:none;-moz-appearance:textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.cart-col-qty,.cart-cell--qty{text-align:center;vertical-align:middle}

/* Cart mobile layout */
@media (max-width:720px){
  .cart-table thead{display:none}
  .cart-table{border-collapse:separate;border-spacing:0}
  .cart-table tbody,.cart-table tfoot{display:block}

  .cart-row{
    display:grid;grid-template-columns:auto 1fr;
    padding:12px;border-bottom:1px solid var(--line);
  }
  .cart-cell{padding:0}
  .cart-cell--no{grid-column:1;grid-row:1;display:flex;align-items:center}
  .cart-cell--product{grid-column:2;grid-row:1}
  .cart-product{align-items:center;gap:10px}
  .cart-title-text{white-space:normal;line-height:1.35}

  .cart-cell--qty,.cart-cell--price,.cart-cell--actions{grid-column:1 / -1}
  .cart-cell--qty::before,
  .cart-cell--price::before,
  .cart-cell--actions::before{
    content:attr(data-th);display:block;font-size:12px;font-weight:800;color:#cfcfcf;margin:8px 0 4px;
  }

  .cart-cell--qty{text-align:left}
  .cart-cell--price{text-align:left}
  .cart-cell--actions{text-align:left}

  .cart-cell--actions .btn,.cart-summary__actions .btn{width:100%}

  .cart-tfoot{background:transparent}
  .cart-tfoot tr{display:block;padding:12px}
  .cart-tfoot td{display:block;padding:6px 0;text-align:left}
  .cart-total-label{opacity:.9}
  .cart-total-value{font-size:18px}

  .cart-summary{flex-direction:column;align-items:stretch;gap:12px}
  .cart-summary__actions{justify-content:stretch}

  .qty-form{justify-content:flex-start;gap:10px}
  .qty-btn{width:40px;height:40px}
  .qty-btn svg{width:18px;height:18px}
  .qty-input{width:72px;height:40px;font-size:16px}
}


/* ====== Forms (Kontak) ====== */
#waForm label{
  display:block;
  margin-bottom:6px;
  line-height:1.3;
}

#waForm input[type="text"],
#waForm input[type="email"],
#waForm select,
#waForm textarea{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:#fff;
  appearance:none;
  -webkit-appearance:none;
}

#waForm input:focus,
#waForm select:focus,
#waForm textarea:focus{
  outline:none;
  border-color:#ffffff80;
  box-shadow:0 0 0 3px rgba(255,255,255,.12);
}

#waForm ::placeholder{
  color:#cfcfcf;
  opacity:.9;
}

/* Select */
#waForm select{
  background-color:#151515;
  color:#fff;
  padding-right:40px;
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat:no-repeat;
  background-position:right 12px center;
  background-size:14px;
}

#waForm select::-ms-expand{display:none;}

#waForm select option{
  background:#fff;
  color:#111;
}

/* ≤300px: email turun ke baris baru */
@media (max-width:300px){
  #waForm > div > div:first-child > div:nth-child(2){
    grid-column:1 / -1;
  }
}


/* ===============================
   PAGINATION STYLE (KATALOG)
================================ */
.pagination{
  margin-top:24px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}
.pagination__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#111;
  border-radius:10px;
  border:1px solid #ddd;
  padding:10px 14px;
  font-weight:700;
  text-decoration:none;
  box-shadow:var(--shadow-sm);
  transition:.2s ease;
}
.pagination__btn:hover{
  background:#f3f3f3;
  transform:translateY(-1px);
}
.pagination__btn.disabled{
  opacity:.5;
  pointer-events:none;
}
.pagination__info{
  font-weight:700;
  color:#fff;
  padding:6px 12px;
}

/* Responsif mobile (≤480px) */
@media(max-width:480px){
  .pagination{
    flex-direction:column;
    gap:8px;
  }
  .pagination__btn,
  .pagination__info{
    width:100%;
    text-align:center;
  }
}

/* Search bar di atas katalog */
.search-bar{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom:20px;
}
.search-bar input{
  flex:1 1 280px;
  padding:12px;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:#fff;
}


.shape-host{position:relative;z-index:0}
.shape-host>*{position:relative;z-index:1}

.dotted-shape{
  position:absolute;z-index:0;pointer-events:none;
  --dot-size:3px;
  --dot-gap:24px;
  --dot-width:360px;
  --dot-height:220px;
  --dot-radius:16px;
  --dot-offset:14px;
  --dot-color:rgba(255,255,255,.28);
  --dot-opacity:.9;
  width:var(--dot-width);height:var(--dot-height);
  border-radius:var(--dot-radius);opacity:var(--dot-opacity);
  background-image:radial-gradient(var(--dot-color) var(--dot-size),transparent var(--dot-size));
  background-size:var(--dot-gap) var(--dot-gap);
  background-repeat:repeat
}

.dotted--tl{top:calc(var(--dot-offset)*-1);left:calc(var(--dot-offset)*-1)}
.dotted--tr{top:calc(var(--dot-offset)*-1);right:calc(var(--dot-offset)*-1)}
.dotted--bl{bottom:calc(var(--dot-offset)*-1);left:calc(var(--dot-offset)*-1)}
.dotted--br{bottom:calc(var(--dot-offset)*-1);right:calc(var(--dot-offset)*-1)}

.dotted--sm{--dot-width:240px;--dot-height:160px}
.dotted--md{--dot-width:320px;--dot-height:200px}
.dotted--lg{--dot-width:420px;--dot-height:260px}

.dotted--chip{
  --dot-width:200px;
  --dot-height:120px;
  --dot-gap:20px;
  --dot-radius:12px;
  --dot-offset:10px
}

.dotted--light{--dot-color:rgba(255,255,255,.28)}
.dotted--dark{--dot-color:rgba(17,17,17,.22)}
.section--light .dotted-shape:not(.dotted--light){--dot-color:rgba(17,17,17,.22)}

@media (max-width:720px){
  .dotted--lg{--dot-width:320px;--dot-height:200px}
  .dotted--md{--dot-width:260px;--dot-height:170px}
  .dotted--sm{--dot-width:200px;--dot-height:140px}
  .dotted-shape{--dot-gap:20px}
  .dotted--chip{--dot-width:160px;--dot-height:100px;--dot-gap:18px;--dot-offset:8px}
}
