/* ---------------------------------------------------
   Cimeler — tokens
--------------------------------------------------- */
:root {
  --ivory: #FBF3E7;
  --ivory-dim: #F3E7D6;
  --card-bg: #FFFDF9;
  --chili: #C1272D;
  --chili-dark: #96181D;
  --ember: #E86A17;
  --gold: #F3B01C;
  --gold-dim: #E0A317;
  --oxblood: #2A0E0C;
  --oxblood-soft: #3A1512;
  --ink: #2C1810;
  --ink-soft: rgba(44, 24, 16, 0.68);
  --ink-line: rgba(44, 24, 16, 0.14);

  --display: "Roboto", "Segoe UI", sans-serif;
  --body: "General Sans", "Segoe UI", sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 40px -20px rgba(42, 14, 12, 0.45);
}

/* ---------------------------------------------------
   Reset
--------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Keep section headings clear of the sticky header when jumping from the nav. */
section[id], footer[id] { scroll-margin-top: 84px; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------------------------------------------
   Buttons & links
--------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: linear-gradient(180deg, #FFE9A8 0%, var(--gold) 55%, var(--gold-dim) 100%);
  color: var(--oxblood);
  border: 3px solid var(--oxblood-soft);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.65),
    inset 0 -10px 14px -6px rgba(150, 24, 29, 0.25),
    0 5px 0 rgba(58, 21, 18, 0.55),
    0 16px 28px -12px rgba(0, 0, 0, 0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.7),
    inset 0 -10px 14px -6px rgba(150, 24, 29, 0.28),
    0 7px 0 rgba(58, 21, 18, 0.55),
    0 20px 32px -10px rgba(0, 0, 0, 0.6);
  filter: brightness(1.03);
}
.btn-primary:active {
  transform: translateY(3px);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.5),
    inset 0 -6px 10px -6px rgba(150, 24, 29, 0.3),
    0 2px 0 rgba(58, 21, 18, 0.55),
    0 10px 18px -12px rgba(0, 0, 0, 0.5);
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ---------------------------------------------------
   Header
--------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 243, 231, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-mark {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.main-nav {
  display: none;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  font-size: 1.1rem;
}
.main-nav a { position: relative; opacity: 0.8; transition: color 0.2s ease, opacity 0.2s ease; }
.main-nav a:hover { opacity: 1; color: var(--chili); }
.main-nav a.is-active { opacity: 1; color: var(--chili); }

.header-cta { display: none; font-size: 1.05rem; }

.nav-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.main-nav.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: var(--ivory);
  padding: 12px 24px 20px;
  border-bottom: 1px solid var(--ink-line);
}
.main-nav.open a { width: 100%; padding: 10px 0; }

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .main-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--chili), var(--gold));
  }
}

