/* ═══════════════════════════════════════════════════
   RAWEA – Lingkar Pertiwi | Global Stylesheet
   Stack: Tailwind CDN + custom CSS
   ═══════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────
   CSS VARIABLES
───────────────────────────────────────────────── */
:root {
  --green-dark: #1a5c2e;
  --green-mid: #2d8a4e;
  --green-lite: #4dba72;
  --green-lite-2: #86efac;
  --amber: #e8a020;
  --cream: #f7f3ec;
  --bark: #2b1f0f;
  --fs-xs: 0.75rem;
  --fs-sm: 0.8125rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 1.875rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 3rem;
  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;
  --ls-tight: -0.02em;
  --ls-normal: 0em;
  --ls-wide: 0.06em;
  --ls-wider: 0.12em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  background: var(--cream);
  color: var(--bark);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  margin: 0;
}

a {
  text-decoration: none;
}

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

img.app-logo {
  width: 54px;
  height: 54px;
}

img.app-logo-sub {
  width: 48px;
  height: 48px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 96px 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text {
  margin-top: 16px;
  color: #4b5563;
  line-height: 1.7;
}

/* Actions */
.about-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-pad {
    padding: 64px 20px;
  }
}

@media (max-width: 480px) {
  .section-pad {
    padding: 48px 16px;
  }

  .container {
    padding: 0 16px;
  }
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--green-mid);
  border-left: 3px solid var(--amber);
  padding-left: 10px;
  margin-bottom: 14px;
}

.section-label--amber {
  color: var(--amber);
  border-color: var(--amber);
}

.section-heading {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  font-weight: 800;
  color: var(--green-dark);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
}

.section-divider {
  width: 48px;
  height: 4px;
  background: var(--amber);
  border-radius: 2px;
  margin: 16px 0 0;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-mid);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .2s;
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--green-mid);
  color: var(--green-mid);
  padding: 12px 28px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  background: transparent;
  cursor: pointer;
  transition: background .25s, color .25s;
}

.btn-outline:hover {
  background: var(--green-mid);
  color: #fff;
}

.btn-sm {
  padding: 8px 18px;
  font-size: var(--fs-xs);
}

.btn-nav {
  padding: 10px 22px;
  font-size: var(--fs-sm);
}

.btn-wa {
  background: #25D366;
}

.btn-wa:hover {
  background: #1da851;
}

.btn-nav-sm {
  padding: 10px 22px;
  font-size: var(--fs-xs);
  letter-spacing: 0.01em;
}

.btn-green--sm {
  font-size: var(--fs-xs);
  padding: 8px 16px;
}

.btn-outline-sm {
  font-size: var(--fs-xs);
  padding: 10px 20px;
}

.btn-outline--light {
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.btn-outline--light:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
  color: #fff;
}

.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

#navbar>.nav {
  transition: background .3s, box-shadow .3s;
  padding: 16px 24px;
}

#navbar.scrolled>.nav {
  background: rgba(247, 243, 236, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

#navbar.scrolled>.mobile-menu {
  margin: 0;
  border-radius: 0%;
  background: rgba(247, 243, 236, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-link--static {
  pointer-events: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: var(--ls-normal);
  display: block;
  line-height: 1;
}

.logo-sub {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--green-mid);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--bark);
  transition: color .2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-mid);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  background: #fff;
  margin: 0 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  transition: background .35s ease, max-height .35s ease, opacity .35s ease, border-radius .35s ease, box-shadow .35s ease, margin .35s ease, padding .35s ease .35s;
}

.mobile-menu.open {
  max-height: 400px;
  padding: 24px;
  opacity: 1;
  transition: max-height .35s ease, opacity .35s ease, border-radius .35s ease, box-shadow .35s ease, margin .35s ease;
}

.mobile-menu a {
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--bark);
}

