/* ==========================================================================
   BIRUTOTO — Stylesheet tunggal
   Mobile-first, tanpa framework, tanpa dependency eksternal.
   Ganti identitas visual brand cukup dari blok "Design token" di bawah.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design token
   -------------------------------------------------------------------------- */
:root {
  /* Warna brand — GANTI: sesuaikan 3 baris berikut dengan warna brand Anda */
  --brand: #003bf9;
  --brand-dark: #0a4442;
  --brand-soft: #e7f2f1;

  --sale: #c62b2b;
  --sale-soft: #fdecec;

  --ink: #16191d;
  --ink-soft: #3d454e;
  --muted: #626d79;
  --line: #e3e8ec;
  --bg: #ffffff;
  --bg-soft: #f6f8f9;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(16, 24, 32, .06), 0 4px 16px rgba(16, 24, 32, .06);
  --shadow-lg: 0 6px 28px rgba(16, 24, 32, .12);

  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container: 1200px;
  --header-h: 64px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 var(--s-3);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(1.75rem, 1.3rem + 2.2vw, 2.75rem); }
h2 { font-size: clamp(1.35rem, 1.15rem + 1vw, 1.85rem); }
h3 { font-size: 1.125rem; }

p {
  margin: 0 0 var(--s-4);
}

ul,
ol {
  margin: 0 0 var(--s-4);
  padding-left: 1.25rem;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--s-4);
  top: -100px;
  z-index: 999;
  padding: var(--s-3) var(--s-4);
  background: var(--brand);
  color: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top .15s ease;
}

.skip-link:focus {
  top: 0;
}

.section {
  padding-block: var(--s-7);
}

.section--soft {
  background: var(--bg-soft);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}

.section-head h2 {
  margin: 0;
}

.section-head a {
  flex-shrink: 0;
  font-weight: 600;
  font-size: .9375rem;
}

.lead {
  font-size: 1.0625rem;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 46px;
  padding: var(--s-3) var(--s-5);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-dark);
}

.btn--ghost {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.btn--ghost:hover {
  background: var(--brand-soft);
}

/* --------------------------------------------------------------------------
   5. Announcement bar
   -------------------------------------------------------------------------- */
.announce {
  background: var(--brand);
  color: #fff;
  font-size: .875rem;
  text-align: center;
}

.announce p {
  margin: 0;
  padding: var(--s-2) var(--s-4);
}

/* --------------------------------------------------------------------------
   6. Header & navigasi
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-right: auto;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo:hover {
  text-decoration: none;
}

.logo svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Tombol hamburger — hanya tampil di layar kecil */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: none;
  border: 0;
  cursor: pointer;
  order: -1;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.primary-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.primary-nav.is-open {
  display: block;
}

.primary-nav ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: var(--s-2) var(--s-4) var(--s-4);
  list-style: none;
}

.primary-nav a {
  display: block;
  padding: var(--s-3) 0;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.primary-nav li:last-child a {
  border-bottom: 0;
}

.primary-nav a[aria-current="page"] {
  color: var(--brand);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.search {
  display: none;
  align-items: center;
  gap: var(--s-2);
  padding: 0 var(--s-2) 0 var(--s-3);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.search input {
  width: 190px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: .9375rem;
  color: var(--ink);
}

.search input:focus {
  outline: none;
}

.search:focus-within {
  border-color: var(--brand);
}

/* Dipakai baik sebagai <a> maupun sebagai <button> di dalam form pencarian,
   karena itu properti bawaan tombol perlu dinetralkan di sini. */
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  color: var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
}

.icon-btn:hover {
  background: var(--bg-soft);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.icon-btn .badge {
  position: absolute;
  top: 4px;
  right: 3px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--sale);
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 999px;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  background: var(--brand-soft);
}

.hero .container {
  display: grid;
  gap: var(--s-5);
  padding-block: var(--s-6);
}

.hero h1 {
  margin-bottom: var(--s-4);
}

.hero p {
  max-width: 52ch;
  font-size: 1.0625rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* --------------------------------------------------------------------------
   8. Grid kategori
   -------------------------------------------------------------------------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--s-4);
}

.category-card {
  display: block;
  color: var(--ink);
  text-align: center;
}

.category-card:hover {
  text-decoration: none;
}

.category-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform .2s ease;
}

.category-card:hover img {
  transform: translateY(-3px);
}

