/* ==================================================
   FERIS TINGWE - STYLE UTAMA
   Berisi style global, layout, komponen, animasi, produk, cart, checkout.
   Media query responsive dipindahkan ke responsive.css.
   ================================================== */

:root,
    [data-theme="light"] {
      --bg: #f8f5ef;
      --bg-2: #fffaf2;
      --surface: rgba(255,255,255,0.72);
      --surface-2: rgba(255,255,255,0.54);
      --border: rgba(34, 29, 22, 0.08);
      --text: #211d18;
      --muted: #6d665d;
      --primary: #0f766e;
      --primary-2: #14b8a6;
      --accent: #ef8f26;
      --accent-soft: rgba(239, 143, 38, 0.16);
      --primary-soft: rgba(15, 118, 110, 0.14);
      --shadow-sm: 0 10px 30px rgba(67, 43, 14, 0.08);
      --shadow-md: 0 24px 60px rgba(67, 43, 14, 0.12);
      --container: 1180px;
    }

    [data-theme="dark"] {
      --bg: #171411;
      --bg-2: #201a15;
      --surface: rgba(35, 29, 24, 0.72);
      --surface-2: rgba(35, 29, 24, 0.55);
      --border: rgba(255,255,255,0.08);
      --text: #f5efe8;
      --muted: #b9afa4;
      --primary: #5ad1c4;
      --primary-2: #7ee7da;
      --accent: #ffb458;
      --accent-soft: rgba(255, 180, 88, 0.14);
      --primary-soft: rgba(90, 209, 196, 0.14);
      --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.22);
      --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.34);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Satoshi", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 10%, rgba(255,255,255,.95), transparent 25%),
        radial-gradient(circle at 85% 15%, rgba(239,143,38,.18), transparent 22%),
        radial-gradient(circle at 80% 80%, rgba(15,118,110,.16), transparent 24%),
        linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
      min-height: 100vh;
      overflow-x: hidden;
    }

.product .meta + .meta {
  justify-content: flex-start;
}

.product .meta .product-title-link {
  cursor: pointer;
}