.mobile-menu a.active {
  color: var(--green-mid);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-inner {
    padding: 0 4px;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

.hero-bg {
  background: linear-gradient(135deg, #e8f5ec 0%, #d4f0dc 40%, #c6e8cf 100%);
}

.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

@media (max-width: 768px) {
  .section-hero {
    padding-top: 100px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 24px;
}

.hero-heading {
  font-size: clamp(2.25rem, 5vw, var(--fs-4xl));
  font-weight: 800;
  color: var(--green-dark);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-top: 8px;
}

.hero-heading__accent {
  color: var(--green-mid);
}

.hero-desc {
  margin-top: 20px;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: #4b5563;
  max-width: 440px;
}

@media (max-width: 900px) {
  .hero-desc {
    margin: 20px auto 0 auto;
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .hero-desc {
    font-size: var(--fs-sm);
    max-width: 100%;
  }
}

.hero-cta {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-cta--center {
  justify-content: center;
}

.hero-stats {
  margin-top: 44px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: var(--ls-tight);
}

.stat-label {
  font-size: var(--fs-xs);
  color: #6b7280;
  font-weight: 500;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

@media (max-width: 768px) {
  .hero-visual {
    display: none;
  }
}

.leaf-blob {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: var(--green-mid);
  opacity: .08;
  pointer-events: none;
}

.leaf-blob--lg {
  width: 380px;
  height: 380px;
  top: -80px;
  left: -80px;
}

.leaf-blob--md {
  width: 280px;
  height: 280px;
  bottom: -60px;
  right: 10%;
}

.leaf-blob--sm {
  width: 180px;
  height: 180px;
  top: 30%;
  right: 5%;
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 138, 78, .18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: heroGlowPulse 4s ease-in-out infinite;
}

@keyframes heroGlowPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(45, 138, 78, .18);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.hero-ring--1 {
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%);
  animation: heroRingSpin 22s linear infinite;
}

.hero-ring--2 {
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  animation: heroRingSpin 32s linear infinite reverse;
}

@keyframes heroRingSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.phone-mockup {
  width: 227px;
  height: 389px;
  background: #0e0e0e;
  border-radius: 28px;
  border: 3px solid rgba(255, 255, 255, .12);
  box-shadow: 0 32px 80px rgba(26, 92, 46, .25), 0 8px 24px rgba(0, 0, 0, .3), 0 0 0 1px rgba(255, 255, 255, .06);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.phone-mockup__notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 9px;
  background: #0e0e0e;
  border-radius: 4px;
  z-index: 5;
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #ecf8f0 0%, #d8f0e4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.8rem .8rem 1.2rem;
  gap: .35rem;
  position: relative;
  overflow: hidden;
}

.phone-mockup__screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(45, 138, 78, .04) 0, rgba(45, 138, 78, .04) 2px, transparent 2px, transparent 14px), repeating-linear-gradient(-45deg, rgba(45, 138, 78, .04) 0, rgba(45, 138, 78, .04) 2px, transparent 2px, transparent 14px);
  pointer-events: none;
}

.phone-mockup__store-label {
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  position: relative;
  z-index: 1;
}

.phone-mockup__emoji {
  font-size: 82px;
  line-height: 1;
  filter: drop-shadow(0 6px 14px rgba(26, 92, 46, .2));
  position: relative;
  z-index: 1;
  margin: .2rem 0;
}

.phone-mockup__img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  margin: .2rem 0;
}

.phone-mockup__name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 700;
  color: var(--bark);
  text-align: center;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.phone-mockup__tag {
  font-size: .69rem;
  font-weight: 600;
  color: var(--green-mid);
  position: relative;
  z-index: 1;
}

.phone-mockup__price {
  font-size: .75rem;
  color: #777;
  position: relative;
  z-index: 1;
}

.phone-mockup__cta {
  background: var(--green-dark);
  color: #fff;
  font-size: .69rem;
  font-weight: 700;
  padding: .38rem .9rem;
  border-radius: 50px;
  margin-top: .3rem;
  position: relative;
  z-index: 1;
  letter-spacing: .3px;
}

@media (max-width: 900px) {
  .phone-mockup {
    width: 170px;
    height: 292px;
  }

  .phone-mockup__notch {
    width: 48px;
    height: 7px;
  }

  .phone-mockup__store-label {
    font-size: .48rem;
  }

  .phone-mockup__emoji {
    font-size: 62px;
  }

  .phone-mockup__name {
    font-size: .72rem;
    margin-top: 0;
  }

  .phone-mockup__tag {
    font-size: .52rem;
  }

  .phone-mockup__price {
    font-size: .56rem;
  }

  .phone-mockup__cta {
    font-size: .52rem;
  }
}

.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
}

.hero-badge--top {
  top: 20px;
  right: 0;
  animation: b1float 3.5s ease-in-out infinite;
}

.hero-badge--bottom {
  bottom: 40px;
  left: 0;
  background: var(--green-dark);
  animation: b2float 4s ease-in-out infinite .6s;
}

@keyframes b1float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes b2float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-badge__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #eef7f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero-badge__icon--dark {
  background: rgba(255, 255, 255, .15);
}

.badge-title {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--green-dark);
}