/* ---------------------------------------------------
   Hero
--------------------------------------------------- */
.hero {
  position: relative;
  background:
    linear-gradient(160deg, rgba(42, 14, 12, 0.6) 0%, rgba(58, 21, 18, 0.48) 45%, rgba(150, 24, 29, 0.3) 100%),
    url("../images/hero-backdrop.jpg");
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  padding: 56px 0 64px;
  overflow: clip;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 56px;
  align-items: center;
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bubbles span {
  position: absolute;
  bottom: -120px;
  display: block;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(6px);
  opacity: 0;
  animation: bubble-rise linear infinite;
}
.hero-bubbles span:nth-child(1) { left: 6%;  width: 54px; height: 54px; animation-duration: 13s; animation-delay: 0s; }
.hero-bubbles span:nth-child(2) { left: 18%; width: 26px; height: 26px; animation-duration: 9s;  animation-delay: 2s; background: var(--ivory); }
.hero-bubbles span:nth-child(3) { left: 34%; width: 80px; height: 80px; animation-duration: 16s; animation-delay: 5s; }
.hero-bubbles span:nth-child(4) { left: 54%; width: 40px; height: 40px; animation-duration: 11s; animation-delay: 1s; background: var(--ivory); }
.hero-bubbles span:nth-child(5) { left: 72%; width: 64px; height: 64px; animation-duration: 14s; animation-delay: 7s; }
.hero-bubbles span:nth-child(6) { left: 87%; width: 32px; height: 32px; animation-duration: 10s; animation-delay: 3.5s; background: var(--ivory); }

@keyframes bubble-rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.16; }
  92%  { opacity: 0.16; }
  100% { transform: translateY(-560px) translateX(24px); opacity: 0; }
}
.hero-badge,
.promo-badge {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--chili-dark);
  background: var(--ivory);
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.3);
}
.hero-badge { margin-bottom: 22px; }
.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.hero-title .text-accent { color: var(--gold); }
.hero-lede {
  max-width: 46ch;
  font-size: 1.08rem;
  color: rgba(251, 243, 231, 0.9);
  margin-bottom: 34px;
  text-align: justify;
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; padding: 0 8px; }
.hero-visual picture { display: contents; }
.hero-products {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
  animation: settle-in-products 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
/* The stacked-pouch photo is portrait, so cap its width to keep the hero short. */
@media (min-width: 860px) {
  .hero-products { max-width: 400px; }
}

@keyframes settle-in-products {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (min-width: 860px) {
  .hero-inner { grid-template-columns: 1fr 1.3fr; }
  .hero-visual { padding: 0 0 24px; justify-content: flex-end; }
}

/* ---------------------------------------------------
   Promo
--------------------------------------------------- */
/* Top edge repeats the hero's bottom edge (dark left → red right) so the seam
   disappears, then deepens to oxblood. */
.promo {
  position: relative;
  background:
    radial-gradient(ellipse 45% 50% at 85% 0%, rgba(232, 106, 23, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(42, 14, 12, 0) 0%, rgba(42, 14, 12, 0.85) 100%),
    linear-gradient(90deg, #3C1110 0%, #601717 50%, #751517 100%);
  padding: 48px 0;
  overflow: clip;
}
.promo-list { display: flex; flex-direction: column; gap: 28px; }
.promo-frame {
  background: var(--ivory);
  border-radius: calc(var(--radius-lg) + 14px);
  padding: 14px;
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.promo-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 56px -18px rgba(0, 0, 0, 0.65);
}
.promo-panel {
  position: relative;
  display: grid;
  gap: 32px;
  align-items: stretch;
  background: linear-gradient(150deg, var(--oxblood) 0%, var(--chili-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  overflow: hidden;
  box-shadow: 0 18px 32px -10px rgba(0, 0, 0, 0.5), 0 6px 12px -4px rgba(0, 0, 0, 0.4);
}
.promo-panel::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 106, 23, 0.3) 0%, rgba(232, 106, 23, 0) 70%);
  pointer-events: none;
}
.promo-badge {
  position: relative;
  align-self: flex-start;
  margin-bottom: 16px;
}
.promo-title {
  position: relative;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 6px;
}
.promo-copy { display: flex; flex-direction: column; }
.promo-body { position: relative; max-width: 64ch; color: rgba(251, 243, 231, 0.78); margin-bottom: 24px; text-align: justify; }
.promo-copy .btn { margin-top: auto; align-self: flex-start; }
.promo-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.6), 0 0 0 3px rgba(251, 243, 231, 0.35);
}
.promo-visual img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 860px) {
  /* The square photo needs less width than the old 16:10 one, so the text
     column takes the difference instead of leaving a gap in the middle. */
  .promo-panel { grid-template-columns: 1.6fr 1fr; }
  .promo-visual { justify-self: end; }
}

/* ---------------------------------------------------
   Sections (shared)
--------------------------------------------------- */
.section { padding: clamp(44px, 6vw, 60px) 0; }
/* Section backgrounds, all taken from the hero: its amber glow for the light
   sections, its oxblood→chili overlay for the dark ones. Each section ends on
   the colour the next one starts with, so the page reads as one surface. */