.category-card span {
  display: block;
  margin-top: var(--s-2);
  font-size: .9375rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   9. Baris produk (scroll-snap) & kartu produk
   -------------------------------------------------------------------------- */
.product-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 45%);
  gap: var(--s-4);
  margin: 0;
  padding: 0 var(--s-4) var(--s-3);
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--s-4);
  -webkit-overflow-scrolling: touch;
}

.product-row > li {
  scroll-snap-align: start;
}

/* Baris produk sengaja dibiarkan melebar penuh sampai tepi layar di HP */
.product-row-wrap {
  margin-inline: calc(var(--s-4) * -1);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  padding: var(--s-3);
}

.product-card__brand {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card__name {
  margin: 0;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.4;
}

.product-card__name a {
  color: var(--ink);
}

/* Membuat seluruh kartu bisa diklik tanpa menduplikasi teks link */
.product-card__name a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--s-2);
  margin-top: var(--s-1);
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.price--old {
  font-size: .8125rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: line-through;
}

.tag {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  padding: 2px var(--s-2);
  background: var(--sale-soft);
  color: var(--sale);
  font-size: .75rem;
  font-weight: 700;
  border-radius: 999px;
}

.tag--new {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

/* --------------------------------------------------------------------------
   10. Trust bar
   -------------------------------------------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-5);
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-item {
  display: flex;
  gap: var(--s-3);
}

.trust-item svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--brand);
}

.trust-item h3 {
  margin: 0 0 2px;
  font-size: 1rem;
}

.trust-item p {
  margin: 0;
  font-size: .9375rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   11. Blok konten & prose
   -------------------------------------------------------------------------- */
.prose {
  max-width: 72ch;
}

.prose h2 {
  margin-top: var(--s-6);
}

.prose h3 {
  margin-top: var(--s-5);
}

.prose h2:first-child,
.prose h3:first-child {
  margin-top: 0;
}

.prose li {
  margin-bottom: var(--s-2);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--s-4);
  font-size: .9375rem;
}

.prose th,
.prose td {
  padding: var(--s-3);
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.prose th {
  background: var(--bg-soft);
  font-weight: 600;
}

.table-scroll {
  overflow-x: auto;
}

/* Dua kolom berdampingan (dipakai untuk blok deskripsi + FAQ di beranda).
   Titik pindahnya 900px, bukan 700px seperti breakpoint lain, karena teks
   panjang dan daftar FAQ jadi terlalu sempit bila dibagi dua lebih awal. */
.split {
  display: grid;
  gap: var(--s-6);
  align-items: start;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
  }
}

/* --------------------------------------------------------------------------
   12. Breadcrumb & page header
   -------------------------------------------------------------------------- */
.breadcrumb {
  padding-block: var(--s-3);
  border-bottom: 1px solid var(--line);
  font-size: .875rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: var(--s-2);
  color: var(--line);
}

.page-head {
  padding-block: var(--s-6) var(--s-5);
  background: var(--bg-soft);
}

.page-head p {
  max-width: 60ch;
  margin: 0;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   13. FAQ (details/summary — tanpa JavaScript)
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 72ch;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--brand);
}

.faq-item[open] summary::after {
  content: "\2013";
}

.faq-item__answer {
  padding-bottom: var(--s-4);
  color: var(--ink-soft);
}

.faq-item__answer > :last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   14. Halaman kontak
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: var(--s-6);
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--line);
}

.contact-list li:first-child {
  padding-top: 0;
}

.contact-list h3 {
  margin-bottom: var(--s-1);
  font-size: 1rem;
}

.contact-list p {
  margin: 0;
  color: var(--ink-soft);
}

.field {
  display: block;
  margin-bottom: var(--s-4);
}

.field > span {
  display: block;
  margin-bottom: var(--s-2);
  font-size: .9375rem;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: var(--s-3);
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 3px var(--brand-soft);
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: var(--s-7);
  padding-top: var(--s-7);
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  font-size: .9375rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s-6);
  padding-bottom: var(--s-6);
}

.footer-col h2 {
  margin-bottom: var(--s-3);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: var(--s-2);
}

.footer-col a {
  color: var(--ink-soft);
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-col address {
  font-style: normal;
  color: var(--ink-soft);
}

.social {
  display: flex;
  gap: var(--s-2);
  margin-top: var(--s-3);
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.social a:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding-block: var(--s-4);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .875rem;
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}

.footer-bottom p {
  margin: 0;
}

/* --------------------------------------------------------------------------
   16. Halaman kategori — toolbar, grid produk, paginasi
   -------------------------------------------------------------------------- */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--line);
}