.badge-title--light {
  color: #fff;
}

.badge-sub {
  font-size: var(--fs-xs);
  color: #6b7280;
  margin-top: 2px;
}

.badge-sub--light {
  color: rgba(255, 255, 255, .65);
}

.hero-strip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(26, 92, 46, .08);
  border: 1px solid rgba(26, 92, 46, .15);
  border-radius: 50px;
  padding: .45rem 1.1rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 3;
}

.hero-strip__dot {
  width: 6px;
  height: 6px;
  background: var(--green-lite);
  border-radius: 50%;
  display: inline-block;
}

.hero-strip__text {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green-mid);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-stats,
  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    gap: 0;
    padding: 40px 20px 48px;
  }

  .hero-heading {
    font-size: clamp(var(--fs-2xl), 7vw, var(--fs-3xl));
  }

  .hero-desc {
    font-size: var(--fs-sm);
    max-width: 100%;
    margin: 16px auto 0;
  }

  .hero-cta {
    margin-top: 32px;
    justify-content: center;
  }

  .btn-green,
  .btn-outline {
    padding: 12px 24px;
    font-size: var(--fs-sm);
  }
}

.marquee-bar {
  overflow: hidden;
  border-top: 2px solid var(--green-mid);
  border-bottom: 2px solid var(--green-mid);
  background: var(--green-dark);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  color: rgba(255, 255, 255, .85);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  animation: marquee 22s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--green-dark);
  color: #fff;
  border-radius: 16px;
  padding: 28px 24px;
}

.stat-card-num {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--amber);
}

.stat-card-label {
  font-size: var(--fs-xs);
  opacity: .75;
  margin-top: 4px;
}

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

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(45, 138, 78, .18);
}

