:root {
  --paper: #f7f1e7;
  --paper-strong: #fffdf8;
  --paper-soft: #fdf8f0;
  --sand: #eddcc3;
  --gold: #c78e2e;
  --amber: #e39a30;
  --red: #d35a26;
  --red-deep: #9b3918;
  --blue: #245fa4;
  --blue-deep: #163a67;
  --ink: #201814;
  --ink-soft: #5d4a40;
  --line: rgba(88, 61, 42, 0.14);
  --line-strong: rgba(76, 52, 34, 0.22);
  --shadow-lg: 0 34px 90px rgba(95, 58, 28, 0.14);
  --shadow-md: 0 18px 42px rgba(95, 58, 28, 0.11);
  --shadow-sm: 0 10px 22px rgba(95, 58, 28, 0.08);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Source Sans 3", sans-serif;
  background:
    radial-gradient(circle at 8% 10%, rgba(227, 154, 48, 0.18), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(36, 95, 164, 0.1), transparent 28%),
    linear-gradient(180deg, #fbf7f0 0%, #f8f2e7 52%, #fdf9f3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background:
    linear-gradient(
      90deg,
      transparent 0,
      transparent calc(100% - 1px),
      rgba(146, 112, 82, 0.08) calc(100% - 1px),
      rgba(146, 112, 82, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      transparent 0,
      transparent calc(100% - 1px),
      rgba(146, 112, 82, 0.08) calc(100% - 1px),
      rgba(146, 112, 82, 0.08) 100%
    );
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

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

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

.page-shell {
  position: relative;
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0 88px;
}

.paper-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(44px);
  pointer-events: none;
  z-index: 0;
}

.paper-glow-left {
  top: 52px;
  left: -70px;
  width: 240px;
  height: 240px;
  background: rgba(227, 154, 48, 0.15);
}

.paper-glow-right {
  right: -80px;
  bottom: 120px;
  width: 280px;
  height: 280px;
  background: rgba(36, 95, 164, 0.1);
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 232, 0.84)),
    linear-gradient(90deg, rgba(36, 95, 164, 0.08), rgba(211, 90, 38, 0.08));
  box-shadow: 0 18px 48px rgba(88, 61, 42, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(88, 61, 42, 0.08);
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.topnav a {
  flex: 0 0 auto;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(88, 61, 42, 0.08);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #4b84cb);
  border-color: transparent;
  transform: translateY(-1px);
}

.site-main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(249, 238, 221, 0.94)),
    linear-gradient(120deg, rgba(36, 95, 164, 0.1), rgba(211, 90, 38, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(88, 61, 42, 0.08);
  border-radius: calc(var(--radius-xl) - 12px);
  pointer-events: none;
}

.hero::after {
  content: "Official Product Catalog";
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: rgba(36, 95, 164, 0.18);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  letter-spacing: 0.08em;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  align-content: start;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(211, 90, 38, 0.1);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.final-cta h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  text-wrap: balance;
}

.hero-text,
.section-head p,
.product-summary,
.detail-grid p,
.reseller-copy p,
.extra-grid p,
.faq-card p,
.final-cta p {
  color: var(--ink-soft);
  line-height: 1.72;
}

.hero-text {
  max-width: 44ch;
  margin: 0;
  font-size: 1.06rem;
  text-wrap: pretty;
}

.hero-certifications {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cert-badge {
  display: grid;
  place-items: center;
  min-width: 180px;
  padding: 14px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(88, 61, 42, 0.1);
  box-shadow: var(--shadow-sm);
}

.cert-badge-halal {
  min-width: 168px;
}

.cert-badge-bpom {
  min-width: 220px;
}

.cert-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.cert-logo-halal {
  height: 82px;
}

.cert-logo-bpom {
  width: 142px;
  max-width: 100%;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-pills span {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(36, 95, 164, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button-label-short {
  display: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--amber));
  box-shadow: 0 18px 40px rgba(211, 90, 38, 0.28);
}

.button-secondary {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(36, 95, 164, 0.16);
}

.hero-points {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  width: min(100%, 840px);
  padding: 18px 18px 18px 22px;
  list-style: none;
  text-align: left;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(88, 61, 42, 0.1);
  box-shadow: var(--shadow-sm);
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  box-shadow: 0 0 0 5px rgba(211, 90, 38, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  width: 100%;
}

.hero-metrics article {
  position: relative;
  padding: 16px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 245, 228, 0.84));
  border: 1px solid rgba(88, 61, 42, 0.1);
  box-shadow: var(--shadow-sm);
}

.hero-metrics strong {
  display: block;
  color: var(--red-deep);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
}

.hero-metrics span {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.proof-item {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(253, 247, 238, 0.9));
  border: 1px solid rgba(88, 61, 42, 0.1);
  box-shadow: var(--shadow-sm);
}

.proof-item:nth-child(1) {
  border-top: 4px solid rgba(211, 90, 38, 0.5);
}

.proof-item:nth-child(2) {
  border-top: 4px solid rgba(36, 95, 164, 0.42);
}

.proof-item:nth-child(3) {
  border-top: 4px solid rgba(199, 142, 46, 0.55);
}

.proof-item:nth-child(4) {
  border-top: 4px solid rgba(154, 57, 24, 0.42);
}

.proof-label,
.section-tag,
.size-kicker,
.rail-title,
.reseller-meta {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
}

.proof-label {
  color: var(--red);
  font-size: 1rem;
}

.proof-item p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.catalog-shell,
.section-block,
.final-cta {
  margin-top: 20px;
}

.catalog-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
}

.catalog-rail {
  position: relative;
}

.rail-card {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 241, 226, 0.94));
  border: 1px solid rgba(88, 61, 42, 0.12);
  box-shadow: var(--shadow-md);
}

