/* ===================================================================
   ARKI COLLECTION — design tokens
   Concept: hardware-store "hang tag" / spec-sheet catalog.
   =================================================================== */

:root{
  --ink: #14171A;
  --teal: #00D9A0;
  --teal-deep: #007A5A;
  --teal-soft: #E3FBF3;
  --yellow: #FFC93C;
  --yellow-deep: #E8A800;
  --concrete: #F3F1EB;
  --steel: #5B6169;
  --steel-line: #D8D5CC;
  --white: #FFFFFF;
  --danger: #E4572E;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius-tag: 14px;
  --shadow-card: 0 10px 24px -14px rgba(20,23,26,.35);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--concrete);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3{ margin:0; font-family: var(--font-display); font-weight:400; letter-spacing:.01em; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

:focus-visible{
  outline: 3px solid var(--teal-deep);
  outline-offset: 2px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight:700;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn--yellow{
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 8px 0 0 var(--yellow-deep);
}
.btn--yellow:hover{ box-shadow: 0 5px 0 0 var(--yellow-deep); transform: translateY(1px); }
.btn--outline{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover{ background: var(--ink); color: var(--white); }

.btn--wa{
  background: #1FAA59;
  color: var(--white);
}
.btn--wa:hover{ background:#188a48; }
.btn--shopee{
  background: #EE4D2D;
  color: var(--white);
}
.btn--shopee:hover{ background:#d43f22; }
.btn--full{ width:100%; padding:.75rem 1rem; font-size:.85rem; border-radius: 10px; box-shadow:none; }

/* ---------- TOP BAR ---------- */
.topbar{
  position: sticky; top:0; z-index: 40;
  background: var(--ink);
  border-bottom: 3px solid var(--teal);
}
.topbar__inner{
  max-width: 1180px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding: .7rem 1.25rem;
}
.topbar__brand{ display:flex; align-items:center; gap:.7rem; }
.topbar__mark{
  font-family: var(--font-display);
  background: var(--teal);
  color: var(--ink);
  width:38px; height:38px;
  border-radius: 8px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
}
.topbar__name{ display:flex; flex-direction:column; line-height:1.15; color:var(--white); }
.topbar__name strong{ font-size:.95rem; letter-spacing:.04em; }
.topbar__name small{ font-family: var(--font-mono); color: var(--teal); font-size:.65rem; letter-spacing:.06em; }
.topbar__nav{
  display:flex; gap: 1.4rem;
  font-family: var(--font-mono);
  font-size:.8rem;
  color: #C7CBD1;
}
.topbar__nav a:hover{ color: var(--teal); }
.topbar__cta{
  font-family: var(--font-mono);
  font-size:.78rem;
  color: var(--ink);
  background: var(--teal);
  padding:.5rem .9rem;
  border-radius: 999px;
  font-weight:600;
}

/* ---------- PROMO TEASER LINKBAR (bukan bagian header) ---------- */
.promo-linkbar{
  background: var(--danger);
  text-align:center;
}
.promo-linkbar__link{
  display:block;
  padding: .55rem 1.25rem;
  font-family: var(--font-mono);
  font-size:.78rem;
  font-weight:700;
  color: var(--white);
  letter-spacing:.02em;
}
.promo-linkbar__link:hover{ background: rgba(0,0,0,.12); }

/* ---------- QUICK ORDER STRIP ---------- */
.quicksteps{
  position: sticky; top: 58px; z-index: 39;
  background: var(--yellow);
  border-bottom: 1px solid var(--yellow-deep);
}
.quicksteps__inner{
  max-width: 1180px; margin:0 auto;
  padding: .55rem 1.25rem;
  display:flex; flex-wrap:wrap; align-items:center; gap:.4rem .6rem;
  font-family: var(--font-mono);
  font-size:.74rem;
  color: var(--ink);
}
.quicksteps__label{ font-weight:700; }
.quicksteps__arrow{ opacity:.55; }
@media (max-width: 640px){
  .quicksteps__inner{ font-size:.68rem; }
  .topbar__nav{ display:none; }
}

/* ---------- TRUST BADGES STRIP ---------- */
.trust-badges{
  background: var(--ink);
  border-bottom: 1px solid #2B3036;
}
.trust-badges__inner{
  max-width: 1180px; margin:0 auto;
  padding: .6rem 1.25rem;
  display:flex; flex-wrap:wrap; justify-content:center; gap: .5rem 1.6rem;
}
.trust-badges__item{
  font-family: var(--font-mono);
  font-size:.72rem;
  color: var(--teal);
  white-space: nowrap;
}
@media (max-width: 640px){
  .trust-badges__inner{ gap:.4rem 1rem; font-size:.68rem; }
}

/* ---------- HERO ---------- */
.hero{
  background:
    radial-gradient(circle at 85% 0%, rgba(0,217,160,.18), transparent 55%),
    var(--concrete);
  border-bottom: 1px solid var(--steel-line);
  padding: 3.2rem 1.25rem 3rem;
}
.hero__grid{
  max-width: 1180px; margin:0 auto;
  display:grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items:center;
}
.hero__eyebrow{
  display:inline-block;
  font-family: var(--font-mono);
  font-size:.75rem; letter-spacing:.08em;
  color: var(--teal-deep);
  background: var(--teal-soft);
  border: 1px dashed var(--teal-deep);
  padding: .3rem .7rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.hero__title{
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1.1rem;
}
.hero__desc{
  font-size: 1.05rem;
  color: var(--steel);
  max-width: 46ch;
  margin-bottom: 1.6rem;
  line-height: 1.55;
}
.hero__actions{ display:flex; flex-wrap:wrap; gap: .9rem; margin-bottom: 1.6rem; }
.hero__badges{
  display:flex; flex-wrap:wrap; gap: .5rem 1.2rem;
  font-family: var(--font-mono); font-size:.78rem; color: var(--steel);
}

.hero__visual{
  position:relative;
  min-height: 340px;
}
.hero__img{
  position:absolute;
  border-radius: var(--radius-tag);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}
.hero__img--1{ width:64%; top:0; right:0; z-index:2; }
.hero__img--2{ width:52%; bottom:0; left:0; z-index:1; }
.hero__img--3{ width:34%; bottom:10%; right:8%; z-index:3; transform: rotate(-4deg); }

/* ---------- SECTION TITLES ---------- */
.section-title{
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align:center;
}
.section-title--light{ color: var(--white); }
.section-sub{
  text-align:center; color: var(--steel);
  font-family: var(--font-mono); font-size:.85rem;
  margin-top:.5rem;
}

/* ---------- CATALOG ---------- */
.catalog{
  max-width: 1180px; margin: 0 auto;
  padding: 3.5rem 1.25rem 1rem;
}
.catalog__head{ margin-bottom: 1.8rem; }

.filters{
  display:flex; flex-wrap:wrap; justify-content:center; gap:.6rem;
  margin-bottom: 2.2rem;
}
.filter-btn{
  font-family: var(--font-mono);
  font-size:.78rem;
  padding:.55rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: all .15s ease;
}
.filter-btn:hover{ background: rgba(20,23,26,.06); }
.filter-btn.is-active{
  background: var(--ink);
  color: var(--teal);
}

.product-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.6rem;
}

/* ---- Hang-tag product card (signature element) ---- */
.tag-card{
  position:relative;
  background: var(--white);
  border-radius: var(--radius-tag);
  border: 1px solid var(--steel-line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display:flex; flex-direction:column;
  animation: cardIn .4s ease both;
}
@keyframes cardIn{ from{ opacity:0; transform: translateY(10px);} to{ opacity:1; transform:none; } }

.tag-card__punch{
  position:absolute; top:10px; left:50%; transform: translateX(-50%);
  width:16px; height:16px; border-radius:50%;
  background: var(--concrete);
  border: 1px solid var(--steel-line);
  z-index: 3;
}
.tag-card__sku{
  position:absolute; top:10px; left:10px; z-index:3;
  font-family: var(--font-mono); font-size:.65rem; letter-spacing:.04em;
  background: var(--ink); color: var(--teal);
  padding:.2rem .5rem; border-radius: 5px;
}
.tag-card__discount{
  display:none;
}
.tag-card--promo{
  border-color: var(--danger);
  box-shadow: 0 10px 24px -14px rgba(228,87,46,.45);
}
.tag-card__promo-badge{
  position:absolute; top:10px; right:10px; z-index:3;
  font-family: var(--font-mono); font-size:.66rem; font-weight:700;
  background: var(--danger); color: var(--white);
  padding:.2rem .55rem; border-radius: 5px;
  animation: pulseBadge 1.8s ease-in-out infinite;
}
@keyframes pulseBadge{
  0%,100%{ transform: scale(1); }
  50%{ transform: scale(1.06); }
}
.tag-card__original{
  font-family: var(--font-mono);
  font-size:.8rem;
  color: var(--steel);
  text-decoration: line-through;
}
.tag-card__countdown{
  font-family: var(--font-mono);
  font-size:.68rem;
  font-weight:600;
  color: var(--danger);
  background: #FDEDE7;
  border: 1px dashed var(--danger);
  border-radius: 6px;
  padding: .3rem .5rem;
  display:inline-block;
  font-variant-numeric: tabular-nums;
}
.tag-card__countdown--critical{
  background: var(--danger);
  color: var(--white);
  border-style: solid;
}
.tag-card__note{
  font-family: var(--font-mono);
  font-size:.66rem;
  color: var(--steel);
}
.tag-card__stock{
  font-family: var(--font-mono);
  font-size:.7rem;
  font-weight:700;
  color: var(--danger);
  display:inline-block;
}
.hero__shipnote{
  font-family: var(--font-mono);
  font-size:.75rem;
  color: var(--steel);
  margin-top: .9rem;
  max-width: 42ch;
}
.tag-card__media{
  background: var(--teal);
  aspect-ratio: 1 / 1;
  overflow:hidden;
}
.tag-card__media img{ width:100%; height:100%; object-fit: cover; }

.tag-card__perf{
  height: 0;
  border-top: 2px dashed var(--steel-line);
  margin: 0 14px;
  position:relative;
}
.tag-card__perf::before,.tag-card__perf::after{
  content:''; position:absolute; top:-7px; width:14px; height:14px; border-radius:50%;
  background: var(--concrete); border: 1px solid var(--steel-line);
}
.tag-card__perf::before{ left:-21px; }
.tag-card__perf::after{ right:-21px; }

.tag-card__body{
  padding: 1rem 1.1rem 1.2rem;
  display:flex; flex-direction:column; gap:.65rem; flex:1;
}
.tag-card__name{
  font-family: var(--font-body);
  font-weight:700;
  font-size: .95rem;
  line-height:1.3;
  min-height: 2.5em;
}
.tag-card__specs{
  font-family: var(--font-mono);
  font-size:.72rem;
  color: var(--steel);
  line-height:1.6;
}
.tag-card__price-row{
  display:flex; align-items:baseline; gap:.5rem; margin-top:.2rem;
}
.tag-card__price{
  font-family: var(--font-mono);
  font-weight:700;
  font-size:1.15rem;
  color: var(--ink);
}
.tag-card__sold{
  font-family: var(--font-mono);
  font-size:.68rem;
  color: var(--teal-deep);
}
.tag-card__actions{
  margin-top:.4rem;
  display:flex; flex-direction:column; gap:.5rem;
}

/* ---------- TRUST ---------- */
.trust{
  background: var(--ink);
  padding: 3.5rem 1.25rem;
  margin-top: 3rem;
}
.trust__grid{
  max-width: 1180px; margin: 2.2rem auto 0;
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.trust__card{
  background: #1E2226;
  border: 1px solid #2B3036;
  border-radius: var(--radius-tag);
  padding: 1.4rem 1.3rem;
  color: var(--white);
}
.trust__num{
  font-family: var(--font-mono);
  color: var(--teal);
  font-size:.8rem;
}
.trust__card h3{ font-family: var(--font-body); font-size:1.02rem; margin: .5rem 0 .4rem; }
.trust__card p{ color: #A9AEB4; font-size:.88rem; line-height:1.5; }

/* ---------- TESTIMONI ---------- */
.testimonials{
  max-width: 1180px; margin: 0 auto;
  padding: 3.5rem 1.25rem;
}
.testimonials__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.testi-card{
  background: var(--white);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius-tag);
  box-shadow: var(--shadow-card);
  padding: 1.2rem 1.3rem;
}
.testi-card__head{
  display:flex; align-items:center; gap: .7rem;
  margin-bottom: .8rem;
}
.testi-card__avatar{
  width: 36px; height:36px; border-radius:50%;
  background: var(--teal-soft); color: var(--teal-deep);
  font-family: var(--font-display);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.testi-card__name{ display:block; font-size:.9rem; }
.testi-card__loc{
  display:block; font-family: var(--font-mono);
  font-size:.7rem; color: var(--steel);
}
.testi-card__stars{
  margin-left:auto; color: var(--yellow-deep); font-size:.9rem; letter-spacing:.05em;
}
.testi-card--shopee{ border-top: 4px solid #EE4D2D; }
.testi-card--wa{ border-top: 4px solid #1FAA59; }
.testi-card__text{ font-size:.88rem; line-height:1.55; color: var(--ink); }
.testi-card__bubble{
  position:relative;
  background: var(--teal-soft);
  border-radius: 0 10px 10px 10px;
  padding: .7rem .9rem;
  font-size: .87rem; line-height: 1.5;
  color: var(--ink);
}
.testi-card__check{
  color:#34B7F1; font-size:.72rem; font-weight:700; margin-left:.3rem;
  white-space:nowrap;
}

/* ---------- FAQ ---------- */
.faq{
  max-width: 860px; margin: 0 auto;
  padding: 3.5rem 1.25rem;
}
.faq__list{ margin-top: 2rem; display:flex; flex-direction:column; gap: .7rem; }
.faq-item{
  background: var(--white);
  border: 1.5px solid var(--steel-line);
  border-radius: 10px;
  padding: .2rem 1.1rem;
}
.faq-item summary{
  cursor:pointer;
  padding: .9rem 1.6rem .9rem 0;
  font-weight:700;
  font-size:.92rem;
  list-style:none;
  position:relative;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:'+';
  position:absolute; right:0; top:50%; transform:translateY(-50%);
  font-family: var(--font-display);
  font-size:1.3rem; color: var(--teal-deep);
}
.faq-item[open] summary::after{ content:'–'; }
.faq-item p{
  padding: 0 0 1rem;
  font-size:.86rem; line-height:1.6; color: var(--steel);
}
.faq__cta{ display:flex; justify-content:center; margin-top: 1.8rem; }

/* ---------- STEPS ---------- */
/* ---------- CARA PESAN (dua jalur) ---------- */
.steps{
  max-width: 1180px; margin: 0 auto;
  padding: 3.5rem 1.25rem;
}
.order-paths{
  display:grid; grid-template-columns: 1fr 1fr; gap: 1.6rem;
  margin-top: 2.2rem;
}
.order-path{
  background: var(--white);
  border: 1.5px solid var(--steel-line);
  border-top: 5px solid #1FAA59;
  border-radius: var(--radius-tag);
  padding: 1.8rem 1.6rem 1.6rem;
}
.order-path--shopee{ border-top-color: #EE4D2D; }

.order-path__head{
  display:flex; gap: .9rem; align-items:flex-start;
  margin-bottom: 1.3rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px dashed var(--steel-line);
}
.order-path__icon{
  font-size: 1.6rem;
  line-height:1;
  flex-shrink: 0;
}
.order-path__head h3{
  font-family: var(--font-body); font-weight:800; font-size: 1.1rem; margin-bottom:.3rem;
}
.order-path__head p{ color: var(--steel); font-size:.85rem; line-height:1.5; }

.order-path__list{
  list-style:none; margin:0; padding:0;
  counter-reset: step;
}
.order-path__list li{
  counter-increment: step;
  position: relative;
  padding: 0 0 1.1rem 2.4rem;
  margin-left: .1rem;
  font-size: .88rem;
  line-height:1.55;
  color: var(--ink);
}
.order-path__list li::before{
  content: counter(step);
  position:absolute; left:0; top:-.1rem;
  width: 26px; height:26px; border-radius:50%;
  background: var(--concrete);
  border: 1.5px solid var(--ink);
  font-family: var(--font-mono); font-size:.75rem; font-weight:700;
  display:flex; align-items:center; justify-content:center;
}
.order-path__list li::after{
  content:'';
  position:absolute; left: 12px; top: 26px; bottom: 0;
  width: 1px;
  background: var(--steel-line);
}
.order-path__list li:last-child::after{ display:none; }
.order-path__list li strong{ font-weight:700; }
.order-path__list li em{ font-style:normal; color: var(--teal-deep); font-weight:600; }
.order-path--shopee .order-path__list li em{ color:#D6431F; }

.order-path__note{
  font-family: var(--font-mono);
  font-size:.72rem;
  color: var(--steel);
  background: var(--concrete);
  border-radius: 8px;
  padding: .6rem .8rem;
  margin-top: .3rem;
}

@media (max-width: 780px){
  .order-paths{ grid-template-columns: 1fr; }
}

/* ---------- PROMO HARI INI (banner besar + countdown, di atas katalog) ---------- */
.promo-today{
  background:
    radial-gradient(circle at 15% 20%, rgba(0,217,160,.25), transparent 55%),
    var(--ink);
  padding: 3rem 1.25rem;
  text-align:center;
}
.promo-today__inner{
  max-width: 780px; margin:0 auto;
  display:flex; flex-direction:column; align-items:center; gap: .9rem;
}
.promo-today__badge{
  font-family: var(--font-mono);
  font-size:.78rem; font-weight:700; letter-spacing:.06em;
  color: var(--ink);
  background: var(--teal);
  padding: .35rem .8rem;
  border-radius: 999px;
}
.promo-today__title{
  color: var(--white);
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  line-height: 1.1;
}
.promo-today__text{
  color: #C7CBD1;
  font-size: .95rem;
  line-height:1.55;
  max-width: 56ch;
}
.promo-today__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content:center;
  gap: 1.6rem;
  margin-top: .6rem;
  width:100%;
}

/* Kartu produk yang dipajang gede di section promo hari ini —
   pakai markup tag-card yang sama, cuma ditonjolkan sedikit */
.tag-card--featured{
  border-width: 2px;
  transform: scale(1.03);
}
.tag-card--featured .tag-card__name{ font-size: 1.02rem; }
.tag-card--featured .tag-card__price{ font-size: 1.3rem; }
.tag-card--featured .tag-card__countdown{
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
  padding: .55rem .7rem;
  border-width: 2px;
  border-style: solid;
}
.tag-card--featured .tag-card__countdown .js-countdown-time{
  display:block;
  font-size: 1.7rem;
  margin-top: .15rem;
  letter-spacing: .02em;
}

@media (max-width: 520px){
  .tag-card--featured{ transform: none; }
}

/* ---------- LOKASI / MAP ---------- */
.location{
  max-width: 1180px; margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
}
.location .section-sub{ margin-top:.3rem; }
.location__actions{ display:flex; justify-content:center; margin-top: 1.1rem; }
.location__map{
  margin-top: 1.4rem;
  border-radius: var(--radius-tag);
  overflow: hidden;
  border: 1.5px solid var(--steel-line);
  box-shadow: var(--shadow-card);
}
.location__map iframe{
  width: 100%;
  height: 360px;
  border: 0;
  display:block;
}

/* ---------- FOOTER ---------- */
.footer{
  background: var(--ink);
  color: var(--white);
  padding: 2.4rem 1.25rem 1.4rem;
}
.footer__inner{
  max-width: 1180px; margin:0 auto;
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:1.5rem;
  border-bottom: 1px solid #2B3036;
  padding-bottom: 1.6rem;
}
.footer__inner strong{ font-family: var(--font-display); letter-spacing:.03em; font-size:1.1rem; }
.footer__inner p{ color:#A9AEB4; font-size:.85rem; margin-top:.4rem; max-width: 40ch; }
.footer__links{ display:flex; flex-direction:column; gap:.6rem; font-family: var(--font-mono); font-size:.85rem; }
.footer__links a{ color: var(--teal); }
.footer__links a:hover{ text-decoration: underline; }
.footer__note{
  max-width: 1180px; margin: 1rem auto 0;
  color:#767C83; font-size:.72rem; font-family: var(--font-mono);
}

/* ---------- FLOATING WA ---------- */
.float-wa{
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 50;
  background: #1FAA59; color: var(--white);
  display:flex; align-items:center; gap:.5rem;
  padding: .75rem 1rem; border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.4);
  font-weight:700; font-size:.85rem;
}
.float-wa:hover{ background:#188a48; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__visual{ order:-1; min-height: 260px; }
  .trust__grid{ grid-template-columns: repeat(2,1fr); }
  .order-paths{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .trust__grid{ grid-template-columns: 1fr; }
  .hero__badges{ font-size:.72rem; }
  .float-wa span{ display:none; }
  .float-wa{ padding:.85rem; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; transition-duration: .001ms !important; }
}