#kenapa {
  background:
    radial-gradient(ellipse 60% 55% at 50% 0%, rgba(243, 176, 28, 0.2), transparent 70%),
    linear-gradient(180deg, #F7E2C8 0%, var(--ivory) 100%);
}
#produk {
  background:
    radial-gradient(rgba(193, 39, 45, 0.05) 1.2px, transparent 1.6px) 0 0 / 18px 18px,
    linear-gradient(180deg, var(--ivory) 0%, #F8EAD8 100%);
}
#korporasi { background: linear-gradient(180deg, #F8EAD8 0%, #F2D8BB 100%); }
/* Brand accent line where a dark section meets a light one. */
#kenapa,
.site-footer {
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--chili), var(--ember), var(--gold)) 1;
}
.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--chili);
  margin-bottom: 14px;
}
.section-lede { color: var(--ink-soft); max-width: 62ch; margin-bottom: 28px; font-size: 1.05rem; }

/* Menu and Korporasi lead with a centred heading, like Kenapa Cimeler does. */
#produk .section-title,
#produk .section-lede,
#korporasi .section-title { text-align: center; }
#produk .section-lede { margin-left: auto; margin-right: auto; }

/* Kenapa Cimeler */
#kenapa { padding: 48px 0 12px; }
.kenapa-heading { text-align: center; margin-bottom: 24px; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  background: rgba(232, 106, 23, 0.12);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-kicker-icon { width: 14px; height: 14px; fill: var(--ember); }
.kenapa-heading .section-title { margin-bottom: 0; }
.section-title-underline {
  display: block;
  width: 64px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--ember));
}
.feature-carousel { display: flex; align-items: center; gap: 14px; }
.feature-list {
  --visible: 1;
  --feature-gap: 20px;
  display: flex;
  gap: var(--feature-gap);
  overflow-x: hidden;
  flex: 1;
  scrollbar-width: none;
  /* Room for the hover lift and card shadow, which overflow:hidden would clip. */
  padding: 10px 0 46px;
}
.feature-list::-webkit-scrollbar { display: none; }
.feature-list li {
  flex: 0 0 calc((100% - (var(--visible) - 1) * var(--feature-gap)) / var(--visible));
  position: relative;
  background:
    radial-gradient(rgba(193, 39, 45, 0.08) 1.2px, transparent 1.6px) 0 0 / 14px 14px,
    var(--card-bg);
  border: 1px solid rgba(240, 180, 41, 0.45);
  border-radius: var(--radius-md);
  padding: 0 20px 26px;
  /* Negative spread ≈ blur keeps the shadow under the card, not beside it,
     so the track's overflow:hidden never cuts it off at the sides. */
  box-shadow: 0 18px 22px -18px rgba(42, 14, 12, 0.5);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Top accent bar */
.feature-list li::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--chili), var(--ember), var(--gold));
  z-index: 2;
}
/* Warm glow in the bottom corner */
.feature-list li::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 106, 23, 0.18), transparent 70%);
  pointer-events: none;
}
.feature-list li:hover { transform: translateY(-6px); box-shadow: 0 24px 26px -20px rgba(42, 14, 12, 0.6); }
.feature-photo { position: relative; aspect-ratio: 4 / 3; margin: 0 -20px; overflow: hidden; }
.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(42, 14, 12, 0.45));
}
.feature-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.feature-list li:hover .feature-photo img { transform: scale(1.06); }
.feature-num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  font-family: var(--display);
  font-size: 1rem;
  color: var(--ivory);
  background: rgba(42, 14, 12, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.feature-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: -30px auto 12px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), var(--ember));
  border: 4px solid var(--card-bg);
  box-shadow: 0 8px 18px -6px rgba(193, 39, 45, 0.6);
}
.feature-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--ivory); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-list h3 { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--ink); margin-bottom: 10px; }
.feature-list h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--chili), var(--gold));
}
.feature-list p { position: relative; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }

.carousel-nav {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
  color: var(--chili);
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-nav:hover { background: var(--gold); }

/* Phones: arrows float over the photo edges so the single card can use the full width. */
@media (max-width: 639px) {
  .feature-carousel { position: relative; }
  .feature-carousel .carousel-nav {
    position: absolute;
    z-index: 3;
    /* vertical centre of the 4:3 photo: track top padding + half the photo height - half the button */
    top: calc(10px + (100vw - 48px) * 0.375 - 19px);
    width: 38px;
    height: 38px;
  }
  .feature-carousel .carousel-prev { left: -6px; }
  .feature-carousel .carousel-next { right: -6px; }
}
@media (min-width: 640px) {
  .feature-list { --visible: 2; }
}
@media (min-width: 900px) {
  .feature-list { --visible: 3; }
}

/* Produk */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  margin-bottom: 36px;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 16px 16px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.price-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: var(--oxblood);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 50%;
  min-width: 62px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 18px -8px rgba(42, 14, 12, 0.6);
  line-height: 1.1;
}
.product-card h3 { font-family: var(--display); font-weight: 700; font-size: 1.15rem; margin: 18px 0 6px; }
/* Grows to fill whatever space the tallest card in the row needs, which keeps
   the icon row pinned to the same height on every card. */
.product-card p { flex: 1; color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 12px; }

.channel-icons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 4px; }
.channel-icons a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 10px -4px rgba(42, 14, 12, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.channel-icons a:hover { transform: translateY(-2px); box-shadow: 0 8px 14px -6px rgba(42, 14, 12, 0.6); }
.channel-icons img { width: 100%; height: 100%; object-fit: cover; }
/* Brand colours: WhatsApp green, the other two carry their own logo artwork. */
.ch-wa { background: #25D366; }
.ch-wa svg { width: 19px; height: 19px; fill: #fff; }
.ch-shopee { background: #fff; }
/* Wordmark logo: same height as the round icons, but wide enough to read.
   Needs to out-rank `.channel-icons a`, which pins a 34px circle. */
.channel-icons .ch-smexpo {
  width: auto;
  height: 34px;
  aspect-ratio: 1095 / 330;
  border-radius: 10px;
  background: #022E79;
}
.channel-icons .ch-smexpo img { object-fit: contain; }

.subsection-title { font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--ember); margin-bottom: 22px; text-align: center; }
/* Four per row on desktop; extra menus start a new row instead of squeezing. */
.product-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-strip .mini-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 12px 12px 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-strip .mini-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.product-strip .mini-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-strip h4 { font-family: var(--display); font-weight: 700; font-size: 0.98rem; margin: 12px 0 4px; }
.product-strip p { flex: 1; color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 8px; }

/* Pointer devices only: on a phone the strip is a horizontal scroller, and a
   lifted card there would just add a stray vertical scrollbar. */
@media (hover: hover) {
  .product-card:hover,
  .product-strip .mini-card:not(.mini-soon):hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 30px -18px rgba(42, 14, 12, 0.6);
  }
  .product-card:hover .product-photo img,
  .product-strip .mini-card:hover .mini-photo img { transform: scale(1.05); }
}
.product-photo img,
.product-strip .mini-photo img { transition: transform 0.5s ease; }

/* Placeholder that fills the gap when the last row is short. */
.mini-card.mini-soon {
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: rgba(255, 253, 249, 0.55);
  border: 2px dashed rgba(150, 24, 29, 0.35);
  box-shadow: none;
}
.mini-soon span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  text-align: center;
  background: linear-gradient(135deg, #6E1014 0%, #C1272D 50%, #7A1418 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* text-shadow would be clipped away with the gradient, drop-shadow is not */
  filter: drop-shadow(0 3px 4px rgba(42, 14, 12, 0.4));
}

@media (max-width: 519px) {
  .product-strip { grid-template-columns: 1fr; }
}
@media (min-width: 860px) {
  .product-strip { grid-template-columns: repeat(4, 1fr); }
}

/* Korporasi & Maklon */
.korporasi-showcase { display: grid; gap: 32px; align-items: center; margin-bottom: 40px; }

/* Stacked photos crossfade; the active one is opaque. */
.showcase-slider {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 400px;
  justify-self: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
}
.showcase-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.showcase-slides img.is-active { opacity: 1; }
.showcase-dots { position: absolute; left: 0; right: 0; bottom: 16px; display: flex; justify-content: center; gap: 8px; }
.showcase-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(251, 243, 231, 0.7);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}
.showcase-dots button.is-active { width: 26px; background: var(--gold); }

.showcase-block + .showcase-block { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--ink-line); }
.showcase-copy h3 { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--chili); margin-bottom: 8px; }
.showcase-copy p { color: var(--ink-soft); margin-bottom: 14px; }
.showcase-copy .check-list li { color: var(--ink-soft); }
.showcase-copy .check-list li::before { background: var(--chili); color: var(--ivory); }