.rail-card::before {
  content: "";
  display: block;
  width: 68px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #5b91d4);
}

.rail-title {
  margin: 2px 0 6px;
  color: var(--blue);
  font-size: 1.16rem;
}

.rail-card a {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--ink);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(88, 61, 42, 0.08);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.rail-card a:hover,
.rail-card a:focus-visible {
  transform: translateX(3px);
  color: var(--blue-deep);
  background: rgba(222, 235, 252, 0.58);
  border-color: rgba(36, 95, 164, 0.16);
}

.catalog-content,
.section-block,
.final-cta {
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(253, 248, 240, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.section-head {
  max-width: 76ch;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(88, 61, 42, 0.08);
}

.section-head h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.25rem);
}

.section-head p {
  margin: 12px 0 0;
  font-size: 1.04rem;
}

.section-head.compact {
  margin-bottom: 20px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
  margin-top: 20px;
  border-radius: 34px;
  border: 1px solid rgba(88, 61, 42, 0.12);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.product-card::before {
  content: attr(data-card);
  position: absolute;
  right: 24px;
  top: 14px;
  color: rgba(36, 95, 164, 0.09);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 7vw, 6.4rem);
  letter-spacing: 0.06em;
  line-height: 1;
  pointer-events: none;
}

.product-card.reverse .product-gallery {
  order: 2;
}

.product-card.reverse .product-copy {
  order: 1;
}

.feature-premium {
  background:
    radial-gradient(circle at top right, rgba(199, 142, 46, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 248, 232, 0.96), rgba(255, 255, 255, 0.92));
}

.feature-hilham {
  background:
    radial-gradient(circle at top left, rgba(227, 154, 48, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(255, 247, 238, 0.96), rgba(255, 255, 255, 0.92));
}

.feature-kakap {
  background:
    radial-gradient(circle at top right, rgba(211, 90, 38, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(255, 241, 241, 0.96), rgba(255, 255, 255, 0.92));
}

.feature-duo {
  background:
    radial-gradient(circle at top left, rgba(36, 95, 164, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(255, 248, 229, 0.96), rgba(255, 255, 255, 0.92));
}

.product-gallery {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: stretch;
}

.pack-shot,
.sample-shot,
.sample-stack {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(88, 61, 42, 0.12);
}

.pack-shot {
  min-height: 420px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(253, 246, 234, 0.94));
}

.pack-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sample-shot {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 148px;
  height: 148px;
}

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

.sample-stack {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  width: 168px;
  padding: 10px;
}

.sample-stack img {
  width: 100%;
  border-radius: 18px;
}

.section-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(211, 90, 38, 0.1);
  border: 1px solid rgba(211, 90, 38, 0.08);
  font-size: 0.98rem;
}

.product-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 16px;
}

.product-copy h3,
.size-card h3,
.contact-card h3,
.reseller-copy h3,
.extra-grid h3,
.faq-card h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.product-copy h3 {
  max-width: 14ch;
  font-size: clamp(2rem, 2.35vw, 2.7rem);
}