.prod-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prod-img img {
  transition: transform .3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-img img:hover {
  transform: scale(1.05);
}

.prod-img-real {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.badge {
  background: var(--green-mid);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.card-tag {
  font-size: var(--fs-xs);
  color: #9ca3af;
  font-weight: 500;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
  line-height: var(--lh-snug);
}

.card-desc {
  font-size: var(--fs-sm);
  color: #6b7280;
  line-height: var(--lh-relaxed);
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.card-price {
  font-weight: 800;
  font-size: var(--fs-md);
  color: var(--green-dark);
  letter-spacing: -0.01em;
}

.card-unit {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: #9ca3af;
  margin-top: 1px;
}

/* ── Product page — image backgrounds ── */
.prod-img--1 {
  background: #eaf5ed;
}

.prod-img--2 {
  background: #fdf6e8;
}

.prod-img--3 {
  background: #e8f5f0;
}

.prod-img--4 {
  background: #f5ede8;
}

.prod-img--5 {
  background: #eef2fa;
}

.prod-img--6 {
  background: #f0f5e8;
}

.prod-img--7 {
  background: #faeaea;
}

.prod-img--8 {
  background: #f5eafa;
}

/* ── CTA banner ── */
.cta-container {
  text-align: center;
}

.cta-desc {
  color: rgba(255, 255, 255, .8) !important;
  max-width: 480px;
  margin: 16px auto 32px;
}

/* ── Filter bar ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  border: 2px solid #d4e8da;
  background: transparent;
  color: var(--green-dark);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
}

/* ── Why RAWEA ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
  transition: box-shadow .25s;
}

.why-card:hover {
  box-shadow: 0 8px 28px rgba(45, 138, 78, .14);
}

.why-icon {
  margin-bottom: 14px;
  padding: 14px;
  background-color: var(--green-lite-2);
  border-radius: 50%;
}

.why-icon svg {
  color: var(--green-dark);
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: var(--lh-snug);
}

.why-desc {
  font-size: var(--fs-sm);
  color: #6b7280;
  line-height: var(--lh-relaxed);
}

/* ── Testimonials ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

.testi-card {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-identity {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testi-stars {
  color: #facc15;
  font-size: var(--fs-base);
  letter-spacing: 0.05em;
}

.testi-text {
  color: rgba(255, 255, 255, .9);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
}

.avatar svg {
  fill: #fff;
}

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

.author-name {
  color: #fff;
  font-weight: 600;
  font-size: var(--fs-sm);
}

.author-loc {
  color: #86efac;
  font-size: var(--fs-xs);
  margin-top: 3px;
}

.avatar--teal {
  background: #0d9488;
}

.avatar--green {
  background: var(--green-mid);
}

.avatar--amber {
  background: var(--amber);
}

.avatar--lite {
  background: var(--green-lite);
}

.section-testi {
  background: var(--green-dark);
}

/* CTA banner — "Hubungi Kami" btn hover should match section bg */
.section-testi .btn-green {
  background: var(--green-mid);
  border: 2px solid transparent;
  color: #fff;
}

.section-testi .btn-green:hover {
  background: var(--green-dark);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .45);
  transform: none;
}

.section-label--testi {
  color: var(--amber);
  border-color: var(--amber);
}

.section-heading--light {
  color: #fff;
}

/* ── Page hero (products + contact) ── */
.page-hero {
  background: linear-gradient(135deg, #e8f5ec 0%, #d4f0dc 60%, #c6e8cf 100%);
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 110px 20px 56px;
  }

  .page-hero-title {
    font-size: clamp(var(--fs-2xl), 7vw, var(--fs-3xl));
  }

  .page-hero-desc {
    font-size: var(--fs-base);
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 100px 16px 48px;
  }
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-size: clamp(var(--fs-2xl), 4.5vw, var(--fs-4xl));
  font-weight: 800;
  color: var(--green-dark);
  margin-top: 8px;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.page-hero-desc {
  margin-top: 20px;
  font-size: var(--fs-md);
  color: #4b5563;
  max-width: 500px;
  line-height: var(--lh-relaxed);
}

.blob-hero-tr {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -80px;
}

.blob-hero-bl {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: 10%;
}

.page-hero-blob {
  width: 300px;
  height: 300px;
  top: -60px;
  right: -60px;
}

.page-hero-container {
  position: relative;
  z-index: 1;
}

/* ── Contact channels ── */
.contact-intro {
  max-width: 600px;
}

.contact-intro-desc {
  margin-top: 20px;
  color: #6b7280;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
}

.contact-intro-strong {
  font-weight: 700;
  color: var(--green-dark);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .channel-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .channel-card {
    padding: 24px 20px;
  }
}

.channel-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: 1.5px solid transparent;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(45, 138, 78, .14);
  border-color: #d4e8da;
}

.channel-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.channel-icon--wa {
  background: #e8fdf0;
}

.channel-icon--telp {
  background: #e8f5ec;
}

.channel-icon--email {
  background: #fff8e8;
}

.channel-icon--alamat {
  background: #f0f0ff;
}

.channel-icon--ig {
  background: #fde8f5;
}

.channel-icon--fb {
  background: #e8f0ff;
}

.channel-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 4px;
}

.channel-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--green-dark);
  line-height: var(--lh-snug);
}

.channel-val {
  font-size: var(--fs-sm);
  color: #6b7280;
  line-height: var(--lh-normal);
}

.channel-val--mt {
  margin-top: 6px;
}

.channel-val a {
  color: var(--green-mid);
  font-weight: 600;
  transition: color .2s;
}

.channel-val a:hover {
  color: var(--green-dark);
}

.channel-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--green-mid);
  transition: gap .2s;
}