.toolbar__count {
  margin: 0;
  color: var(--muted);
  font-size: .9375rem;
}

.toolbar__sort {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: .9375rem;
}

.toolbar__sort select {
  min-height: 40px;
  padding: 0 var(--s-3);
  font: inherit;
  font-size: .9375rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* Berbeda dari .product-row: di sini produk dibungkus turun ke bawah,
   bukan digulir ke samping, karena halaman kategori memang untuk menelusuri. */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--s-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination {
  margin-top: var(--s-6);
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 var(--s-3);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .9375rem;
}

.pagination a:hover {
  border-color: var(--brand);
  color: var(--brand);
  text-decoration: none;
}

.pagination [aria-current="page"] {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 700;
}

.pagination .is-disabled {
  color: var(--muted);
  opacity: .5;
}

/* --------------------------------------------------------------------------
   17. Halaman produk — galeri, info beli, spesifikasi
   -------------------------------------------------------------------------- */
.pdp {
  display: grid;
  gap: var(--s-6);
}

.pdp-gallery__main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.pdp-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
  margin: var(--s-2) 0 0;
  padding: 0;
  list-style: none;
}

.pdp-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pdp-info__brand {
  margin-bottom: var(--s-2);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}

.pdp-info h1 {
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem);
}

.pdp-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--s-3);
  margin-bottom: var(--s-2);
}

.pdp-price .price {
  font-size: 1.75rem;
}

.pdp-stock {
  margin-bottom: var(--s-5);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--brand);
}

.pdp-option {
  margin-bottom: var(--s-5);
}

.pdp-option__label {
  display: block;
  margin-bottom: var(--s-2);
  font-size: .9375rem;
  font-weight: 600;
}

.pdp-option__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pdp-option__list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 var(--s-4);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .9375rem;
}

.pdp-option__list a:hover {
  border-color: var(--brand);
  color: var(--brand);
  text-decoration: none;
}

.pdp-option__list [aria-current="true"] {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 600;
}

.pdp-buy {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}

.pdp-buy .qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pdp-buy .qty input {
  width: 56px;
  min-height: 46px;
  padding: 0;
  border: 0;
  font: inherit;
  text-align: center;
  color: var(--ink);
  background: none;
}

.pdp-buy .btn {
  flex: 1 1 200px;
}

.pdp-usp {
  margin: 0 0 var(--s-5);
  padding: var(--s-4);
  background: var(--bg-soft);
  border-radius: var(--radius);
  list-style: none;
}

.pdp-usp li {
  margin-bottom: var(--s-2);
  padding-left: var(--s-5);
  position: relative;
  font-size: .9375rem;
  color: var(--ink-soft);
}

.pdp-usp li:last-child {
  margin-bottom: 0;
}

.pdp-usp li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   18. Breakpoint — tablet ke atas
   -------------------------------------------------------------------------- */
@media (min-width: 700px) {
  .product-row {
    grid-auto-columns: minmax(200px, 30%);
  }

  .hero .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-block: var(--s-7);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
  }

  .pdp {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--s-7);
  }
}

/* --------------------------------------------------------------------------
   19. Breakpoint — desktop
   -------------------------------------------------------------------------- */
@media (min-width: 1000px) {
  :root {
    --header-h: 72px;
  }

  .nav-toggle {
    display: none;
  }

  .search {
    display: flex;
  }

  .logo {
    margin-right: var(--s-6);
  }

  .primary-nav {
    display: block;
    position: static;
    margin-right: auto;
    border: 0;
    box-shadow: none;
  }

  .primary-nav ul {
    flex-direction: row;
    gap: var(--s-5);
    padding: 0;
  }

  .primary-nav a {
    padding: var(--s-2) 0;
    border-bottom: 2px solid transparent;
  }

  .primary-nav a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
    text-decoration: none;
  }

  .primary-nav a[aria-current="page"] {
    border-bottom-color: var(--brand);
  }

  .product-row {
    grid-auto-columns: minmax(0, 1fr);
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: row;
    overflow: visible;
    padding-inline: 0;
  }

  .product-row-wrap {
    margin-inline: 0;
  }

  .section {
    padding-block: var(--s-8);
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --------------------------------------------------------------------------
   20. Preferensi pengguna & cetak
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .announce,
  .site-header,
  .site-footer,
  .hero-media {
    display: none;
  }

  body {
    color: #000;
  }
}