.product .tag[href],
.product-title-link.tag {
  text-decoration: none;
}
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(15,118,110,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,118,110,.05) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 90%);
      z-index: -2;
    }

    body::after {
      content: "";
      position: fixed;
      width: 28rem;
      height: 28rem;
      border-radius: 50%;
      top: -6rem;
      right: -8rem;
      background: radial-gradient(circle, rgba(239,143,38,.25), transparent 68%);
      filter: blur(10px);
      animation: floatBlob 12s ease-in-out infinite;
      z-index: -1;
      pointer-events: none;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
      border: 0;
      background: none;
      color: inherit;
      cursor: pointer;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    .container {
      width: min(calc(100% - 24px), var(--container));
      margin: 0 auto;
    }

    .progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px;
      width: 0%;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      z-index: 999;
      box-shadow: 0 0 24px rgba(15,118,110,.28);
    }

    .ambient {
      position: fixed;
      width: 18rem;
      height: 18rem;
      left: -6rem;
      bottom: 10%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(15,118,110,.18), transparent 68%);
      filter: blur(12px);
      animation: floatBlob 16s ease-in-out infinite reverse;
      z-index: -1;
      pointer-events: none;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(18px);
      background: color-mix(in srgb, var(--surface) 82%, transparent);
      border-bottom: 1px solid var(--border);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -0.03em;
      font-size: 1.1rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: var(--muted);
      font-size: .95rem;
    }

    .nav-links a {
      position: relative;
      padding: 8px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      transform: scaleX(0);
      transform-origin: left;
      transition: .25s ease;
      background: var(--primary);
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn,
    .toggle,
    .chip {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      padding: 0 18px;
      transition: .25s ease;
    }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 16px 34px rgba(15,118,110,.22);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
    }

    .btn-secondary,
    .toggle {
      border: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface) 92%, white);
      box-shadow: var(--shadow-sm);
    }

    .chip {
      min-height: 40px;
      padding: 0 14px;
      background: rgba(255,255,255,.45);
      border: 1px solid var(--border);
      color: var(--muted);
      backdrop-filter: blur(12px);
    }

    .chip-sm {
      min-height: 34px;
      padding: 0 12px;
    }

    .hero {
      min-height: calc(100vh - 78px);
      display: grid;
      align-items: center;
      padding: 64px 0 32px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 42px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      width: fit-content;
      padding: 10px 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary-soft), rgba(255,255,255,.65));
      border: 1px solid rgba(15,118,110,.16);
      color: var(--primary);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .08em;
      margin-bottom: 18px;
      box-shadow: var(--shadow-sm);
    }

    .hero h1 {
      font-family: "Clash Display", sans-serif;
      font-size: clamp(3rem, 8vw, 6rem);
      line-height: .95;
      letter-spacing: -.05em;
      max-width: 10ch;
    }

    .hero h1 span {
      color: var(--primary);
      text-shadow: 0 10px 30px rgba(15,118,110,.14);
    }

    .hero p {
      max-width: 58ch;
      margin-top: 22px;
      color: var(--muted);
      font-size: clamp(1rem, 1rem + .3vw, 1.18rem);
    }

    .hero-actions,
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .visual {
      position: relative;
      min-height: 620px;
      display: grid;
      place-items: center;
    }

    .stage {
      position: relative;
      width: min(100%, 520px);
      aspect-ratio: .92;
      border-radius: 34px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.72);
      background:
        linear-gradient(160deg, rgba(255,255,255,.72), rgba(255,255,255,.22)),
        linear-gradient(135deg, rgba(15,118,110,.2), rgba(239,143,38,.14));
      box-shadow: var(--shadow-md);
      transform-style: preserve-3d;
    }

    .stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 28% 18%, rgba(255,255,255,.92), transparent 22%),
        radial-gradient(circle at 74% 64%, rgba(239,143,38,.18), transparent 20%);
    }

    .stage::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: radial-gradient(circle at center, rgba(0,0,0,1), transparent 92%);
    }

    .mock-pack {
      position: absolute;
      inset: 12% 15%;
      border-radius: 28px;
      background: color-mix(in srgb, var(--surface) 94%, white);
      border: 1px solid rgba(255,255,255,.8);
      box-shadow: var(--shadow-sm);
      padding: 16px;
      transform: translateZ(70px);
      backdrop-filter: blur(16px);
    }

    .mock-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
    }

    .dots {
      display: flex;
      gap: 6px;
    }

    .dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(34,29,22,.12);
    }

    .pack-box {
      position: relative;
      width: min(100%, 250px);
      margin: 0 auto;
      aspect-ratio: .72;
      border-radius: 28px;
      overflow: hidden;
      background: linear-gradient(180deg, #fff8e8, #edd8b4);
      box-shadow: 0 18px 30px rgba(102, 68, 20, .12);
    }

    .pack-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(115deg, transparent 0 35%, rgba(255,255,255,.55) 46%, transparent 56%),
        radial-gradient(circle at 50% 20%, rgba(15,118,110,.10), transparent 26%);
      animation: shine 6s linear infinite;
      z-index: 3;
      pointer-events: none;
    }

    .pack-img {
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-height: 290px;
      height: auto;
      object-fit: contain;
      z-index: 2;
      opacity: 1;
      transition: opacity .5s ease;
    }

    .pack-label {
      position: absolute;
      left: 50%;
      bottom: 12px;
      transform: translateX(-50%);
      width: calc(100% - 20px);
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.85);
      border-radius: 18px;
      padding: 12px 14px;
      box-shadow: 0 12px 24px rgba(67, 43, 14, .10);
      z-index: 5;
      text-align: left;
    }

    .pack-label small {
      display: block;
      margin-bottom: 4px;
      font-size: .70rem;
      font-weight: 800;
      letter-spacing: .12em;
      color: #b07a2a;
      text-transform: uppercase;
    }

    .pack-label strong {
      display: block;
      margin-bottom: 4px;
      font-family: "Clash Display", sans-serif;
      font-size: 1.05rem;
      line-height: 1.05;
      letter-spacing: -.03em;
      color: #211d18;
    }

    .pack-label span {
      display: block;
      font-size: .82rem;
      font-weight: 600;
      color: var(--muted);
    }

    .floating,
    .mini,
    .ring {
      position: absolute;
      border: 1px solid rgba(255,255,255,.7);
      background: color-mix(in srgb, var(--surface) 92%, white);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow-sm);
    }

    .floating {
      position: absolute;
      top: 4%;
      right: 0;
      width: 190px;
      border-radius: 24px;
      padding: 18px;
      animation: bob 7s ease-in-out infinite;
      transform: translateZ(90px);
      z-index: 8;
    }

    .floating h3 {
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .floating p {
      color: var(--muted);
      font-size: .86rem;
    }

    .mini {
      position: absolute;
      left: -4%;
      bottom: 12%;
      width: 150px;
      border-radius: 22px;
      padding: 14px;
      animation: bob 8s ease-in-out infinite reverse;
      transform: translateZ(90px);
      z-index: 7;
    }

    .line {
      position: relative;
      height: 12px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(15,118,110,.24), rgba(239,143,38,.44));
      overflow: hidden;
      margin-bottom: 10px;
    }

    .line::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent);
      animation: scan 2.4s linear infinite;
    }

    .line--82 {
      width: 82%;
    }

    .line--64 {
      width: 64%;
      margin-bottom: 0;
    }

    .ring {
      position: absolute;
      width: 90px;
      height: 90px;
      right: 6%;
      bottom: 13%;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.3);
      animation: pulse 3.2s ease-out infinite;
      z-index: 6;
    }

    .ring span {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      font-weight: 900;
      text-align: center;
      line-height: 1.05;
      background: var(--primary);
      box-shadow: 0 14px 26px rgba(15,118,110,.24);
    }

    section {
      padding: 40px 0 96px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 26px;
    }

    .card,
    .feature,
    .product,
    .story,
    .quote {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface) 94%, white);
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(14px);
    }

    .card {
      padding: 22px;
    }

    .card strong {
      display: block;
      font-family: "Clash Display", sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: -.04em;
      line-height: 1;
    }

    .card span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      margin-bottom: 22px;
    }

    .section-head h2 {
      font-family: "Clash Display", sans-serif;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: .98;
      letter-spacing: -.04em;
      max-width: 10ch;
    }

    .section-head p {
      max-width: 54ch;
      color: var(--muted);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 16px;
    }

    .feature {
      padding: 28px;
    }

    .kicker {
      display: inline-flex;
      width: fit-content;
      padding: 9px 12px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .feature h3,
    .product h3,
    .story h3 {
      font-size: clamp(1.5rem, 2vw, 2rem);
      letter-spacing: -.03em;
      line-height: 1.08;
    }

    .feature p,
    .product p,
    .story p,
    .quote p {
      color: var(--muted);
      margin-top: 12px;
    }

    .pill-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 20px;
    }

    .pill {
      padding: 16px;
      border-radius: 20px;
      border: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface-2) 90%, white);
    }

    .pill strong {
      display: block;
      font-size: .98rem;
      margin-bottom: 4px;
    }

    .bars {
      display: grid;
      gap: 12px;
      margin-top: 22px;
    }

    .bar {
      display: grid;
      grid-template-columns: 100px 1fr auto;
      gap: 12px;
      align-items: center;
      font-size: .92rem;
    }

    .track {
      height: 12px;
      border-radius: 999px;
      background: rgba(0,0,0,.06);
      overflow: hidden;
    }

    .track span {
      display: block;
      height: 100%;
      width: var(--w);
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      box-shadow: 0 10px 20px rgba(15,118,110,.2);
    }

    .bar-fill--92 { --w: 92%; }
    .bar-fill--88 { --w: 88%; }
    .bar-fill--84 { --w: 84%; }
    .bar-fill--96 { --w: 96%; }

    .products {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .product {
      padding: 22px;
      transition: transform .25s ease, box-shadow .25s ease;
      transform-style: preserve-3d;
    }

    .product:hover {
      transform: translateY(-6px) rotateX(3deg) rotateY(-3deg);
      box-shadow: var(--shadow-md);
    }

    .thumb {
      position: relative;
      aspect-ratio: 1.03;
      border-radius: 22px;
      margin-bottom: 18px;
      overflow: hidden;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 35% 20%, rgba(255,255,255,.9), transparent 26%),
        linear-gradient(145deg, rgba(15,118,110,.18), rgba(239,143,38,.18));
      border: 1px solid rgba(255,255,255,.7);
      padding: 12px;
    }

    .thumb-pack {
      position: relative;
      width: 76%;
      height: 90%;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #fff8e8, #ebd6b3);
      box-shadow: 0 18px 30px rgba(102, 68, 20, .12);
    }

    .thumb-pack::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,.70) 47%, transparent 57%);
      animation: shine 7s linear infinite;
      z-index: 2;
      pointer-events: none;
    }

    .product-img {
      width: 96%;
      height: 96%;
      object-fit: contain;
      position: relative;
      z-index: 1;
      transform: scale(1.18);
      transform-origin: center;
      filter: drop-shadow(0 14px 22px rgba(67, 43, 14, 0.18));
    }

    .meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-top: 16px;
    }

    .product-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-btn {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 92%, white);
  color: var(--text);
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.desc-btn {
  background: var(--accent-soft);
  color: #8d4f10;
}