.channel-action:hover {
  gap: 10px;
}

.channel-icon-img {
  width: 32px;
  height: 32px;
}

.info-strip {
  background: var(--green-dark);
  border-radius: 24px;
  padding: 40px 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-top: 64px;
}

@media (max-width: 700px) {
  .info-strip {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}

.info-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-strip-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 4px;
}

.info-strip-val {
  font-size: var(--fs-base);
  font-weight: 600;
  color: #fff;
}

.info-strip-val a {
  color: var(--amber);
}

/* ── FAQ ── */
.section-faq {
  background: #eef7f1;
}

.faq-container {
  max-width: 800px;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-sub {
  margin-top: 14px;
  color: #6b7280;
  font-size: var(--fs-base);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
  cursor: pointer;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--green-dark);
  gap: 12px;
}

.faq-chevron {
  font-size: 1.1rem;
  color: var(--green-mid);
  transition: transform .25s;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: var(--fs-sm);
  color: #6b7280;
  line-height: var(--lh-relaxed);
  padding: 0 22px;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 20px;
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
}

.faq-cta-label {
  color: #6b7280;
  font-size: var(--fs-sm);
  margin-bottom: 16px;
}

/* ── Contact info cards ── */
.contact-info-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
}

.contact-info-card:hover {
  box-shadow: 0 8px 28px rgba(45, 138, 78, .12);
  transform: translateY(-3px);
}

.contact-icon-lg {
  font-size: 2.5rem;
  margin-bottom: .75rem;
  display: block;
}

.contact-info-label {
  font-weight: 700;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: #6b7280;
  margin-bottom: .5rem;
}

.contact-info-val {
  color: #1f2937;
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
}

/* ── Social buttons ── */
.social-links {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .12);
  font-size: var(--fs-base);
  color: #fff;
  transition: background .2s;
}

.social-icon {
  width: 24px;
  height: 24px;
  fill: rgba(255, 255, 255, .65);
}

.social-icon:hover {
  fill: rgba(255, 255, 255, 1);
}

/* ── Footer ── */
footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, .7);
  padding: 60px 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

.footer-brand .logo-name {
  color: #fff;
}

.footer-brand .logo-sub {
  color: var(--green-lite);
}

.footer-desc {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin-top: 12px;
  max-width: 300px;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li {
  font-size: var(--fs-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, .35);
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
  }
}

/* ── WhatsApp FAB ── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 13px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: var(--fs-sm);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
  transition: transform .25s;
}

.wa-fab:hover {
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .wa-fab {
    padding: 13px;
    font-size: 0;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }

  .wa-fab svg {
    margin: 0;
    flex-shrink: 0;
  }

  .wa-fab-text {
    display: none;
  }
}

/* ── Animations ── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.float {
  animation: float 5s ease-in-out infinite;
}

@keyframes float-phone {

  0%,
  100% {
    transform: translateY(0) rotate(7deg);
  }

  50% {
    transform: translateY(-14px) rotate(7deg);
  }
}

.float-phone {
  animation: float-phone 5s ease-in-out infinite;
}

@media (max-width: 900px) {
  .float-phone {
    animation: float 5s ease-in-out infinite;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp .7s ease both;
}

.delay-1 {
  animation-delay: .15s;
}

.delay-2 {
  animation-delay: .30s;
}

.delay-3 {
  animation-delay: .45s;
}

.delay-4 {
  animation-delay: .60s;
}

/* ── Utility ── */
.hidden {
  display: none !important;
}

/* ── Featured product section ── */
.featured-product-section {
  background: #eef7f1;
}

.section-label-center {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--green-mid);
  border-bottom: 3px solid var(--amber);
  padding-bottom: 4px;
}

.featured-card {
  margin: 0 auto;
  max-width: 1200px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 92, 46, .08);
  display: grid;
  grid-template-columns: 1fr 2fr;
  transition: box-shadow .3s;
}

.featured-card:hover {
  box-shadow: 0 16px 48px rgba(26, 92, 46, .14);
}