.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { position: relative; padding-left: 26px; font-size: 0.95rem; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  /* Centre the 18px badge on the first line's lowercase letters (body line-height 1.55;
     this font's x-height sits a little below the line's midpoint). */
  top: calc(0.9em - 9px);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--oxblood);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.korporasi-grid { display: grid; gap: 24px; margin-bottom: 32px; }
.korporasi-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
}
.korporasi-card h3 { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--chili); margin-bottom: 8px; }
.korporasi-card p { color: var(--ink-soft); margin-bottom: 16px; max-width: 50ch; }
.korporasi-card .check-list li { color: var(--ink-soft); }
.korporasi-card .check-list li::before { background: var(--chili); color: var(--ivory); }

.korporasi-cta { display: inline-flex; }

@media (min-width: 720px) {
  /* Photo + copy centred as one group, so the divider ends where the text does. */
  .korporasi-showcase { grid-template-columns: minmax(0, 400px) minmax(0, 540px); justify-content: center; gap: 72px; }
  .korporasi-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------
   Footer
--------------------------------------------------- */
/* Same 160° oxblood→chili direction as the hero overlay, bookending the page. */
.site-footer {
  background:
    radial-gradient(ellipse 50% 60% at 85% 0%, rgba(232, 106, 23, 0.16), transparent 70%),
    linear-gradient(160deg, var(--oxblood) 0%, #3A1210 50%, #5C1716 100%);
  color: var(--ivory);
  padding-top: 44px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-mark { height: 56px; width: auto; }
.footer-brand p { max-width: 34ch; color: rgba(251, 243, 231, 0.75); font-size: 0.95rem; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-family: var(--display); font-weight: 700; font-size: 0.95rem; color: var(--gold); margin-bottom: 2px; }
.footer-col a { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.footer-col a:hover { color: var(--gold); }
.footer-col svg { width: 17px; height: 17px; flex: none; fill: var(--gold); }
/* Outline-style glyph (the globe) needs stroke instead of fill. */
.footer-col svg.ico-stroke {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  border-top: 1px solid rgba(251, 243, 231, 0.14);
  padding: 20px 24px;
  font-size: 0.85rem;
  color: rgba(251, 243, 231, 0.55);
}
.credit-handle { color: var(--gold); font-weight: 600; }
.credit-handle:hover { text-decoration: underline; }

.portal-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(251, 243, 231, 0.25);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(251, 243, 231, 0.55);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.portal-link:hover { color: var(--ivory); border-color: rgba(251, 243, 231, 0.5); }

@media (min-width: 700px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer-bottom { flex-direction: row; justify-content: center; }
}

/* ---------------------------------------------------
   WhatsApp floating button
--------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.45);
  z-index: 50;
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