.product-summary {
  margin: 0;
  font-size: 1.03rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.chip-row span {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(36, 95, 164, 0.08);
  border: 1px solid rgba(36, 95, 164, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.detail-grid article {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(88, 61, 42, 0.1);
}

.detail-grid h4 {
  margin: 0;
  color: var(--red-deep);
  font-size: 0.98rem;
}

.detail-grid p {
  margin: 8px 0 0;
}

.detail-list,
.size-card ul,
.reseller-copy ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.76;
}

.size-grid,
.contact-grid,
.reseller-grid,
.extra-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.size-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.size-card,
.contact-card,
.faq-card,
.extra-grid article {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(88, 61, 42, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(252, 247, 239, 0.9));
  box-shadow: var(--shadow-sm);
}

.size-card {
  position: relative;
}

.size-card:nth-child(1) {
  border-top: 4px solid rgba(199, 142, 46, 0.55);
}

.size-card:nth-child(2) {
  border-top: 4px solid rgba(36, 95, 164, 0.5);
}

.size-card:nth-child(3) {
  border-top: 4px solid rgba(211, 90, 38, 0.48);
}

.size-card.highlight {
  background:
    radial-gradient(circle at top right, rgba(199, 142, 46, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 247, 229, 0.96), rgba(255, 255, 255, 0.92));
  border-color: rgba(199, 142, 46, 0.18);
}

.size-kicker {
  color: var(--blue);
  font-size: 1rem;
}

.size-card h3 {
  margin-top: 8px;
  font-size: 1.62rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.08fr) repeat(2, minmax(0, 1fr));
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 10px;
  background:
    radial-gradient(circle at top right, rgba(36, 95, 164, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 249, 239, 0.96), rgba(255, 255, 255, 0.92));
}

.contact-card:first-child {
  background:
    radial-gradient(circle at top right, rgba(36, 95, 164, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(243, 249, 255, 0.96), rgba(255, 255, 255, 0.92));
}

.contact-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.platform-list {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.platform-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(88, 61, 42, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(88, 61, 42, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.platform-link:hover,
.platform-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(88, 61, 42, 0.1);
}

.platform-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  overflow: hidden;
}

.platform-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.platform-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.platform-copy strong {
  color: var(--ink);
  font-size: 1rem;
}

.platform-copy small {
  color: var(--ink-soft);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.platform-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(88, 61, 42, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.platform-tiktok {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.04), rgba(37, 244, 238, 0.09));
}

.platform-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(255, 255, 255, 0.94));
}

.platform-whatsapp .platform-badge {
  background: linear-gradient(135deg, #20c05c, #25d366);
}

.platform-tiktok .platform-badge {
  background: linear-gradient(135deg, #111111, #232323);
}

.platform-whatsapp .platform-badge img,
.platform-tiktok .platform-badge img,
.platform-instagram .platform-badge img,
.platform-shopee .platform-badge img {
  filter: brightness(0) invert(1);
}

.platform-instagram {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.08), rgba(253, 244, 151, 0.16));
}

.platform-instagram .platform-badge {
  background: linear-gradient(135deg, #515bd4, #8134af 38%, #dd2a7b 68%, #f58529);
}

.platform-tokopedia {
  background: linear-gradient(135deg, rgba(66, 181, 73, 0.08), rgba(255, 255, 255, 0.94));
}

.platform-tokopedia .platform-badge {
  background: #ffffff;
  border: 2px solid rgba(66, 181, 73, 0.24);
}

.platform-tokopedia .platform-badge img {
  width: 34px;
  height: 34px;
}

.platform-shopee {
  background: linear-gradient(135deg, rgba(238, 77, 45, 0.1), rgba(255, 255, 255, 0.94));
}

.platform-shopee .platform-badge {
  background: linear-gradient(135deg, #ee4d2d, #ff7b5b);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 4px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), #4a8de1);
  box-shadow: 0 12px 24px rgba(36, 95, 164, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(36, 95, 164, 0.26);
}

.reseller-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reseller-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(88, 61, 42, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.reseller-card img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
}

.reseller-copy {
  padding: 20px;
}

.reseller-copy h3 {
  font-size: 1.56rem;
}

.reseller-meta {
  display: inline-block;
  margin-top: 8px;
  color: var(--red);
  font-size: 0.96rem;
}

.extra-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.extra-grid article {
  border-top: 4px solid rgba(36, 95, 164, 0.18);
}

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

.faq-card {
  position: relative;
}

.faq-card::before {
  content: "Q";
  position: absolute;
  right: 18px;
  top: 16px;
  color: rgba(36, 95, 164, 0.1);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}

.faq-card h3 {
  max-width: 18ch;
  font-size: 1.45rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) auto;
  align-items: end;
  gap: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, var(--blue-deep), #2b5f9e 46%, #183e6c 100%);
  color: #fff;
}

.final-cta .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}

.final-cta h2 {
  font-size: clamp(2.1rem, 3.2vw, 3.25rem);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .catalog-shell {
    grid-template-columns: 1fr;
  }

  .catalog-rail {
    order: -1;
  }

  .rail-card {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-grid,
  .reseller-grid,
  .extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip,
  .size-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 24px, 100%);
  }

  .topbar {
    position: static;
    grid-template-columns: 1fr;
    gap: 16px;
    border-radius: 24px;
  }

  .topnav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .hero {
    padding: 22px;
  }

  .hero::after {
    right: 18px;
    bottom: 18px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-content,
  .section-block,
  .final-cta {
    padding: 22px;
    border-radius: 28px;
  }

  .product-card,
  .product-card.reverse {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .product-card.reverse .product-gallery,
  .product-card.reverse .product-copy {
    order: initial;
  }

  .product-copy h3 {
    max-width: none;
  }

  .product-gallery {
    min-height: 340px;
  }

  .pack-shot {
    min-height: 320px;
  }

  .sample-shot,
  .sample-stack {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .detail-grid,
  .proof-strip,
  .contact-grid,
  .reseller-grid,
  .extra-grid,
  .faq-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .platform-link {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .platform-cta {
    grid-column: 2;
    justify-self: start;
  }

  .rail-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 18px, 100%);
    padding-top: 18px;
  }

  .topbar {
    padding: 12px;
    gap: 14px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.76rem;
  }

  .hero {
    gap: 18px;
    padding: 18px 14px 26px;
  }

  .hero::before {
    inset: 10px;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero h1 {
    max-width: 10.8ch;
    font-size: clamp(1.82rem, 8vw, 2.3rem);
    line-height: 0.94;
  }

  .hero-text {
    max-width: 29ch;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    padding: 7px 11px;
  }

  .hero-certifications {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }

  .hero-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .hero-pills span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.86rem;
    line-height: 1.2;
    text-align: center;
  }

  .hero-pills span:last-child {
    grid-column: 1 / -1;
    width: fit-content;
    justify-self: center;
  }

  .cert-badge {
    width: auto;
    min-width: 0;
    min-height: 102px;
    padding: 12px 10px;
    border-radius: 22px;
  }

  .cert-logo-halal {
    height: 60px;
  }

  .cert-logo-bpom {
    width: 108px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }

  .button {
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.9rem;
    text-align: center;
  }

  .button-label-full {
    display: none;
  }

  .button-label-short {
    display: inline;
  }

  .topnav {
    gap: 6px;
  }

  .topnav a {
    padding: 8px 12px;
    font-size: 0.84rem;
  }

  .hero-points {
    padding: 12px 14px;
    gap: 10px;
    border-radius: 20px;
  }

  .hero-points li {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-metrics article {
    padding: 14px 10px;
    border-radius: 18px;
  }

  .hero-metrics strong {
    font-size: 1.5rem;
  }

  .hero-metrics span {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .catalog-content,
  .section-block,
  .final-cta,
  .product-card {
    padding: 18px;
    border-radius: 24px;
  }

  .section-head h2 {
    font-size: clamp(1.6rem, 7.4vw, 2rem);
    line-height: 1.04;
    text-wrap: balance;
  }

  .section-head p,
  .product-summary,
  .detail-grid p,
  .faq-card p,
  .contact-card p,
  .reseller-copy p,
  .extra-grid p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .product-gallery {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.85fr);
    min-height: auto;
    gap: 12px;
  }

  .pack-shot {
    min-height: 228px;
    padding: 14px;
  }

  .sample-shot,
  .sample-stack {
    position: static;
    width: auto;
    margin-top: 0;
  }

  .sample-shot {
    min-height: 228px;
  }

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

  .sample-stack {
    display: grid;
    align-content: stretch;
    gap: 8px;
    padding: 8px;
  }

  .sample-stack img {
    height: 104px;
    object-fit: cover;
  }

  .product-copy {
    gap: 12px;
  }

  .product-copy h3,
  .size-card h3,
  .contact-card h3,
  .reseller-copy h3,
  .extra-grid h3,
  .faq-card h3 {
    line-height: 1.04;
  }

  .product-copy h3 {
    font-size: clamp(1.62rem, 6.2vw, 2rem);
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .detail-grid article {
    padding: 14px;
  }

  .detail-list,
  .size-card ul,
  .reseller-copy ul {
    font-size: 0.93rem;
    line-height: 1.58;
  }

  .size-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82vw, 1fr);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2px 4px 10px;
    margin: 0 -4px;
    scrollbar-width: none;
  }

  .size-grid::-webkit-scrollbar {
    display: none;
  }

  .size-card {
    scroll-snap-align: start;
    display: grid;
    align-content: start;
    min-height: 100%;
    padding: 18px 18px 20px;
    border-radius: 24px;
  }

  .size-kicker {
    font-size: 0.96rem;
  }

  .size-card h3 {
    margin-top: 6px;
    font-size: clamp(1.5rem, 6.2vw, 1.9rem);
    line-height: 1.02;
    max-width: 11ch;
  }

  .size-card ul {
    margin-top: 2px;
  }

  .rail-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
  }

  .topnav a {
    font-size: 0.9rem;
  }
}

@media (max-width: 520px) {
  .topnav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    width: 100%;
  }

  .topnav a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .rail-card {
    grid-template-columns: 1fr;
  }
}