.order-btn {
  background: var(--primary-soft);
  color: var(--primary);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  width: min(100%, 560px);
  border-radius: 24px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 96%, white);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  padding: 24px;
}

.modal-title {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}

.modal-text {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.modal-platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.modal-platform-btn {
  min-height: 46px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 92%, white);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}

.modal-platform-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-weight: 800;
}

.modal-btn-secondary {
  background: color-mix(in srgb, var(--surface) 92%, white);
  color: var(--text);
}

.modal-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  border: none;
}

    .tag {
      display: inline-flex;
      min-height: 34px;
      align-items: center;
      padding: 0 12px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: #8d4f10;
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .price {
      font-size: 1.2rem;
      font-weight: 900;
      letter-spacing: -.03em;
    }

    .story-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 16px;
    }

    .story {
      padding: 28px;
    }

    .flow {
      display: grid;
      gap: 16px;
      margin-top: 20px;
    }

    .flow-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      align-items: start;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }

    .flow-item:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .step {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 12px 24px rgba(15,118,110,.2);
    }

    .marquee {
      margin-top: 22px;
      padding: 16px 0;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, transparent);
      border-block: 1px solid var(--border);
    }

    .marquee-track {
      display: flex;
      gap: 12px;
      width: max-content;
      animation: marquee 22s linear infinite;
    }

    .marquee-track span {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface) 92%, white);
      color: var(--muted);
      box-shadow: var(--shadow-sm);
      white-space: nowrap;
    }

    .quotes {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .quote {
      padding: 24px;
    }

    .author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
    }

    .avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--accent));
    }

    .author-role {
      color: var(--muted);
    }

    .contact-order {
      padding-top: 40px;
    }

    .contact-head {
      text-align: center;
      max-width: 860px;
      margin: 0 auto 28px;
    }

    .contact-head .kicker {
      margin-inline: auto;
    }

    .contact-head h2 {
      font-family: "Clash Display", sans-serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1.05;
      letter-spacing: -.04em;
      margin-bottom: 14px;
    }

    .contact-head p {
      color: var(--muted);
      max-width: 70ch;
      margin: 0 auto;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 20px;
      align-items: stretch;
    }

    .contact-card,
    .contact-form-box {
      border-radius: 28px;
      border: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface) 95%, white);
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(14px);
      overflow: hidden;
    }

    .contact-image {
      aspect-ratio: 1.05;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(15,118,110,.14), rgba(239,143,38,.12));
    }

    .contact-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .contact-info {
      padding: 24px;
    }

    .contact-info h3,
    .contact-form-box h3 {
      font-size: 1.7rem;
      letter-spacing: -.03em;
      margin-bottom: 10px;
    }

    .contact-form-box > p,
    .contact-info > p {
      color: var(--muted);
    }

    .contact-item {
      display: grid;
      grid-template-columns: 50px 1fr;
      gap: 14px;
      align-items: start;
      margin-top: 18px;
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-size: 1.1rem;
      background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
      color: var(--primary);
      border: 1px solid var(--border);
    }

    .contact-item small {
      display: block;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .contact-item strong {
      line-height: 1.5;
    }

    .contact-form-box {
      padding: 28px;
    }

    .contact-form {
      margin-top: 18px;
    }

    .contact-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 8px;
      margin-bottom: 14px;
    }

    .field label {
      font-size: .92rem;
      font-weight: 700;
      color: var(--text);
    }

    .field input,
    .field textarea {
      width: 100%;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface-2) 92%, white);
      color: var(--text);
      padding: 14px 16px;
      font: inherit;
      outline: none;
      transition: .25s ease;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: rgba(15,118,110,.35);
      box-shadow: 0 0 0 4px rgba(15,118,110,.08);
    }

    .field textarea {
      resize: vertical;
      min-height: 180px;
    }

    .contact-actions {
      margin-top: 8px;
    }

    .nav-links a,
    .btn,
    .chip,
    .footer-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .nav-links i,
    .btn i,
    .chip i,
    .footer-link i {
      line-height: 1;
      font-size: 0.95em;
    }

    .contact-icon i {
      font-size: 1.1rem;
    }

    .stat-card {
      display: grid;
      grid-template-columns: 1fr 72px;
      align-items: center;
      gap: 18px;
      padding: 26px 24px;
      min-height: 150px;
    }

    .stat-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      flex: 1;
    }

    .stat-card strong {
      font-family: "Clash Display", sans-serif;
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 10px;
    }

    .stat-card span {
      font-size: 1rem;
      color: var(--muted);
    }

    .stat-icon {
      width: 72px;
      height: 72px;
      flex-shrink: 0;
      border-radius: 20px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
      border: 1px solid var(--border);
      color: var(--primary);
      font-size: 2rem;
    }

    .section-head-products {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
    }

    .section-head-text {
      flex: 1;
    }

    .lihat-semua-btn {
      flex-shrink: 0;
      white-space: nowrap;
    }

    .footer {
      padding: 36px 0 72px;
    }

    .footer-wrap {
      position: relative;
      overflow: hidden;
      padding: 34px 36px 24px;
      border-radius: 30px;
      border: 1px solid var(--border);
      background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.84), transparent 26%),
        radial-gradient(circle at bottom right, rgba(15, 118, 110, 0.10), transparent 24%),
        radial-gradient(circle at 85% 20%, rgba(239, 143, 38, 0.10), transparent 20%),
        color-mix(in srgb, var(--surface) 95%, white);
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(16px);
    }

    .footer-top,
    .footer-bottom {
      position: relative;
      z-index: 1;
    }

    .footer-top {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
      gap: 36px;
      align-items: center;
    }

    .footer-brand {
      display: grid;
      grid-template-columns: 180px minmax(0, 1fr);
      align-items: center;
      gap: 18px;
      min-width: 0;
    }

    .footer-logo {
      width: 180px;
      min-height: 170px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: -8px;
    }

    .footer-logo-img {
      width: 100%;
      max-width: 170px;
      max-height: 165px;
      height: auto;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 18px 34px rgba(67, 43, 14, 0.16));
    }

    .footer-brand-text h3 {
      font-family: "Clash Display", sans-serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      letter-spacing: -0.04em;
      line-height: 0.95;
      margin-bottom: 10px;
    }

    .footer-brand-text p {
      color: var(--muted);
      line-height: 1.85;
      max-width: 28ch;
      font-size: 1rem;
    }

    .footer-socials {
      display: grid;
      grid-template-columns: repeat(3, minmax(130px, 1fr));
      gap: 12px;
      justify-content: end;
      align-content: start;
    }

    .footer-link {
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 0.92rem;
      font-weight: 800;
      color: #fff;
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
      box-shadow: var(--shadow-sm);
      white-space: nowrap;
      border: none;
      opacity: 1;
    }

    .footer-link:hover {
      transform: translateY(-3px) scale(1.03);
      filter: saturate(1.08);
    }

    .footer-link.wa { background: linear-gradient(135deg, #0c7c67 0%, #11998e 50%, #1ec7b6 100%); }
    .footer-link.shopee { background: linear-gradient(135deg, #d93f22 0%, #ee4d2d 50%, #ff7a45 100%); }
    .footer-link.tokopedia { background: linear-gradient(135deg, #2d9435 0%, #42b549 50%, #71db78 100%); }
    .footer-link.tiktok { background: linear-gradient(135deg, #050505 0%, #151515 50%, #2d2d2d 100%); }
    .footer-link.facebook { background: linear-gradient(135deg, #1877f2 0%, #2d88ff 50%, #60a5fa 100%); }
    .footer-link.instagram { background: linear-gradient(135deg, #833ab4 0%, #e1306c 50%, #f77737 100%); }

    .footer-bottom {
      margin-top: 26px;
      padding-top: 18px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .footer-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .footer-badge {
      min-height: 34px;
      padding: 0 14px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      background: rgba(239, 143, 38, 0.14);
      border: 1px solid rgba(239, 143, 38, 0.24);
      color: #9a5a14;
      font-size: 0.82rem;
      font-weight: 700;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px) scale(.98);
      transition: .7s cubic-bezier(.16,1,.3,1);
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .magnetic {
      position: relative;
    }

/* === Tambahan dari file 1 yang belum ada di file 2 === */
button,
input,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-hero {
  padding: 72px 0 28px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 28px;
  align-items: end;
}

.page-hero h1 {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: .95;
  letter-spacing: -.05em;
  max-width: 10ch;
}

.page-hero p {
  color: var(--muted);
  max-width: 58ch;
  margin-top: 16px;
  font-size: 1.05rem;
}

.toolbar {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: center;
}

.search-wrap,
.filter-wrap {
  position: relative;
}

.search-input,
.filter-select {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  padding: 0 18px 0 48px;
  outline: none;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 92%, white);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

.filter-select {
  appearance: none;
  padding-right: 44px;
  cursor: pointer;
}

.search-wrap i,
.filter-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .95rem;
  pointer-events: none;
}

.filter-wrap .fa-chevron-down {
  left: auto;
  right: 16px;
}

.products-section {
  padding: 18px 0 90px;
}

.result-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.result-bar p {
  color: var(--muted);
}

.empty-state {
  display: none;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 94%, white);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

.hidden {
  display: none !important;
}

.review-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 4px;
}

.review-slider::-webkit-scrollbar {
  display: none;
}

.review-slider .quote {
  min-width: 320px;
  max-width: 320px;
  flex: 0 0 auto;
}

.review-nav {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.review-stars {
  font-size: 14px;
  color: #f5a623;
  margin-bottom: 4px;
  letter-spacing: 2px;
}

.review-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 24px;
}

.review-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewScroll 28s linear infinite;
  will-change: transform;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  min-width: 320px;
  max-width: 320px;
  flex: 0 0 auto;
}

@keyframes reviewScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.grade-box {
  margin-top: 14px;
}

.grade-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #6b6b6b;
}

.grade-list-preview,
.modal-grade-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.grade-chip,
.grade-chip-btn {
  width: 100%;
  min-height: 32px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.grade-chip {
  color: #fff;
  pointer-events: none;
  opacity: .95;
}

.grade-chip-btn {
  border: none;
  color: #fff;
  cursor: pointer;
  transition: .2s ease;
}

.grade-chip-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.grade-chip-btn.active {
  outline: 3px solid rgba(0,0,0,.12);
  transform: scale(1.03);
}

.modal-grade-section {
  margin: 16px 0 14px;
}

.modal-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  margin-bottom: 16px;
}

.modal-price-wrap strong {
  font-size: 24px;
  font-weight: 900;
}

.meta-product {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-grade-desc,
.btn-grade-order,
.modal-actions button,
.modal-actions a {
  border: none;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.btn-grade-desc,
.modal-actions button {
  background: #f1f1f1;
  color: #333;
}

.btn-grade-order,
.modal-actions a {
  background: #17b3a3;
  color: #fff;
}

.marketplace-strip {
  margin-top: 26px;
  width: 100%;
  padding: 20px 22px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 94%, white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.marketplace-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
}

.marketplace-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,1) 8%,
    rgba(0,0,0,1) 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,1) 8%,
    rgba(0,0,0,1) 92%,
    transparent 100%
  );
}

.marketplace-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: marketplaceScroll 24s linear infinite;
  will-change: transform;
}

.marketplace-item {
  flex: 0 0 auto;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 800;
  font-size: .98rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
}

.marketplace-item i {
  font-size: 1.05rem;
}

/* warna per marketplace */
.marketplace-item.wa {
  background: rgba(37, 211, 102, 0.14);
  color: #128c7e;
  border-color: rgba(37, 211, 102, 0.24);
}

.marketplace-item.shopee {
  background: rgba(238, 77, 45, 0.14);
  color: #ee4d2d;
  border-color: rgba(238, 77, 45, 0.22);
}

.marketplace-item.tokopedia {
  background: rgba(66, 181, 73, 0.14);
  color: #2d9435;
  border-color: rgba(66, 181, 73, 0.22);
}

.marketplace-item.tiktok {
  background: rgba(0, 0, 0, 0.10);
  color: #111111;
  border-color: rgba(0, 0, 0, 0.14);
}

.marketplace-item.facebook {
  background: rgba(24, 119, 242, 0.14);
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.22);
}

.marketplace-item.instagram {
  background: rgba(225, 48, 108, 0.14);
  color: #c13584;
  border-color: rgba(225, 48, 108, 0.22);
}

@keyframes marketplaceScroll {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}
/* ==================================================
   PRODUK PAGE - GRADE, HARGA DINAMIS, DAN KERANJANG
   Versi aman: selector produk dibuat spesifik ke .products-section
   supaya halaman lain yang memakai .meta / .product-btn tidak ikut berubah.
   ================================================== */

.header-cart-btn {
  position: relative;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  background: linear-gradient(135deg, #19b7ae, #0f8f88);
  color: #fff;
  box-shadow: 0 12px 28px rgba(25, 183, 174, .25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-cart-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(25, 183, 174, .32); }
.header-cart-count {
  min-width: 22px; height: 22px; border-radius: 999px; background: #fff; color: #0f8f88;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; padding: 0 6px;
}

.products-section .grade-list-preview { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.products-section .grade-chip-btn-card,
.modal-grade-list .grade-chip-btn {
  border: none; color: #fff; border-radius: 999px; padding: 8px 14px; font-size: 12px; font-weight: 800;
  cursor: pointer; transition: all .2s ease; min-width: 54px; text-align: center;
}
.products-section .grade-chip-btn-card:hover,
.modal-grade-list .grade-chip-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.products-section .grade-chip-btn-card.active,
.modal-grade-list .grade-chip-btn.active {
  box-shadow: 0 0 0 3px rgba(25, 183, 174, .18); outline: 2px solid rgba(25, 183, 174, .55);
  transform: translateY(-1px) scale(1.02);
}
.products-section .meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.products-section .product-actions { display: flex; flex-wrap: wrap; gap: 8px; flex: 1 1 auto; }
.products-section .product-btn { border: none; border-radius: 999px; padding: 10px 14px; font-weight: 800; cursor: pointer; transition: .2s ease; font-size: 13px; }
.products-section .product-btn:hover { transform: translateY(-1px); }
.products-section .detail-btn { background: #f5e8d8; color: #9b5c16; }
.products-section .cart-btn { background: #dff7f4; color: #0f8f88; }
.products-section .buy-btn { background: linear-gradient(135deg, #19b7ae, #0f8f88); color: #fff; box-shadow: 0 12px 24px rgba(25, 183, 174, .22); }
.products-section .product-price { font-size: 28px; font-weight: 900; line-height: 1; white-space: nowrap; }

.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.42); opacity: 0; visibility: hidden; transition: .25s ease; z-index: 9997; }
.cart-overlay.show { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; width: min(440px, 100%); height: 100vh; background: #fff;
  box-shadow: -18px 0 50px rgba(15, 23, 42, .16); z-index: 9998; transform: translateX(100%);
  transition: transform .28s ease; display: flex; flex-direction: column;
}
.cart-drawer.show { transform: translateX(0); }
.cart-header { padding: 20px 18px 16px; border-bottom: 1px solid rgba(15, 23, 42, .08); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cart-title { margin: 0; font-size: 22px; line-height: 1.1; }
.cart-close { border: none; width: 42px; height: 42px; border-radius: 999px; cursor: pointer; background: #f3f4f6; color: #111827; font-size: 18px; font-weight: 800; }
.cart-body { flex: 1; overflow: auto; padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; }
.cart-empty { border: 1px dashed rgba(15, 23, 42, .14); border-radius: 20px; padding: 22px; text-align: center; color: #6b7280; font-weight: 600; }
.cart-item { border: 1px solid rgba(15, 23, 42, .08); border-radius: 20px; padding: 14px; display: flex; gap: 12px; align-items: flex-start; background: #fff; }
.cart-item-image { width: 68px; height: 68px; border-radius: 16px; object-fit: cover; background: #f3f4f6; flex-shrink: 0; }
.cart-item-content { flex: 1; min-width: 0; }
.cart-item-name { margin: 0 0 6px; font-size: 15px; font-weight: 900; line-height: 1.25; }
.cart-item-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; color: #6b7280; margin-bottom: 10px; }
.cart-badge { border-radius: 999px; padding: 5px 10px; background: #eef7f6; color: #0f8f88; font-weight: 800; }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.cart-qty { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(15, 23, 42, .08); border-radius: 999px; padding: 6px; }
.cart-qty button { width: 32px; height: 32px; border: none; border-radius: 999px; cursor: pointer; background: #f3f4f6; font-weight: 900; color: #111827; }
.cart-qty span { min-width: 24px; text-align: center; font-weight: 800; }
.cart-item-price { text-align: right; }
.cart-item-price strong { display: block; font-size: 16px; line-height: 1.1; }
.cart-remove { margin-top: 10px; border: none; background: transparent; color: #dc2626; font-weight: 800; cursor: pointer; padding: 0; font-size: 12px; }
.cart-footer { border-top: 1px solid rgba(15, 23, 42, .08); padding: 18px; display: flex; flex-direction: column; gap: 14px; background: #fff; }
.cart-summary-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 14px; }
.cart-summary-row.total { font-size: 18px; font-weight: 900; }
.cart-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cart-action-btn { border: none; border-radius: 999px; min-height: 48px; padding: 12px 16px; font-weight: 900; cursor: pointer; transition: .2s ease; }
.cart-action-btn.secondary { background: #eef7f6; color: #0f8f88; }
.cart-action-btn.primary { background: linear-gradient(135deg, #19b7ae, #0f8f88); color: #fff; box-shadow: 0 12px 24px rgba(25, 183, 174, .22); }
.toast-wrap { position: fixed; right: 18px; bottom: 18px; z-index: 10000; display: flex; flex-direction: column; gap: 10px; }
.toast-item { background: #111827; color: #fff; border-radius: 16px; padding: 12px 16px; min-width: 220px; box-shadow: 0 18px 40px rgba(0,0,0,.18); animation: fadeInUp .25s ease; font-weight: 700; font-size: 14px; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.checkout-wrap { padding: 50px 0 90px; }
    .checkout-grid { display:grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); gap:20px; align-items:start; }
    .checkout-card { border-radius:28px; border:1px solid var(--border); background: color-mix(in srgb, var(--surface) 95%, white); box-shadow: var(--shadow-sm); padding:24px; }
    .checkout-card h2 { font-family:"Clash Display", sans-serif; font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1; letter-spacing:-.03em; margin-bottom: 10px; }
    .checkout-card p { color: var(--muted); }
    .checkout-grid-2 { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:14px; }
    .checkout-field { display:grid; gap:8px; margin-top:14px; }
    .checkout-field label { font-weight:700; font-size:.92rem; }
    .checkout-field input, .checkout-field textarea, .checkout-field select {
      width:100%; min-height:50px; border-radius:16px; border:1px solid var(--border);
      background: color-mix(in srgb, var(--surface) 92%, white); color:var(--text);
      padding:12px 14px; font:inherit; outline:none;
    }
    .checkout-field input[readonly] {
      background:#f3f4f6;
      cursor:not-allowed;
    }
    .checkout-field textarea { min-height:110px; resize:vertical; }
    .checkout-badge { display:inline-flex; gap:8px; align-items:center; padding:9px 14px; border-radius:999px; background:var(--primary-soft); color:var(--primary); font-weight:800; font-size:.82rem; margin-bottom:14px; }
    .checkout-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:20px; }
    .checkout-actions-inline { display:grid; grid-template-columns:auto 1fr; gap:14px; align-items:start; }
    .summary-product { display:grid; grid-template-columns: 96px 1fr; gap:16px; align-items:center; margin-bottom:18px; }
    .summary-thumb { width:96px; height:96px; border-radius:22px; overflow:hidden; background:linear-gradient(145deg, rgba(15,118,110,.18), rgba(239,143,38,.18)); display:grid; place-items:center; border:1px solid rgba(255,255,255,.7); }
    .summary-thumb img { width:88%; height:88%; object-fit:contain; }
    .summary-row { display:flex; justify-content:space-between; gap:14px; padding:12px 0; border-bottom:1px solid var(--border); }
    .summary-row:last-child { border-bottom:none; }
    .summary-total { font-size:1.4rem; font-weight:900; }
    .status-box, .result-box { margin-top:18px; padding:16px; border-radius:18px; border:1px solid var(--border); background: color-mix(in srgb, var(--surface) 94%, white); }
    .status-box.warning, .result-box.warning { background: rgba(239,143,38,.10); border-color: rgba(239,143,38,.22); color:#9a5a14; }
    .muted-text { color: var(--muted); font-size:.92rem; }
    .hidden { display:none !important; }

    .cart-summary-list {
      display: grid;
      gap: 12px;
      margin-top: 14px;
      margin-bottom: 18px;
    }
    .cart-summary-item {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 12px;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 12px;
      background: color-mix(in srgb, var(--surface) 95%, white);
    }
    .cart-summary-item img {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      object-fit: cover;
      background: #f3f4f6;
    }
    .cart-summary-item-name {
      font-weight: 800;
      margin-bottom: 4px;
    }
    .cart-summary-item-meta {
      font-size: .86rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .shipping-picker { position: relative; width: 100%; }
    .shipping-trigger {
      width:100%; min-height:56px; border:1px solid var(--border); border-radius:18px;
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.92));
      color:var(--text); display:grid; grid-template-columns:1fr auto;
      grid-template-areas:"label icon" "meta icon"; gap:2px 12px; align-items:center;
      padding:12px 16px; text-align:left; cursor:pointer;
      box-shadow:0 10px 24px rgba(15, 23, 42, .06); transition:.2s ease;
    }
    .shipping-trigger:hover { transform: translateY(-1px); box-shadow:0 14px 30px rgba(15, 23, 42, .08); }
    .shipping-trigger:disabled { opacity:.65; cursor:not-allowed; }
    .shipping-trigger-label { grid-area:label; font-weight:800; font-size:.95rem; }
    .shipping-trigger-meta { grid-area:meta; font-size:.82rem; color:var(--muted); }
    .shipping-trigger i { grid-area:icon; color:var(--muted); }

    .shipping-dropdown {
      position: absolute; top: auto; bottom: calc(100% + 10px); left: 0; right: 0; z-index: 30;
      background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border: 1px solid rgba(15, 23, 42, .08);
      border-radius: 22px; box-shadow: 0 24px 60px rgba(15, 23, 42, .14); padding: 14px;
    }
    .shipping-dropdown-head { display:flex; flex-direction:column; gap:2px; padding:4px 4px 12px; }
    .shipping-options-modern { display:grid; gap:10px; max-height:320px; overflow-y:auto; padding-right:2px; }
    .shipping-option-modern {
      width:100%; border:1px solid var(--border); border-radius:18px;
      background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,250,252,.95));
      padding:14px 16px; display:grid; grid-template-columns:1fr auto;
      gap:10px 14px; align-items:center; cursor:pointer; transition:.18s ease;
    }
    .shipping-option-modern:hover {
      transform:translateY(-1px);
      border-color:rgba(15,118,110,.32);
      box-shadow:0 12px 28px rgba(15,118,110,.10);
    }
    .shipping-option-modern.active {
      border-color:var(--primary);
      background:linear-gradient(180deg, rgba(15,118,110,.08), rgba(255,255,255,.98));
      box-shadow:0 0 0 3px rgba(15,118,110,.08);
    }
    .shipping-main { display:flex; flex-direction:column; gap:4px; }
    .shipping-name { font-weight:800; font-size:.96rem; line-height:1.2; }
    .shipping-sub { color:var(--muted); font-size:.82rem; }
    .shipping-price-modern { text-align:right; font-weight:900; font-size:1rem; white-space:nowrap; }
    .shipping-badges { display:flex; flex-wrap:wrap; gap:8px; margin-top:6px; }
    .shipping-badge {
      display:inline-flex; align-items:center; gap:6px; width:fit-content;
      padding:5px 10px; border-radius:999px; font-size:.75rem; font-weight:800;
    }
    .shipping-badge.badge-primary { background:rgba(15,118,110,.10); color:var(--primary); }
    .shipping-badge.badge-warning { background:rgba(239,143,38,.12); color:#b0620f; }
    .shipping-badge.badge-dark { background:rgba(17,24,39,.08); color:#111827; }

    

/* ==================================================
   PRODUK FRONTEND: DROPDOWN GRADE + UKURAN
   Tempel di paling bawah style.css
   ================================================== */

.variant-select-box {
  margin-top: 14px;
}

.variant-select-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted, #6b7280);
}

.variant-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.variant-field {
  display: grid;
  gap: 6px;
}

.variant-field small {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted, #6b7280);
}

.variant-select {
  width: 100%;
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border, rgba(15,23,42,.10));
  background: color-mix(in srgb, var(--surface, #fff) 94%, white);
  color: var(--text, #111827);
  padding: 0 12px;
  font-weight: 800;
  outline: none;
  cursor: pointer;
}

.variant-select:focus {
  border-color: rgba(20, 184, 166, .55);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, .12);
}

.selected-variant-note {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(20, 184, 166, .10);
  color: #0f766e;
  font-size: 12px;
  font-weight: 800;
}

.modal-variant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.product-category-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: inherit;
}

.product-category-link .thumb {
  cursor: pointer;
}

.product-category-link:hover .product-img {
  transform: scale(1.04);
}

.product-title-link {
  color: inherit;
  text-decoration: none;
}

.product-title-link:hover {
  color: #0f766e;
}

.selected-variant-note.is-out-stock {
  background: rgba(239, 68, 68, .12);
  color: #b91c1c;
}

.product-btn.is-disabled,
.product-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  filter: grayscale(1);
}

.selected-variant-note.is-low-stock {
  background: rgba(245, 158, 11, .14);
  color: #b45309;
}

.variant-select option:disabled {
  color: #999;
  background: #f3f4f6;
}

/* ==================================================
   FIX DROPDOWN GRADE & UKURAN PRODUK
   ================================================== */

.product select,
.product-card select,
.card-product select,
.grade-select,
.size-select,
select[name="grade"],
select[name="size"] {
  width: 100%;
  height: 38px;
  min-height: 38px;
  padding: 8px 34px 8px 12px;
  border: 1px solid rgba(20, 184, 166, .45);
  border-radius: 12px;
  background-color: #ffffff !important;
  color: #111827 !important;
  font-size: 13px;
  font-weight: 800;
  outline: none;
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: menulist;
}

.product select option,
.product-card select option,
.card-product select option,
.grade-select option,
.size-select option,
select[name="grade"] option,
select[name="size"] option {
  background: #ffffff !important;
  color: #111827 !important;
  font-size: 13px;
  font-weight: 700;
}

.product select:focus,
.product-card select:focus,
.card-product select:focus,
.grade-select:focus,
.size-select:focus,
select[name="grade"]:focus,
select[name="size"]:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, .16);
}

/* ==================================================
   FIX DROPDOWN GRADE & UKURAN PRODUK
   ================================================== */

.variant-select,
.js-grade-select,
.js-size-select,
#modalGradeSelect,
#modalSizeSelect {
  width: 100%;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(20, 184, 166, .45);
  border-radius: 12px;
  background: #ffffff !important;
  color: #111827 !important;
  font-size: 13px;
  font-weight: 800;
  outline: none;
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: menulist;
}

.variant-select option,
.js-grade-select option,
.js-size-select option,
#modalGradeSelect option,
#modalSizeSelect option {
  background: #ffffff !important;
  color: #111827 !important;
  font-size: 13px;
  font-weight: 700;
}

.variant-select:focus,
.js-grade-select:focus,
.js-size-select:focus,
#modalGradeSelect:focus,
#modalSizeSelect:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, .16);
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .checkout-wrap,
  .checkout-container,
  .checkout-layout,
  .checkout-grid {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px !important;
    margin: 0 auto !important;
  }

  .checkout-card,
  aside.checkout-card,
  .checkout-form-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 0 16px 0 !important;
    box-sizing: border-box !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
  }

  aside.checkout-card {
    order: 2;
  }

  .checkout-card h2,
  aside.checkout-card h2 {
    font-size: 24px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.5px !important;
    word-spacing: 2px !important;
    white-space: normal !important;
  }

  .summary-product {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .summary-thumb {
    width: 62px !important;
    height: 62px !important;
    min-width: 62px !important;
    border-radius: 16px !important;
  }

  .summary-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .cart-summary-list {
    display: grid !important;
    gap: 12px !important;
  }

  .cart-summary-item {
    display: flex !important;
    gap: 12px !important;
    align-items: flex-start !important;
    padding: 12px 0 !important;
  }

  .cart-summary-item img {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    border-radius: 14px !important;
    object-fit: cover !important;
  }

  .cart-summary-item-name {
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  .cart-summary-item-meta {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .cart-total-box {
    margin-top: 12px !important;
    padding: 12px !important;
    border-radius: 16px !important;
  }

  .summary-row {
    display: flex !important;
    justify-content: space-between !important;
    gap: 12px !important;
    align-items: center !important;
    font-size: 13px !important;
  }

  .summary-row strong,
  .summary-total {
    text-align: right !important;
    font-size: 14px !important;
  }

  .form-grid,
  .receiver-grid,
  .shipping-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  input,
  select,
  textarea,
  button {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

.payment-method-list {
  display: grid;
  gap: 12px;
}

.payment-method-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  cursor: pointer;
  transition: .2s ease;
}

.payment-method-item.active {
  border-color: rgba(25, 183, 174, .75);
  box-shadow: 0 0 0 4px rgba(25, 183, 174, .10);
}

.payment-method-item input {
  margin-top: 4px;
}

.payment-method-main {
  display: grid;
  gap: 4px;
}

.payment-method-main strong {
  color: #0f172a;
}

.payment-method-main small {
  color: #64748b;
  line-height: 1.5;
}

.payment-method-main em {
  margin-top: 6px;
  color: #0f766e;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
}

.payment-instruction-box {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(25, 183, 174, .10);
  color: #0f766e;
  line-height: 1.5;
  font-weight: 700;
}

.payment-qris-preview {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  text-align: center;
}

.payment-qris-preview img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.payment-method-list {
  display: grid;
  gap: 12px;
}

.payment-method-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  cursor: pointer;
  transition: .2s ease;
}

.payment-method-item.active {
  border-color: rgba(25, 183, 174, .75);
  box-shadow: 0 0 0 4px rgba(25, 183, 174, .10);
}

.payment-method-item input {
  margin-top: 4px;
}

.payment-method-main {
  display: grid;
  gap: 4px;
}

.payment-method-main small {
  color: #64748b;
  line-height: 1.5;
}

.payment-method-main em {
  margin-top: 6px;
  color: #0f766e;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
}

.payment-instruction-box {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(25, 183, 174, .10);
  color: #0f766e;
  line-height: 1.5;
  font-weight: 700;
}

.payment-qris-preview {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  text-align: center;
}

.payment-qris-preview img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .brand-logo {
      width: 38px;
      height: 38px;
      object-fit: contain;
      border-radius: 50%;
      flex: 0 0 auto;
    }

    /* =========================
       CHECKOUT FRONTEND - RAPI 2 KOLOM
       ========================= */

    .checkout-grid-2 {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 14px !important;
      align-items: start !important;
    }

    .checkout-field {
      min-width: 0 !important;
    }

    .checkout-field input,
    .checkout-field select,
    .checkout-field textarea {
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .checkout-field input,
    .checkout-field select {
      min-height: 44px !important;
    }

    .checkout-field textarea {
      min-height: 96px !important;
      resize: vertical !important;
    }

    /* Metode pembayaran sejajar 2 x 2 */
    .payment-method-grid {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 12px !important;
      margin-top: 10px !important;
      width: 100% !important;
    }

    .payment-method-grid .payment-method-item {
      display: flex !important;
      align-items: center !important;
      justify-content: flex-start !important;
      gap: 12px !important;
      width: 100% !important;
      min-width: 0 !important;
      min-height: 96px !important;
      margin: 0 !important;
      padding: 14px !important;
      border: 1px solid rgba(15, 23, 42, .14) !important;
      border-radius: 16px !important;
      background: #ffffff !important;
      box-sizing: border-box !important;
      cursor: pointer !important;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease !important;
    }

    .payment-method-grid .payment-method-item:hover {
      border-color: #20b8ad !important;
      box-shadow: 0 10px 24px rgba(20, 184, 166, .12) !important;
      transform: translateY(-1px) !important;
    }

    .payment-method-grid .payment-method-item.active,
    .payment-method-grid .payment-method-item:has(input[type="radio"]:checked) {
      border-color: #20b8ad !important;
      background: #f0fffd !important;
      box-shadow: 0 0 0 2px rgba(20, 184, 166, .13) !important;
    }

    .payment-method-grid .payment-method-item input[type="radio"] {
      flex: 0 0 auto !important;
      width: 20px !important;
      height: 20px !important;
      min-height: auto !important;
      margin: 0 !important;
      accent-color: #168f86 !important;
    }

    .payment-method-grid .payment-method-main {
      display: grid !important;
      gap: 4px !important;
      min-width: 0 !important;
      flex: 1 1 auto !important;
      text-align: left !important;
    }

    .payment-method-grid .payment-method-main strong {
      display: block !important;
      color: #0f172a !important;
      font-size: 13px !important;
      line-height: 1.25 !important;
      font-weight: 900 !important;
    }

    .payment-method-grid .payment-method-main small {
      display: block !important;
      color: #475569 !important;
      font-size: 11px !important;
      line-height: 1.35 !important;
      font-weight: 600 !important;
    }

    .payment-method-grid .payment-method-main em {
      display: block !important;
      margin-top: 3px !important;
      color: #0f766e !important;
      font-size: 11px !important;
      line-height: 1.35 !important;
      font-style: normal !important;
      font-weight: 700 !important;
    }

    .payment-instruction-box {
      margin-top: 12px !important;
      padding: 12px 14px !important;
      border-radius: 14px !important;
      background: #e6f7f5 !important;
      color: #0f766e !important;
      font-size: 13px !important;
      font-weight: 700 !important;
      line-height: 1.5 !important;
    }

    .payment-qris-preview {
      margin-top: 12px !important;
      padding: 12px !important;
      border: 1px solid rgba(15, 23, 42, .10) !important;
      border-radius: 16px !important;
      background: #ffffff !important;
      text-align: center !important;
    }

    .payment-qris-preview img {
      display: inline-block !important;
      max-width: 220px !important;
      width: 100% !important;
      height: auto !important;
      border-radius: 14px !important;
    }

    /* Tombol Hitung Ongkir dan picker layanan dibuat sejajar */
    .checkout-actions-inline {
      display: grid !important;
      grid-template-columns: 150px minmax(0, 1fr) !important;
      gap: 12px !important;
      align-items: stretch !important;
      width: 100% !important;
      margin-top: 14px !important;
    }

    .checkout-actions-inline > .btn,
    .checkout-actions-inline .shipping-picker,
    .checkout-actions-inline .shipping-trigger {
      width: 100% !important;
      min-width: 0 !important;
    }

    .checkout-actions-inline > .btn,
    .checkout-actions-inline .shipping-trigger {
      min-height: 48px !important;
      height: 48px !important;
      box-sizing: border-box !important;
    }

    .checkout-actions-inline > .btn {
      white-space: nowrap !important;
      padding-left: 12px !important;
      padding-right: 12px !important;
      border-radius: 16px !important;
    }

    .checkout-actions-inline .shipping-picker {
      position: relative !important;
    }

    .checkout-actions-inline .shipping-trigger {
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) auto !important;
      grid-template-areas:
        "label icon"
        "meta icon" !important;
      column-gap: 10px !important;
      align-items: center !important;
      text-align: left !important;
      padding: 8px 14px !important;
      border-radius: 16px !important;
    }

    .checkout-actions-inline .shipping-trigger-label {
      grid-area: label !important;
      display: block !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
      white-space: nowrap !important;
      font-weight: 900 !important;
      line-height: 1.1 !important;
    }

    .checkout-actions-inline .shipping-trigger-meta {
      grid-area: meta !important;
      display: block !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
      white-space: nowrap !important;
      font-size: 11px !important;
      line-height: 1.1 !important;
      opacity: .75 !important;
    }

    .checkout-actions-inline .shipping-trigger i {
      grid-area: icon !important;
    }

    @media (max-width: 768px) {
      .checkout-grid-2,
      .payment-method-grid,
      .checkout-actions-inline {
        grid-template-columns: 1fr !important;
      }

      .payment-method-grid .payment-method-item {
        min-height: 82px !important;
      }

      .checkout-actions-inline > .btn,
      .checkout-actions-inline .shipping-trigger {
        height: auto !important;
        min-height: 48px !important;
      }
    }