@media (max-width: 1280px) {
  .featured-card {
    grid-template-columns: 1fr 1fr;
  }

  .featured-footer {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .featured-cta {
    width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: start !important;
  }

  .featured-cta .btn-green {
    border: 2px solid var(--green-mid);
  }

  .featured-cta .btn-green,
  .featured-cta .btn-outline {
    width: 100%;
    padding: 14px 32px;
  }
}

.icon-text-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

@media (max-width: 820px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
}

.featured-img {
  background: #e8f5ec;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  position: relative;
  overflow: hidden;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  transition: transform .3s ease;
}

.featured-img:hover img {
  transform: scale(1.05);
}

.featured-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(45, 138, 78, .06) 0, rgba(45, 138, 78, .06) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(-45deg, rgba(45, 138, 78, .04) 0, rgba(45, 138, 78, .04) 1px, transparent 1px, transparent 12px);
}

.featured-img-emoji {
  position: relative;
  z-index: 1;
  line-height: 1;
  animation: float 4s ease-in-out infinite;
}

.featured-img-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--green-dark);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
}

.featured-img-badge-bottom {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: #fff;
  color: var(--bark);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
  z-index: 2;
}

.featured-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.featured-space {
  flex: 1;
}

@media (max-width: 720px) {
  .featured-body {
    padding: 24px 20px;
    gap: 14px;
  }

  .featured-img {
    min-height: 220px;
    font-size: 80px;
  }

  .featured-footer {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .featured-cta {
    width: 100%;
  }
}

.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
  font-weight: 800;
  color: var(--bark);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
}

.featured-desc {
  font-size: var(--fs-base);
  color: #4b5563;
  line-height: var(--lh-relaxed);
}

.featured-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-sm);
  color: #4b5563;
  line-height: var(--lh-normal);
}

.point-dot {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #eef7f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  margin-top: 1px;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #f0ede8;
}

.featured-price-note {
  font-size: var(--fs-xs);
  color: #aaa;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.featured-price {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--green-dark);
}

.featured-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.featured-section-heading {
  margin-top: .5rem;
}

.featured-section-desc {
  margin-top: 1rem;
  color: #6b7280;
  max-width: 480px;
  margin-inline: auto;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
}

/* ── Prod detail (future use) ── */
.prod-detail-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transition: box-shadow .3s;
}

@media (max-width: 640px) {
  .prod-detail-card {
    grid-template-columns: 1fr;
  }
}

.prod-detail-img {
  background: linear-gradient(145deg, #c8e6a8 0%, #96ca60 40%, #6aaf3d 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.prod-detail-img::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
}

.prod-detail-img::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.prod-detail-img .emoji-xl {
  font-size: 110px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .2));
  position: relative;
  z-index: 1;
  animation: float 3.5s ease-in-out infinite;
}

.eco-ribbon {
  position: absolute;
  top: 18px;
  left: 0;
  background: var(--green-dark);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: .4rem 1.2rem .4rem .9rem;
  clip-path: polygon(0 0, 100% 0, 88% 50%, 100% 100%, 0 100%);
}

.prod-detail-info {
  padding: 2.2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prod-detail-top {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.tag-aksesori {
  background: #eef7f1;
  color: var(--green-mid);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: .3rem .8rem;
  border-radius: 50px;
}

.tag-handmade {
  background: #fff8e6;
  color: var(--amber);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: .3rem .8rem;
  border-radius: 50px;
}

.prod-detail-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: var(--bark);
  line-height: 1.25;
  margin-bottom: .75rem;
}

.prod-detail-desc {
  font-size: .88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.prod-features {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.6rem;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .83rem;
  color: #444;
  line-height: 1.4;
}

.feat-dot {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #eef7f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  margin-top: 1px;
}

.prod-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
  gap: .8rem;
}

.prod-price-label {
  font-size: .75rem;
  color: #999;
  margin-bottom: .15rem;
}

.prod-price-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--green-dark);
  font-weight: 700;
  line-height: 1;
}

.prod-price-main span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem;
  font-weight: 400;
  color: #888;
  margin-left: .25rem;
}

.prod-cta-btns {
  display: flex;
  gap: .6rem;
  align-items: center;
}