@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&display=swap');

:root {
  --background: hsl(33 38% 97%);
  --foreground: hsl(22 35% 14%);
  --card: hsl(0 0% 100%);
  --muted: hsl(30 20% 94%);
  --muted-foreground: hsl(25 12% 42%);
  --primary: hsl(20 65% 52%);
  --primary-rgb: 196 97 58;
  --primary-foreground: hsl(33 40% 98%);
  --primary-glow: hsl(24 80% 62%);
  --primary-deep: hsl(18 55% 38%);
  --secondary: hsl(33 30% 92%);
  --accent: hsl(36 75% 60%);
  --border: hsl(28 25% 88%);
  --radius: 0.85rem;
  --gradient-primary: linear-gradient(135deg, hsl(20 65% 52%) 0%, hsl(28 78% 60%) 50%, hsl(36 80% 65%) 100%);
  --gradient-warm: linear-gradient(180deg, hsl(33 50% 96%) 0%, hsl(28 35% 92%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(22 35% 14% / 0.15) 0%, hsl(22 35% 14% / 0.55) 60%, hsl(22 35% 14% / 0.85) 100%);
  --gradient-glow: radial-gradient(60% 80% at 50% 0%, hsl(36 80% 65% / 0.35), transparent 70%);
  --gradient-card: linear-gradient(160deg, hsl(0 0% 100%) 0%, hsl(33 40% 98%) 100%);
  --shadow-soft: 0 4px 20px -4px hsl(20 50% 30% / 0.08);
  --shadow-elegant: 0 20px 50px -20px hsl(20 60% 35% / 0.25);
  --shadow-glow: 0 10px 40px -10px hsl(24 80% 60% / 0.45);
  --shadow-premium: 0 30px 80px -30px hsl(18 55% 25% / 0.35);
  --ease-cinematic: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: hsl(20 65% 52% / 0.25); color: var(--primary-deep); }

h1, h2, h3, h4, .font-display { font-family: 'Fraunces', Georgia, serif; font-feature-settings: 'ss01'; letter-spacing: -0.015em; }
.container { width: min(100% - 2rem, 1280px); margin-inline: auto; }
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon-xs { width: .875rem; height: .875rem; }
.site-shell { min-height: 100vh; background: var(--background); }
.text-gradient { background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.italic { font-style: italic; }
.accent-text { color: var(--accent); }

.topbar { display: block; background: var(--foreground); color: hsl(33 40% 98% / .8); border-bottom: 1px solid hsl(33 40% 98% / .05); }
.topbar-inner { height: 36px; display: flex; align-items: center; justify-content: space-between; font-size: .75rem; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar-left span, .topbar-right span, .topbar a { display: inline-flex; align-items: center; gap: .5rem; }
.topbar a:hover { color: var(--accent); }

.site-header { position: sticky; top: 0; z-index: 50; width: 100%; transition: background .5s var(--ease-smooth), box-shadow .5s var(--ease-smooth), border-color .5s var(--ease-smooth); background: transparent; }
.site-header.scrolled { background: hsl(0 0% 100% / .7); backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%); box-shadow: var(--shadow-soft); border-bottom: 1px solid hsl(28 25% 88% / .5); }
.nav-inner { min-height: 72px; padding-block: .75rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand-mark { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: .75rem; background: var(--gradient-primary); box-shadow: var(--shadow-glow); color: var(--primary-foreground); transition: transform .25s ease; }
.brand:hover .brand-mark { transform: scale(1.05); }
.brand-text { line-height: 1.05; }
.brand-text > span { display: block; font-family: 'Fraunces', Georgia, serif; font-weight: 650; font-size: 1.125rem; letter-spacing: -.02em; }
.brand-text small { display: block; margin-top: .18rem; font-size: .625rem; font-weight: 650; text-transform: uppercase; letter-spacing: .2em; color: var(--muted-foreground); }

.desktop-nav { display: flex; align-items: center; gap: .25rem; }
.desktop-nav > a, .nav-dropdown > button { height: 2.5rem; display: inline-flex; align-items: center; gap: .35rem; padding-inline: 1rem; border: 0; background: transparent; border-radius: .55rem; font-size: .875rem; font-weight: 650; cursor: pointer; transition: color .2s ease, background .2s ease; }
.desktop-nav > a:hover, .nav-dropdown:hover > button { color: var(--primary); background: hsl(20 65% 52% / .05); }
.nav-dropdown { position: relative; }
.dropdown-panel { position: absolute; top: calc(100% + .5rem); left: 50%; transform: translateX(-50%) translateY(8px); opacity: 0; pointer-events: none; transition: .2s ease; z-index: 60; }
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.dropdown-grid { width: 560px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; padding: 1rem; border: 1px solid var(--border); border-radius: .85rem; background: var(--card); box-shadow: var(--shadow-elegant); }
.dropdown-card { display: grid; grid-template-columns: 2.5rem 1fr; gap: .75rem; padding: .75rem; border-radius: .55rem; transition: background .2s ease; }
.dropdown-card span { grid-row: span 2; display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: .55rem; background: hsl(20 65% 52% / .1); color: var(--primary); transition: .2s ease; }
.dropdown-card:hover { background: hsl(20 65% 52% / .05); }
.dropdown-card:hover span { background: var(--primary); color: var(--primary-foreground); }
.dropdown-card strong { font-size: .875rem; }
.dropdown-card small { color: var(--muted-foreground); font-size: .75rem; }
.dropdown-all { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; margin-top: .5rem; padding: .75rem; border-radius: .55rem; background: hsl(20 65% 52% / .05); color: var(--primary); border: 1px solid hsl(20 65% 52% / .2); font-size: .875rem; font-weight: 700; }
.dropdown-all:hover { background: hsl(20 65% 52% / .1); }

.nav-actions { display: flex; align-items: center; gap: .5rem; }
.icon-button { width: 2.5rem; height: 2.5rem; display: grid; place-items: center; border-radius: 999px; border: 0; background: transparent; color: hsl(22 35% 14% / .7); cursor: pointer; transition: .2s ease; }
.icon-button:hover { background: hsl(20 65% 52% / .1); color: var(--primary); }
.menu-button { display: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; border-radius: 999px; font-weight: 750; border: 1px solid transparent; white-space: nowrap; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-premium, .btn-default { min-height: 2.5rem; padding: .68rem 1.1rem; color: var(--primary-foreground); background: var(--gradient-primary); box-shadow: var(--shadow-glow); }
.btn-premium:hover, .btn-default:hover { box-shadow: var(--shadow-premium); }
.btn-hero { min-height: 3.25rem; padding: .9rem 1.35rem; color: var(--foreground); background: linear-gradient(135deg, var(--accent), hsl(36 85% 68%)); box-shadow: 0 14px 45px -18px hsl(36 75% 35% / .8); }
.btn-hero:hover .icon, .btn-default:hover .icon { transform: translateX(4px); }
.btn-hero .icon, .btn-default .icon { transition: transform .2s ease; }
.btn-glass { min-height: 3.25rem; padding: .9rem 1.35rem; color: #fff; background: hsl(0 0% 100% / .1); border-color: hsl(0 0% 100% / .28); backdrop-filter: blur(12px); }
.btn-glass:hover { background: #fff; color: var(--foreground); }
.btn-outline { min-height: 2.75rem; padding: .75rem 1rem; background: transparent; color: var(--foreground); border-color: var(--border); }
.btn-outline:hover { border-color: hsl(20 65% 52% / .4); color: var(--primary); background: hsl(20 65% 52% / .05); }
.btn-small { min-height: 2.2rem; width: 100%; padding: .45rem .9rem; font-size: .875rem; }

.mobile-sheet { position: fixed; inset: 0; z-index: 100; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.mobile-sheet.open { opacity: 1; pointer-events: auto; }
.sheet-overlay { position: absolute; inset: 0; background: hsl(22 35% 14% / .45); backdrop-filter: blur(3px); }
.sheet-panel { position: absolute; right: 0; top: 0; height: 100%; width: min(88vw, 400px); background: var(--card); box-shadow: var(--shadow-premium); transform: translateX(100%); transition: transform .3s ease; padding: 2rem 1.25rem; }
.mobile-sheet.open .sheet-panel { transform: translateX(0); }
.sheet-close { position: absolute; right: 1rem; top: .75rem; width: 2.5rem; height: 2.5rem; border: 0; background: transparent; font-size: 2rem; cursor: pointer; }
.sheet-links { margin-top: 3rem; display: flex; flex-direction: column; gap: .25rem; }
.sheet-links a:not(.btn) { padding: .9rem 1rem; border-radius: .65rem; font-weight: 650; }
.sheet-links a:hover { background: hsl(20 65% 52% / .1); color: var(--primary); }
.sheet-label { margin-top: .75rem; padding: .75rem 1rem .35rem; border-top: 1px solid var(--border); color: var(--muted-foreground); font-size: .75rem; text-transform: uppercase; letter-spacing: .18em; }
.sheet-product { display: flex; align-items: center; gap: .75rem; font-size: .875rem; }
.sheet-product .icon { color: var(--primary); width: 1rem; height: 1rem; }
.sheet-cta { margin-top: 1.5rem; }

.hero { position: relative; height: 100svh; min-height: 640px; overflow: hidden; background: var(--foreground); }
.hero-slide { position: absolute; inset: 0; opacity: 0; z-index: 0; transition: opacity 1.4s ease-out; }
.hero-slide.active { opacity: 1; z-index: 10; }
.hero-image-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero-slide.active .hero-image-wrap img { animation: kenBurns 12s var(--ease-cinematic) forwards; }
.hero-gradient, .hero-side-gradient { position: absolute; inset: 0; pointer-events: none; }
.hero-gradient { background: var(--gradient-hero); }
.hero-side-gradient { background: linear-gradient(90deg, hsl(22 35% 14% / .6), hsl(22 35% 14% / .2), transparent); }
.hero-content { position: relative; z-index: 20; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.hero-copy { display: none; max-width: 42rem; color: var(--background); }
.hero-copy.active { display: block; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; padding: .42rem 1rem; border-radius: 999px; border: 1px solid hsl(0 0% 100% / .3); background: hsl(0 0% 100% / .1); backdrop-filter: blur(12px); font-size: .75rem; font-weight: 650; letter-spacing: .03em; }
.eyebrow .icon { color: var(--accent); }
.hero h1 { margin: 1.5rem 0 0; font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1.05; font-weight: 650; letter-spacing: -.035em; }
.hero h1 span { color: var(--accent); font-style: italic; }
.hero p { margin: 1.5rem 0 0; max-width: 36rem; color: hsl(0 0% 100% / .85); font-size: 1.125rem; line-height: 1.75; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero-controls-wrap { position: absolute; inset-inline: 0; bottom: 0; z-index: 20; border-top: 1px solid hsl(0 0% 100% / .1); background: linear-gradient(0deg, hsl(22 35% 14% / .7), transparent); }
.hero-controls { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.25rem; }
.hero-stats { display: flex; align-items: center; gap: 2rem; color: hsl(0 0% 100% / .9); }
.hero-stats strong { display: block; font-family: 'Fraunces', Georgia, serif; font-size: 1.5rem; font-weight: 650; line-height: 1; }
.hero-stats span { display: block; margin-top: .25rem; font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; color: hsl(0 0% 100% / .6); }
.slide-controls { display: flex; align-items: center; gap: .75rem; }
.slide-controls > button { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; border-radius: 999px; border: 1px solid hsl(0 0% 100% / .3); background: transparent; color: #fff; cursor: pointer; transition: .2s ease; }
.slide-controls > button:hover { background: #fff; color: var(--foreground); }
.slide-dots { display: flex; align-items: center; gap: .5rem; }
.dot { position: relative; width: 1.5rem; height: .375rem; overflow: hidden; padding: 0; border: 0; border-radius: 999px; background: hsl(0 0% 100% / .2); cursor: pointer; transition: width .2s ease, background .2s ease; }
.dot.active { width: 3rem; background: hsl(0 0% 100% / .3); }
.dot span { position: absolute; inset-block: 0; left: 0; width: 0%; background: var(--accent); transition: width .1s linear; }

.section { padding-block: 6rem; }
.warm-section { background: var(--gradient-warm); }
.trustbar { border-block: 1px solid hsl(28 25% 88% / .6); background: hsl(33 30% 92% / .4); }
.trustbar-inner { min-height: 5.25rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem 2.5rem; color: var(--muted-foreground); font-size: .75rem; font-weight: 650; text-transform: uppercase; letter-spacing: .18em; text-align: center; }
.trustbar-inner span { color: hsl(22 35% 14% / .6); }
.trustbar-inner strong { opacity: .7; transition: opacity .2s ease; font-weight: 650; }
.trustbar-inner strong:hover { opacity: 1; }

.section-intro .badge, .badge { display: inline-flex; align-items: center; gap: .4rem; border: 1px solid hsl(20 65% 52% / .3); background: hsl(20 65% 52% / .05); color: var(--primary); padding: .32rem .78rem; border-radius: 999px; font-size: .75rem; font-weight: 750; }
.section-intro h2 { margin: 1.25rem 0 0; font-size: clamp(2.25rem, 4vw, 3rem); line-height: 1.12; font-weight: 650; letter-spacing: -.03em; }
.section-intro p { margin: 1.25rem 0 0; color: var(--muted-foreground); line-height: 1.75; }
.left-intro p { max-width: 28rem; }
.left-intro .btn { margin-top: 2rem; }
.center-intro { text-align: center; max-width: 48rem; margin-inline: auto; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.section-head .section-intro { max-width: 42rem; }

.value-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; }
.value-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.hover-card, .product-card, .testimonial-card { position: relative; overflow: hidden; border: 1px solid hsl(28 25% 88% / .6); background: var(--card); border-radius: var(--radius); transition: transform .5s ease, box-shadow .5s ease; }
.hover-card:hover, .hover-lift:hover { transform: translateY(-.25rem); box-shadow: var(--shadow-elegant); }
.value-card { padding: 1.75rem; }
.glow-bg { position: absolute; inset: 0; opacity: 0; background: var(--gradient-glow); transition: opacity .5s ease; }
.value-card:hover .glow-bg { opacity: 1; }
.card-icon { position: relative; display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: .75rem; background: hsl(20 65% 52% / .1); color: var(--primary); transition: .5s ease; }
.value-card:hover .card-icon { background: var(--gradient-primary); color: var(--primary-foreground); box-shadow: var(--shadow-glow); }
.value-card h3 { position: relative; margin: 1.25rem 0 0; font-size: 1.25rem; font-weight: 650; }
.value-card p { position: relative; color: var(--muted-foreground); font-size: .875rem; line-height: 1.65; }
.value-card code { position: relative; display: block; margin-top: 1.25rem; color: hsl(25 12% 42% / .6); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .75rem; }

.product-section .product-grid, .article-grid { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.product-card { border-color: hsl(28 25% 88% / .5); }
.product-card:hover { transform: translateY(-.5rem); box-shadow: var(--shadow-premium); }
.product-image { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--secondary); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.product-card:hover .product-image img { transform: scale(1.1); }
.product-badge { position: absolute; left: 1rem; top: 1rem; border-radius: 999px; background: hsl(22 35% 14% / .9); color: var(--background); padding: .32rem .75rem; font-size: .625rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; backdrop-filter: blur(12px); }
.product-action { position: absolute; inset-inline: 1rem; bottom: 1rem; opacity: 0; transform: translateY(.5rem); transition: .5s ease; }
.product-card:hover .product-action { opacity: 1; transform: translateY(0); }
.product-body { padding: 1.25rem; }
.product-body small { color: var(--primary); font-size: .625rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.product-body h3 { margin: .5rem 0 0; font-size: 1.125rem; line-height: 1.2; font-weight: 650; }
.product-body p { margin: .4rem 0 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: var(--muted-foreground); font-size: .75rem; line-height: 1.45; }
.price-row { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid hsl(28 25% 88% / .6); display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.price-row strong { display: block; color: var(--primary-deep); font-family: 'Fraunces', Georgia, serif; font-size: 1.25rem; font-weight: 650; }
.price-row span { color: var(--muted-foreground); font-size: .7rem; font-weight: 600; }

.solution-grid { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.solution-card { border-radius: 1rem; background: var(--gradient-card); padding: 1.75rem; }
.solution-card .orb { position: absolute; top: -2.5rem; right: -2.5rem; width: 8rem; height: 8rem; border-radius: 50%; background: hsl(20 65% 52% / .05); transition: .3s ease; }
.solution-card:hover .orb { transform: scale(1.5); background: hsl(20 65% 52% / .1); }
.solution-card > .icon { position: relative; width: 2.25rem; height: 2.25rem; color: var(--primary); stroke-width: 1.5; }
.solution-card h3 { position: relative; margin: 1.25rem 0 0; font-size: 1.25rem; font-weight: 650; }
.solution-card p { position: relative; color: var(--muted-foreground); font-size: .875rem; line-height: 1.55; }
.solution-card span { position: relative; margin-top: 1.5rem; display: inline-flex; align-items: center; gap: .5rem; border-radius: 999px; background: hsl(36 75% 60% / .2); color: var(--primary-deep); padding: .32rem .75rem; font-size: .75rem; font-weight: 800; }

.dark-section { position: relative; overflow: hidden; background: var(--foreground); color: var(--background); }
.stats-glow { position: absolute; width: 24rem; height: 24rem; border-radius: 999px; opacity: .3; filter: blur(64px); }
.stats-glow-left { left: -8rem; top: 0; background: hsl(20 65% 52% / .8); }
.stats-glow-right { right: -8rem; bottom: 0; background: hsl(36 75% 60% / .8); }
.stats-content { position: relative; }
.light-intro p, .light-intro h2 { color: var(--background); }
.dark-badge { color: hsl(33 40% 98% / .8); background: hsl(0 0% 100% / .05); border-color: hsl(0 0% 100% / .2); }
.stats-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid hsl(0 0% 100% / .1); border-radius: 1.5rem; background: hsl(0 0% 100% / .05); }
.stats-grid div { background: var(--foreground); padding: 2rem; }
.stats-grid strong { display: block; font-family: 'Fraunces', Georgia, serif; font-size: clamp(3rem, 5vw, 3.75rem); line-height: 1; font-weight: 650; }
.stats-grid span { display: block; margin-top: .75rem; color: var(--accent); font-size: .875rem; font-weight: 850; text-transform: uppercase; letter-spacing: .13em; }
.stats-grid p { margin: .5rem 0 0; color: hsl(33 40% 98% / .6); font-size: .875rem; line-height: 1.5; }

.testimonial-layout { display: grid; grid-template-columns: 4fr 8fr; gap: 3rem; }
.rating-row { display: flex; align-items: center; gap: .75rem; margin-top: 2rem; font-size: .875rem; }
.rating-row span { color: var(--muted-foreground); }
.stars { display: flex; align-items: center; }
.stars .icon { width: 1.25rem; height: 1.25rem; color: var(--accent); fill: var(--accent); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.testimonial-card { padding: 1.75rem; }
.offset-card { transform: translateY(2rem); }
.offset-card:hover { transform: translateY(1.75rem); }
.quote-icon { width: 1.75rem; height: 1.75rem; color: hsl(20 65% 52% / .3); }
.testimonial-card > p { margin: 1rem 0 0; color: hsl(22 35% 14% / .9); line-height: 1.7; font-size: .875rem; }
.person-row { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid hsl(28 25% 88% / .6); display: flex; align-items: center; gap: .75rem; }
.person-row img { width: 2.75rem; height: 2.75rem; border-radius: 999px; object-fit: cover; background: var(--secondary); }
.person-row strong { display: block; font-size: .875rem; }
.person-row span { display: block; color: var(--muted-foreground); font-size: .75rem; margin-top: .12rem; }

.article-card { display: block; overflow: hidden; border-radius: 1rem; background: var(--card); box-shadow: var(--shadow-soft); transition: .5s ease; }
.article-card:hover { box-shadow: var(--shadow-elegant); }
.article-image { aspect-ratio: 4 / 3; overflow: hidden; }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.article-card:hover .article-image img { transform: scale(1.1); }
.article-body { padding: 1.5rem; }
.article-meta { display: flex; align-items: center; gap: .75rem; text-transform: uppercase; letter-spacing: .13em; font-size: .68rem; }
.article-meta strong { color: var(--primary); font-style: normal; }
.article-meta span { color: hsl(25 12% 42% / .6); }
.article-meta em { color: var(--muted-foreground); font-style: normal; }
.article-body h3 { margin: .75rem 0 0; font-size: 1.125rem; line-height: 1.25; font-weight: 650; transition: color .2s ease; }
.article-card:hover h3 { color: var(--primary); }
.article-body p { margin: .5rem 0 0; color: var(--muted-foreground); font-size: .875rem; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-body small { display: block; margin-top: 1.25rem; color: var(--muted-foreground); font-size: .75rem; }

.cta-box { position: relative; overflow: hidden; border-radius: 2rem; background: var(--gradient-primary); box-shadow: var(--shadow-premium); padding: clamp(2.5rem, 5vw, 4rem); }
.cta-glows { position: absolute; inset: 0; opacity: .3; }
.cta-glows span { position: absolute; width: 18rem; height: 18rem; border-radius: 999px; filter: blur(64px); }
.cta-glows span:first-child { right: -6rem; top: -6rem; background: hsl(36 75% 60% / .75); }
.cta-glows span:last-child { left: -6rem; bottom: -6rem; background: hsl(0 0% 100% / .7); }
.cta-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: 2.5rem; }
.cta-copy { color: var(--primary-foreground); }
.cta-badge { border-color: hsl(0 0% 100% / .3); background: hsl(0 0% 100% / .1); color: hsl(0 0% 100% / .9); backdrop-filter: blur(12px); }
.cta-copy h2 { margin: 1.25rem 0 0; font-size: clamp(2.25rem, 4vw, 3rem); line-height: 1.13; font-weight: 650; }
.cta-copy p { max-width: 28rem; margin: 1rem 0 0; color: hsl(0 0% 100% / .85); line-height: 1.7; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.benefit-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.benefit-list li { display: flex; align-items: flex-start; gap: .75rem; border-radius: .75rem; background: hsl(0 0% 100% / .1); color: var(--primary-foreground); padding: 1rem; backdrop-filter: blur(8px); font-weight: 650; font-size: .875rem; }
.benefit-list .icon { margin-top: .1rem; color: var(--accent); }

.site-footer { position: relative; overflow: hidden; background: var(--foreground); color: hsl(33 40% 98% / .85); }
.footer-top-line { position: absolute; inset-inline: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, hsl(36 75% 60% / .5), transparent); }
.footer-orb { position: absolute; top: -6rem; right: 0; width: 18rem; height: 18rem; border-radius: 999px; background: hsl(20 65% 52% / .2); filter: blur(64px); }
.footer-grid { position: relative; display: grid; grid-template-columns: 4fr 2fr 2fr 4fr; gap: 3rem; padding-block: 5rem; }
.site-footer .brand-text small { color: hsl(33 40% 98% / .5); }
.footer-brand p { max-width: 24rem; margin: 1.5rem 0 0; color: hsl(33 40% 98% / .7); font-size: .875rem; line-height: 1.8; }
.socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.socials a { width: 2.5rem; height: 2.5rem; display: grid; place-items: center; border-radius: 999px; border: 1px solid hsl(0 0% 100% / .15); color: hsl(33 40% 98% / .8); transition: .2s ease; }
.socials a:hover { background: var(--accent); color: var(--foreground); border-color: var(--accent); }
.site-footer h4 { margin: 0; color: var(--background); font-size: .875rem; font-weight: 750; text-transform: uppercase; letter-spacing: .15em; }
.site-footer ul { list-style: none; margin: 1.25rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .8rem; }
.site-footer li, .site-footer a { color: hsl(33 40% 98% / .7); font-size: .875rem; }
.site-footer a:hover { color: var(--accent); }
.footer-contact li { display: flex; align-items: flex-start; gap: .75rem; line-height: 1.55; }
.footer-contact .icon { width: 1rem; height: 1rem; margin-top: .12rem; color: var(--accent); }
.footer-bottom { border-top: 1px solid hsl(0 0% 100% / .1); }
.footer-bottom-inner { min-height: 4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: hsl(33 40% 98% / .55); font-size: .75rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 1.25rem; }
.footer-bottom a { font-size: .75rem; color: hsl(33 40% 98% / .55); }

/* Header Search Modal */
.search-overlay { position: fixed; inset: 0; z-index: 120; display: grid; place-items: start center; padding: 7rem 1rem 2rem; opacity: 0; pointer-events: none; transition: opacity .22s ease; }
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-backdrop { position: absolute; inset: 0; background: hsl(22 35% 14% / .55); backdrop-filter: blur(8px); }
.search-dialog { position: relative; width: min(100%, 760px); max-height: min(82vh, 720px); overflow: auto; border: 1px solid hsl(0 0% 100% / .2); border-radius: 1.5rem; background: hsl(0 0% 100% / .96); box-shadow: var(--shadow-premium); padding: 1.35rem; transform: translateY(-10px) scale(.98); transition: transform .22s var(--ease-smooth); }
.search-overlay.open .search-dialog { transform: translateY(0) scale(1); }
.search-close { position: absolute; right: .9rem; top: .75rem; width: 2.35rem; height: 2.35rem; display: grid; place-items: center; border: 0; border-radius: 999px; background: hsl(20 65% 52% / .08); color: var(--foreground); font-size: 1.55rem; line-height: 1; cursor: pointer; }
.search-close:hover { color: var(--primary); background: hsl(20 65% 52% / .14); }
.search-head { padding-right: 2.75rem; }
.search-eyebrow { display: inline-flex; align-items: center; gap: .45rem; margin-bottom: .55rem; color: var(--primary); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.search-head h2 { margin: 0; font-size: clamp(1.5rem, 4vw, 2.25rem); }
.search-head p { margin: .45rem 0 0; color: var(--muted-foreground); line-height: 1.65; }
.search-form { display: grid; grid-template-columns: 1fr auto; gap: .75rem; margin-top: 1.15rem; }
.search-input-wrap { min-height: 3.25rem; display: flex; align-items: center; gap: .75rem; padding-inline: 1rem; border: 1px solid var(--border); border-radius: 999px; background: #fff; box-shadow: var(--shadow-soft); }
.search-input-wrap .icon { color: var(--primary); }
.search-input-wrap input { width: 100%; border: 0; outline: 0; background: transparent; font: inherit; color: var(--foreground); }
.search-input-wrap input::placeholder { color: var(--muted-foreground); }
.search-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1rem 0; }
.search-chips button { border: 1px solid hsl(20 65% 52% / .18); border-radius: 999px; background: hsl(20 65% 52% / .06); color: var(--primary); padding: .45rem .8rem; font-size: .82rem; font-weight: 750; cursor: pointer; }
.search-chips button:hover { background: hsl(20 65% 52% / .12); }
.search-results { display: grid; gap: .65rem; }
.search-result-heading { margin: .25rem 0 .1rem; color: var(--muted-foreground); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.search-result-card { display: grid; grid-template-columns: 5rem 1fr; gap: .85rem; align-items: center; padding: .7rem; border: 1px solid var(--border); border-radius: 1rem; background: #fff; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.search-result-card:hover, .search-result-card:focus-visible { transform: translateY(-1px); border-color: hsl(20 65% 52% / .32); box-shadow: var(--shadow-soft); outline: 0; }
.search-result-card img { width: 5rem; height: 5rem; object-fit: cover; border-radius: .8rem; background: var(--muted); }
.search-result-card small { display: block; margin-bottom: .15rem; color: var(--primary); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.search-result-card strong { display: block; font-size: .98rem; line-height: 1.25; }
.search-result-card p { margin: .2rem 0; color: var(--muted-foreground); font-size: .86rem; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.search-result-card span { color: var(--foreground); font-size: .82rem; font-weight: 750; }
.search-empty { display: grid; gap: .25rem; padding: 1rem; border: 1px dashed var(--border); border-radius: 1rem; color: var(--muted-foreground); background: hsl(33 40% 98% / .8); }
.search-empty strong { color: var(--foreground); }
.not-found-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--muted); }
.not-found-box { text-align: center; }
.not-found-box h1 { margin: 0 0 1rem; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 2.25rem; font-weight: 800; }
.not-found-box p { margin: 0 0 1rem; color: var(--muted-foreground); font-size: 1.25rem; }
.not-found-box a { color: var(--primary); text-decoration: underline; }
.not-found-box a:hover { color: hsl(20 65% 52% / .9); }

.reveal { opacity: 0; transform: translateY(24px); animation: reveal .9s var(--ease-cinematic) forwards; }
.reveal-delay-1 { animation-delay: .15s; }
.reveal-delay-2 { animation-delay: .3s; }
.reveal-delay-3 { animation-delay: .45s; }

@keyframes kenBurns { 0% { transform: scale(1.05) translate(0, 0); } 100% { transform: scale(1.18) translate(-1.5%, -1%); } }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .order-button { display: none; }
  .value-grid, .testimonial-layout { grid-template-columns: 1fr; }
  .product-section .product-grid, .article-grid, .solution-grid, .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .container { width: min(100% - 1.5rem, 1280px); }
  .topbar { display: none; }
  .hero { min-height: 640px; }
  .hero-content { justify-content: flex-end; padding-bottom: 9rem; }
  .hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .hero p { font-size: 1rem; }
  .hero-stats { display: none; }
  .hero-controls { justify-content: flex-end; }
  .section, .stats-section { padding-block: 4.5rem; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .value-cards, .testimonial-grid, .product-section .product-grid, .article-grid, .solution-grid, .stats-grid, .cta-grid { grid-template-columns: 1fr; }
  .offset-card { transform: none; }
  .offset-card:hover { transform: translateY(-.25rem); }
  .cta-box { border-radius: 1.5rem; padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; padding-block: 4rem; }
  .footer-bottom-inner { flex-direction: column; padding-block: 1.25rem; text-align: center; }
  .footer-bottom div { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 640px) {
  .search-overlay { padding: 5.25rem .75rem 1rem; align-items: start; }
  .search-dialog { border-radius: 1.1rem; padding: 1rem; max-height: 84vh; }
  .search-form { grid-template-columns: 1fr; }
  .search-form .btn { width: 100%; }
  .search-result-card { grid-template-columns: 4.25rem 1fr; }
  .search-result-card img { width: 4.25rem; height: 4.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}
.brand-logo{background:#fff;overflow:hidden}.brand-logo img{width:100%;height:100%;object-fit:contain;padding:6px;border-radius:inherit}.site-footer .brand-logo{background:rgba(255,255,255,.08)}

/* Floating WhatsApp CTA */
.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 80;
  width: 3.85rem;
  height: 3.85rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 18px 45px rgba(37, 211, 102, .42), 0 0 0 0 rgba(37, 211, 102, .35);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  animation: whatsappPulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  filter: saturate(1.08);
  box-shadow: 0 22px 56px rgba(37, 211, 102, .48), 0 0 0 .55rem rgba(37, 211, 102, .12);
}
.whatsapp-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}
.whatsapp-icon {
  width: 2.05rem;
  height: 2.05rem;
  display: block;
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 18px 45px rgba(37, 211, 102, .42), 0 0 0 0 rgba(37, 211, 102, .35); }
  50% { box-shadow: 0 18px 45px rgba(37, 211, 102, .42), 0 0 0 .7rem rgba(37, 211, 102, 0); }
}
@media (max-width: 768px) {
  .whatsapp-float { width: 3.45rem; height: 3.45rem; }
  .whatsapp-icon { width: 1.85rem; height: 1.85rem; }
}

/* Dynamic routed pages */
.page-hero{position:relative;overflow:hidden;padding:150px 0 78px;background:radial-gradient(circle at 15% 20%,rgba(227,173,80,.30),transparent 32%),linear-gradient(135deg,#fff7ea,#f3e3d5 58%,#e9d2bf);}
.page-hero:after{content:'';position:absolute;right:-120px;top:-140px;width:380px;height:380px;border-radius:50%;background:rgba(199,101,62,.13);filter:blur(4px)}
.page-hero-inner{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) 260px;gap:32px;align-items:end}.page-hero h1{font-family:'Fraunces', serif;font-size:clamp(42px,7vw,86px);line-height:.96;margin:18px 0;color:var(--foreground);letter-spacing:-.055em}.page-hero p{font-size:18px;max-width:720px;color:var(--muted-foreground);line-height:1.75}.page-hero-card{padding:24px;border-radius:28px;background:rgba(255,255,255,.78);border:1px solid rgba(255,255,255,.65);box-shadow:var(--shadow-premium);backdrop-filter:blur(14px)}.page-hero-card strong{display:block;font-family:'Fraunces', serif;font-size:42px;color:var(--primary)}.page-hero-card span{font-weight:800;color:var(--muted-foreground)}.category-filter{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:28px}.category-filter a{padding:12px 16px;border-radius:999px;background:#fff;border:1px solid rgba(123,85,63,.14);font-weight:800;color:var(--muted-foreground);box-shadow:0 12px 32px rgba(72,35,19,.06)}.category-filter a.active,.category-filter a:hover{background:linear-gradient(135deg,var(--primary),var(--accent));color:#fff;border-color:transparent}.product-grid-page{grid-template-columns:repeat(auto-fit,minmax(250px,1fr))}.empty-state{grid-column:1/-1;text-align:center;padding:50px;border-radius:28px;background:#fff;border:1px solid rgba(123,85,63,.14)}.empty-state h2{font-family:'Fraunces', serif;font-size:36px;margin:0 0 10px}.product-detail-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(280px,520px) minmax(0,1fr);gap:48px;align-items:center}.detail-image-wrap{position:relative;border-radius:38px;overflow:hidden;background:#fff;box-shadow:var(--shadow-premium);min-height:420px}.detail-image-wrap img{width:100%;height:100%;min-height:420px;object-fit:cover;display:block}.detail-badge{top:22px;left:22px}.detail-copy h1{font-family:'Fraunces', serif;font-size:clamp(42px,6vw,76px);line-height:.98;margin:16px 0;letter-spacing:-.05em}.detail-copy p{font-size:17px;line-height:1.8;color:var(--muted-foreground)}.detail-tagline{font-size:22px!important;color:var(--primary-deep)!important;font-weight:800}.detail-price{display:flex;align-items:flex-end;gap:10px;margin:20px 0}.detail-price strong{font-family:'Fraunces', serif;font-size:46px;color:var(--primary)}.detail-price span,.detail-stock{font-weight:800;color:var(--muted-foreground)}.detail-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}.detail-benefits-section{padding-top:70px}.article-detail-hero .detail-copy h1{font-size:clamp(38px,5.5vw,68px)}.contact-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);gap:26px}.contact-form-card,.contact-info-card{background:#fff;border:1px solid rgba(123,85,63,.14);border-radius:30px;box-shadow:var(--shadow-soft);padding:28px}.contact-form-card{display:grid;gap:18px}.grid-fields{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.contact-form-card label{display:grid;gap:8px;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.12em;color:var(--muted-foreground)}.contact-form-card input,.contact-form-card textarea{width:100%;border:1px solid rgba(123,85,63,.18);border-radius:16px;padding:14px 16px;background:#fff;color:var(--foreground);font:inherit;text-transform:none;letter-spacing:0}.contact-form-card textarea{resize:vertical}.form-alert{padding:14px 16px;border-radius:16px;font-weight:800}.form-alert.ok{background:#e7f7eb;color:#176434}.form-alert.err{background:#fff0ee;color:#a13728}.contact-info-card h2{font-family:'Fraunces', serif;font-size:36px;margin:0 0 12px}.contact-info-card p{line-height:1.7;color:var(--muted-foreground)}.contact-info-card ul{list-style:none;margin:22px 0;padding:0;display:grid;gap:14px}.contact-info-card li{display:flex;gap:12px;align-items:flex-start;font-weight:700;color:var(--foreground)}.contact-info-card svg{flex:0 0 auto;color:var(--primary)}
@media(max-width:900px){.page-hero-inner,.product-detail-grid,.contact-grid{grid-template-columns:1fr}.page-hero{padding-top:118px}.detail-image-wrap,.detail-image-wrap img{min-height:320px}.grid-fields{grid-template-columns:1fr}}

/* Rekomendasi produk */
.smart-product-card{cursor:pointer;position:relative}.smart-product-card.is-selected{outline:3px solid rgba(199,101,62,.32);outline-offset:6px}.smart-chip{margin-top:14px;display:inline-flex;align-items:center;gap:7px;border:0;border-radius:999px;background:#fff7e8;color:var(--primary-deep);padding:9px 12px;font-size:12px;font-weight:900;box-shadow:0 10px 24px rgba(80,41,24,.08);cursor:pointer}.smart-chip:hover{transform:translateY(-1px);background:#fff}.smart-recommend-panel{margin-top:28px;padding:28px;border-radius:34px;background:radial-gradient(circle at 10% 0,rgba(227,173,80,.26),transparent 34%),linear-gradient(135deg,#fff,#fff7ed);border:1px solid rgba(123,85,63,.14);box-shadow:var(--shadow-premium);animation:smartPanelIn .38s ease both}.smart-recommend-head{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;margin-bottom:20px}.smart-recommend-head span{display:inline-flex;align-items:center;gap:7px;color:var(--primary);font-weight:900;text-transform:uppercase;letter-spacing:.13em;font-size:12px}.smart-recommend-head h3{font-family:'Fraunces',serif;font-size:clamp(30px,4vw,46px);margin:8px 0 8px;letter-spacing:-.04em}.smart-recommend-head p{max-width:760px;margin:0;color:var(--muted-foreground);line-height:1.65}.smart-recommend-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.smart-recommend-card{display:grid;grid-template-columns:116px minmax(0,1fr);gap:14px;padding:12px;border-radius:22px;background:#fff;border:1px solid rgba(123,85,63,.12);box-shadow:0 16px 38px rgba(80,41,24,.08);transition:transform .22s ease, box-shadow .22s ease}.smart-recommend-card:hover{transform:translateY(-4px);box-shadow:0 22px 58px rgba(80,41,24,.14)}.smart-recommend-card img{width:116px;height:104px;object-fit:cover;border-radius:17px;background:#f2e5d6}.smart-recommend-card small{display:block;color:var(--primary);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.09em}.smart-recommend-card strong{display:block;margin:5px 0;font-size:17px;color:var(--foreground)}.smart-recommend-card p{margin:0 0 9px;color:var(--muted-foreground);font-size:13px;line-height:1.45}.smart-recommend-card span{font-weight:900;color:var(--primary-deep)}.smart-empty{padding:28px!important}.related-products-section{position:relative}.related-product-grid{margin-top:12px}@keyframes smartPanelIn{from{opacity:0;transform:translateY(14px) scale(.98)}to{opacity:1;transform:none}}@media(max-width:980px){.smart-recommend-grid{grid-template-columns:1fr}.smart-recommend-head{flex-direction:column}.smart-recommend-card{grid-template-columns:96px 1fr}.smart-recommend-card img{width:96px;height:92px}}

/* Standar gambar produk */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(160deg, #fff 0%, hsl(33 48% 98%) 100%);
}
.product-image {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2.2vw, 24px);
  background:
    radial-gradient(circle at 50% 28%, rgba(var(--primary-rgb), .10), transparent 36%),
    linear-gradient(180deg, #fffaf4 0%, #f2e6d8 100%);
  border-bottom: 1px solid rgba(123,85,63,.10);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  filter: drop-shadow(0 18px 24px rgba(48,28,23,.13));
  transform-origin: center bottom;
}
.product-card:hover .product-image img {
  transform: scale(1.045);
}
.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body p {
  min-height: 2.2rem;
}
.price-row {
  margin-top: auto;
}
.product-grid-page {
  align-items: stretch;
}
.detail-image-wrap {
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 42px);
  background:
    radial-gradient(circle at 50% 30%, rgba(var(--primary-rgb), .12), transparent 42%),
    linear-gradient(180deg, #fffaf4 0%, #f1e4d5 100%);
}
.detail-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 30px rgba(48,28,23,.16));
}
.smart-recommend-card img {
  object-fit: contain;
  padding: 9px;
  background: linear-gradient(180deg, #fffaf4, #f2e5d6);
}
.related-products-section .product-image {
  aspect-ratio: 4 / 3;
}
@media(max-width:900px){
  .product-image{aspect-ratio:4/3;padding:16px}
  .detail-image-wrap{padding:20px;min-height:320px}
  .detail-image-wrap img{min-height:0;max-height:380px}
}


/* Katalog produk */
:root {
  --primary: hsl(145 78% 28%);
  --primary-rgb: 16 128 67;
  --primary-foreground: #ffffff;
  --primary-glow: hsl(142 70% 45%);
  --primary-deep: hsl(146 72% 20%);
  --accent: hsl(45 95% 55%);
  --foreground: hsl(215 26% 15%);
  --background: #ffffff;
  --muted: hsl(145 25% 95%);
  --border: hsl(145 20% 88%);
  --gradient-primary: linear-gradient(135deg, hsl(145 78% 28%) 0%, hsl(143 72% 34%) 100%);
  --gradient-card: linear-gradient(180deg, #ffffff 0%, hsl(140 45% 98%) 100%);
}
.topbar { background: linear-gradient(90deg, #00632f, #08763f); color: #eefdf3; }
.topbar a:hover { color: #ffd43a; }
.site-header { background: rgba(255,255,255,.96); box-shadow: 0 1px 0 rgba(0,0,0,.08); backdrop-filter: blur(16px); }
.site-header.scrolled { background: rgba(255,255,255,.98); box-shadow: 0 10px 30px rgba(10,74,42,.08); }
.brand-mark { background: transparent; color: var(--primary); box-shadow: none; width: 3rem; height: 3rem; }
.brand-mark svg { width: 2.35rem; height: 2.35rem; }
.brand-text > span { color: var(--primary-deep); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.32rem; font-weight: 900; letter-spacing: -.04em; }
.brand-text small { color: #6b7b70; text-transform: none; letter-spacing: 0; font-size: .72rem; font-weight: 700; }
.desktop-nav > a:hover, .nav-dropdown:hover > button { color: var(--primary); background: rgba(var(--primary-rgb), .08); }
.btn-premium, .btn-default, .btn-hero { background: var(--gradient-primary); color: #fff; box-shadow: 0 12px 24px rgba(14,120,65,.2); }
.btn-outline:hover { color: var(--primary); border-color: rgba(var(--primary-rgb), .35); background: rgba(var(--primary-rgb), .06); }

.catalog-shop-page { background:#fff; min-height: calc(100vh - 108px); padding: 28px 0 42px; }
.catalog-shell { width:min(100% - 2rem, 1540px); }
.catalog-breadcrumb { display:flex; align-items:center; gap:10px; color:#7b8780; font-size:.88rem; margin: 8px 0 28px; }
.catalog-breadcrumb a:hover { color: var(--primary); }
.catalog-heading-row { display:grid; grid-template-columns: minmax(260px, 430px) 1fr; gap: 32px; align-items:end; margin-bottom: 28px; }
.catalog-eyebrow { display:inline-flex; align-items:center; gap:8px; color: var(--primary); font-weight:900; font-size:.82rem; }
.catalog-title-copy h1 { margin: 12px 0 8px; font-family:'Plus Jakarta Sans', sans-serif; font-size: clamp(30px, 3.8vw, 42px); line-height:1.08; letter-spacing:-.04em; }
.catalog-title-copy p { margin:0; color:#6a766f; line-height:1.72; max-width: 560px; }
.catalog-benefits-row { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:18px; }
.catalog-benefits-row > div { display:flex; align-items:center; gap:12px; min-width:0; }
.catalog-benefits-row svg { width:44px; height:44px; padding:10px; border-radius:50%; border:1px dashed rgba(var(--primary-rgb), .35); color: var(--primary); background:#f8fff9; }
.catalog-benefits-row strong { display:block; font-size:.82rem; color:#2a3730; }
.catalog-benefits-row small { display:block; color:#77847d; font-size:.74rem; margin-top:2px; }
.catalog-layout { display:grid; grid-template-columns: minmax(0, 1fr) 470px; gap: 28px; align-items:start; }
.catalog-main-column { min-width:0; }
.catalog-toolbar { display:flex; align-items:center; justify-content:space-between; gap:18px; margin-bottom: 22px; }
.catalog-filter-pills { margin:0; flex:1; }
.catalog-filter-pills a { padding: 11px 18px; border:0; background:#f4f6f5; color:#526058; box-shadow:none; font-size:.82rem; }
.catalog-filter-pills a.active, .catalog-filter-pills a:hover { background: var(--gradient-primary); color:#fff; }
.sort-box { display:inline-flex; align-items:center; gap:10px; background:#fff; border:1px solid #dce7df; border-radius:12px; padding:0 12px; min-height:48px; color:#5d6962; font-weight:700; white-space:nowrap; }
.sort-box select { border:0; outline:0; background:transparent; font:inherit; color:#26342c; }
.catalog-product-grid { display:grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap:18px !important; margin-top:0 !important; }
.catalog-product-card { border:1px solid #e4ece7; border-radius:14px; background:#fff; box-shadow:0 10px 24px rgba(16,55,34,.04); cursor:pointer; overflow:hidden; min-height: 0; }
.catalog-product-card.is-active { outline: 2px solid rgba(var(--primary-rgb), .24); box-shadow:0 18px 42px rgba(16,110,62,.13); }
.catalog-product-card:hover { transform: translateY(-4px); box-shadow:0 18px 42px rgba(16,55,34,.10); }
.catalog-product-card .product-image { aspect-ratio: 1 / .9; padding:18px; background:linear-gradient(180deg, #fff, #fbfdfb); border-bottom:0; }
.catalog-product-card .product-image img { border-radius:10px; filter: drop-shadow(0 14px 16px rgba(20,50,30,.13)); transform:none; }
.catalog-product-card:hover .product-image img { transform: scale(1.03); }
.catalog-product-card .product-badge { left:12px; top:12px; background: var(--primary); color:#fff; font-size:.62rem; padding:.32rem .58rem; letter-spacing:0; text-transform:none; }
.catalog-product-card .product-body { padding: 0 14px 14px; }
.catalog-product-card .product-body small { color:#7a8a81; font-size:.74rem; letter-spacing:0; text-transform:none; font-weight:700; }
.catalog-product-card .product-body h3 { font-family:'Plus Jakarta Sans', sans-serif; font-size:.98rem; min-height:2.45rem; margin:.32rem 0 0; line-height:1.32; letter-spacing:-.02em; }
.catalog-product-card .product-body p { margin:.3rem 0 .65rem; font-size:.78rem; line-height:1.45; min-height:2.25rem; color:#7a857e; -webkit-line-clamp:2; }
.catalog-card-price { align-items:flex-end; gap:10px; }
.catalog-card-price strong { color:#111c15; font-size:1rem; }
.catalog-card-price span { color:#7a857e; font-size:.76rem; }
.cart-mini { width:31px; height:31px; border-radius:8px; display:grid; place-items:center; color:var(--primary); border:1px solid #dcebe2; background:#fff; flex:0 0 auto; }
.cart-mini:hover { background:var(--primary); color:#fff; }
.rating-row { margin-top:8px; display:flex; align-items:center; gap:4px; color:#7b8780; font-size:.78rem; font-weight:700; }
.rating-row span { color:#ffc107; }
.rating-row em { font-style:normal; color:#87958d; }
.catalog-preview-panel { position:sticky; top:110px; max-height: calc(100vh - 120px); overflow:auto; border-left:1px solid #e3ece7; background:#fff; padding: 22px 0 0 28px; }
.catalog-preview-panel::-webkit-scrollbar { width: 6px; }
.catalog-preview-panel::-webkit-scrollbar-thumb { background:#cddbd2; border-radius:999px; }
.preview-image-wrap { position:relative; display:grid; place-items:center; min-height: 300px; border-radius:18px; background:linear-gradient(180deg,#fff,#fbfdfb); margin-bottom: 16px; }
.preview-image-wrap img { width:min(82%, 330px); max-height: 310px; object-fit:contain; filter: drop-shadow(0 22px 24px rgba(30,56,38,.16)); }
.preview-badge { position:absolute; left:16px; top:14px; border-radius:999px; background:var(--primary); color:#fff; padding:6px 12px; font-size:.72rem; font-weight:800; }
.preview-copy h2 { font-family:'Plus Jakarta Sans', sans-serif; font-size:1.48rem; line-height:1.2; letter-spacing:-.035em; margin: 0 0 10px; }
.preview-meta { display:flex; flex-wrap:wrap; gap:14px; color:#7a857e; font-size:.84rem; }
.preview-meta span:first-child { color:#1f2e24; }
.preview-meta span:first-child:before { content:''; }
.preview-price { margin: 16px 0; display:flex; align-items:flex-end; gap:8px; }
.preview-price strong { color: var(--primary); font-size:1.65rem; font-weight:900; }
.preview-price span { color:#6c7870; font-weight:700; }
.preview-copy p { color:#5f6d65; line-height:1.72; font-size:.92rem; }
.preview-benefits { list-style:none; margin:18px 0; padding:0; display:grid; gap:10px; }
.preview-benefits li { display:flex; align-items:flex-start; gap:9px; color:#4d5e54; font-size:.9rem; }
.preview-benefits svg { color: var(--primary); margin-top:2px; }
.preview-actions { display:grid; grid-template-columns:1fr; gap:10px; margin:18px 0; }
.preview-actions .btn { width:100%; min-height:44px; }
.preview-tabs { display:grid; grid-template-columns:repeat(3,1fr); gap:4px; border-top:1px solid #e7eee9; border-bottom:1px solid #e7eee9; margin:22px -2px 16px; }
.preview-tabs span, .preview-tabs button { padding:13px 4px; text-align:center; color:#64736a; font-size:.78rem; font-weight:800; border:0; border-bottom:2px solid transparent; background:transparent; cursor:pointer; font-family:inherit; }
.preview-tabs .active { color:var(--primary); border-color:var(--primary); }
.preview-tab-content { margin: 0 0 18px; }
.preview-tab-panel { display:none; border:1px solid #e4ece7; border-radius:14px; padding:14px; background:#fbfdfb; }
.preview-tab-panel.active { display:block; }
.preview-tab-panel p { margin:0; color:#4f5f56; line-height:1.72; white-space:pre-line; }
.product-info-tabs-section { padding-top: 0; }
.product-info-tabs-card { border:1px solid #e4ece7; border-radius:22px; background:#fff; box-shadow:0 18px 50px rgba(16,55,34,.06); padding: 6px 22px 22px; }
.product-detail-tabs { margin:0 0 18px; }
.product-detail-tab-panel { display:none; color:#4f5f56; line-height:1.75; }
.product-detail-tab-panel.active { display:block; }
.product-detail-tab-panel p { margin:0; white-space:pre-line; }
.product-detail-tab-panel ul { list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.product-detail-tab-panel li { display:flex; align-items:flex-start; gap:10px; }
.product-detail-tab-panel svg { color:var(--primary); margin-top:4px; flex:0 0 auto; }
.preview-specs { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:22px; }
.preview-specs div { border:1px solid #e4ece7; border-radius:12px; padding:12px; }
.preview-specs small { display:block; color:#849088; font-size:.72rem; margin-bottom:5px; }
.preview-specs b { font-size:.86rem; color:#26342c; }
.preview-related-head { display:flex; justify-content:space-between; align-items:center; margin: 14px 0 12px; }
.preview-related-head strong { font-size:.98rem; }
.preview-related-head a { color: var(--primary); font-weight:900; font-size:.8rem; }
.preview-related { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; }
.preview-related-card { border:1px solid #e4ece7; border-radius:12px; padding:9px; background:#fff; min-width:0; }
.preview-related-card img { width:100%; aspect-ratio:1/1; object-fit:contain; filter: drop-shadow(0 8px 10px rgba(30,56,38,.10)); }
.preview-related-card span { display:block; font-size:.72rem; line-height:1.28; min-height:2rem; color:#28342c; font-weight:800; margin-top:6px; }
.preview-related-card strong { display:block; color:#1c2a20; font-size:.72rem; margin-top:4px; }
.preview-related-card small { display:block; color:#7a857e; font-size:.7rem; margin-top:3px; }
.related-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.smart-recommend-card img { object-fit:contain !important; }
@media(max-width:1380px){
  .catalog-layout{grid-template-columns:minmax(0,1fr) 420px}.catalog-product-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}.catalog-benefits-row{grid-template-columns:repeat(2,minmax(0,1fr))}.preview-related{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:1080px){
  .catalog-layout{grid-template-columns:1fr}.catalog-preview-panel{position:relative;top:auto;max-height:none;border-left:0;border-top:1px solid #e3ece7;padding:24px 0 0}.catalog-product-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}.catalog-heading-row{grid-template-columns:1fr}.catalog-toolbar{align-items:flex-start;flex-direction:column}.sort-box{align-self:flex-start}.preview-related{grid-template-columns:repeat(4,1fr)}
}
@media(max-width:760px){
  .catalog-product-grid,.related-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.catalog-benefits-row{grid-template-columns:1fr}.preview-specs{grid-template-columns:1fr}.preview-related{grid-template-columns:repeat(2,1fr)}.catalog-product-card .product-body h3{min-height:auto}.catalog-title-copy h1{font-size:32px}
}
@media(max-width:480px){.catalog-product-grid,.related-product-grid{grid-template-columns:1fr!important}.catalog-shell{width:min(100% - 1rem,1540px)}}


/* Rekomendasi produk pada detail */
.related-products-section .section-header {
  align-items: flex-end;
}
.related-products-section .section-intro {
  max-width: 820px;
}
.related-products-section .related-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  max-width: 1080px;
  margin: 18px auto 0;
}
.related-products-section .product-card {
  border-radius: 20px;
  border: 1px solid #e4ece7;
  box-shadow: 0 12px 30px rgba(16,55,34,.06);
  overflow: hidden;
}
.related-products-section .product-image {
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, #fff, #fbfdfb);
}
.related-products-section .product-image img {
  width: auto;
  height: auto;
  max-width: 86%;
  max-height: 150px;
  border-radius: 12px;
  filter: drop-shadow(0 12px 16px rgba(30,56,38,.13));
}
.related-products-section .product-card:hover .product-image img {
  transform: scale(1.025);
}
.related-products-section .product-badge {
  left: 12px;
  top: 12px;
  font-size: .62rem;
  padding: .32rem .58rem;
}
.related-products-section .product-body {
  padding: 16px 18px 18px;
}
.related-products-section .product-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.02rem;
  line-height: 1.32;
  min-height: 2.55rem;
  margin-top: .34rem;
}
.related-products-section .product-body p {
  font-size: .86rem;
  line-height: 1.5;
  min-height: 2.6rem;
  color: #6b7a71;
}
.related-products-section .price-row strong {
  font-size: 1rem;
}
@media(max-width:900px){
  .related-products-section .section-header { align-items:flex-start; }
  .related-products-section .related-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media(max-width:520px){
  .related-products-section .related-product-grid { grid-template-columns: 1fr !important; }
  .related-products-section .product-image img { max-height: 145px; }
}

/* Page title slider: quarter-screen image header for all inner pages */
.page-slider-hero {
  position: relative;
  min-height: 25vh;
  height: clamp(240px, 25vh, 340px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #123320;
}
.page-slider-track,
.page-slider-bg,
.page-slider-bg img,
.page-slider-overlay,
.page-slider-side-glow {
  position: absolute;
  inset: 0;
}
.page-slider-bg {
  opacity: 0;
  animation: pageHeroFade 18s infinite;
}
.page-slider-bg-0 { animation-delay: 0s; }
.page-slider-bg-1 { animation-delay: 6s; }
.page-slider-bg-2 { animation-delay: 12s; }
.page-slider-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: pageHeroZoom 18s infinite linear;
  filter: saturate(1.05) contrast(1.02);
}
.page-slider-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 43, 24, .88) 0%, rgba(7, 43, 24, .68) 44%, rgba(7, 43, 24, .30) 100%),
    linear-gradient(180deg, rgba(7, 43, 24, .28), rgba(7, 43, 24, .60));
}
.page-slider-side-glow {
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(242, 184, 72, .26), transparent 34%),
    radial-gradient(circle at 88% 50%, rgba(255, 255, 255, .12), transparent 30%);
}
.page-slider-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding-block: 28px;
}
.page-slider-copy {
  max-width: 840px;
}
.page-slider-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .20);
  backdrop-filter: blur(12px);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .02em;
}
.page-slider-copy h1 {
  margin: 12px 0 8px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: .94;
  letter-spacing: -.055em;
  color: #fff;
  text-shadow: 0 18px 45px rgba(0, 0, 0, .26);
}
.page-slider-copy h1 span,
.page-slider-copy h1 .text-gradient {
  color: var(--accent);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.page-slider-copy p {
  margin: 0;
  max-width: 720px;
  font-size: clamp(.94rem, 1.35vw, 1.08rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, .88);
}
.page-slider-card {
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .16);
  text-align: right;
}
.page-slider-card strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3vw, 42px);
  color: var(--accent);
  line-height: 1;
}
.page-slider-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
}
.catalog-heading-row-compact {
  display: block;
  margin-bottom: 24px;
}
.catalog-heading-row-compact .catalog-benefits-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-detail-main,
.article-detail-section {
  position: relative;
  padding: 64px 0 74px;
  background: var(--background);
}
.product-detail-main .product-detail-grid,
.article-detail-section .product-detail-grid {
  align-items: center;
}
.detail-copy h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
  margin: 16px 0;
  letter-spacing: -.05em;
}
@keyframes pageHeroFade {
  0%, 28% { opacity: 1; }
  33%, 95% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes pageHeroZoom {
  0% { transform: scale(1.06); }
  100% { transform: scale(1.15); }
}
@media (max-width: 640px) {
  .search-overlay { padding: 5.25rem .75rem 1rem; align-items: start; }
  .search-dialog { border-radius: 1.1rem; padding: 1rem; max-height: 84vh; }
  .search-form { grid-template-columns: 1fr; }
  .search-form .btn { width: 100%; }
  .search-result-card { grid-template-columns: 4.25rem 1fr; }
  .search-result-card img { width: 4.25rem; height: 4.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .page-slider-bg,
  .page-slider-bg img { animation: none; }
  .page-slider-bg:first-child { opacity: 1; }
}
@media(max-width:1080px) {
  .page-slider-inner { grid-template-columns: 1fr; align-items: center; }
  .page-slider-card { justify-self: start; text-align: left; min-width: 160px; padding: 14px 16px; }
  .catalog-heading-row-compact .catalog-benefits-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media(max-width:760px) {
  .page-slider-hero { height: auto; min-height: 250px; }
  .page-slider-inner { padding-block: 30px; }
  .page-slider-copy h1 { font-size: clamp(32px, 12vw, 48px); }
  .page-slider-copy p { font-size: .94rem; }
  .catalog-heading-row-compact .catalog-benefits-row { grid-template-columns: 1fr; }
  .product-detail-main,
  .article-detail-section { padding: 42px 0 56px; }
}

/* Revisi v14: rekomendasi produk detail dibuat benar-benar 3 kolom dan compact */
.related-products-section {
  overflow: hidden;
}
.related-products-section .section-head {
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
}
.related-products-section .section-intro h2 {
  max-width: 920px;
}
.related-products-section .related-product-grid,
.related-products-section .product-grid.related-product-grid,
.related-products-section .product-grid-page.related-product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  width: min(100%, 1120px) !important;
  max-width: 1120px !important;
  margin: 24px auto 0 !important;
  align-items: stretch !important;
}
.related-products-section .related-product-grid > .product-card {
  width: 100% !important;
  min-width: 0 !important;
  border-radius: 22px !important;
  background: #fff !important;
  border: 1px solid #e1ebe5 !important;
  box-shadow: 0 14px 34px rgba(16, 55, 34, .07) !important;
  overflow: hidden !important;
  transform: none;
}
.related-products-section .related-product-grid > .product-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 22px 52px rgba(16, 55, 34, .12) !important;
}
.related-products-section .related-product-grid > .product-card .product-image {
  height: 190px !important;
  min-height: 190px !important;
  max-height: 190px !important;
  aspect-ratio: auto !important;
  padding: 22px !important;
  display: grid !important;
  place-items: center !important;
  background: radial-gradient(circle at 50% 25%, rgba(16,128,67,.10), transparent 42%), linear-gradient(180deg, #fff, #f7fbf8) !important;
  border-bottom: 1px solid #eef4f0 !important;
}
.related-products-section .related-product-grid > .product-card .product-image img {
  width: auto !important;
  height: auto !important;
  max-width: 88% !important;
  max-height: 145px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 12px !important;
  filter: drop-shadow(0 14px 18px rgba(30,56,38,.13)) !important;
  transform: none !important;
}
.related-products-section .related-product-grid > .product-card:hover .product-image img {
  transform: scale(1.035) !important;
}
.related-products-section .related-product-grid > .product-card .product-action {
  left: 14px;
  right: 14px;
  bottom: 14px;
}
.related-products-section .related-product-grid > .product-card .product-badge {
  left: 14px !important;
  top: 14px !important;
  font-size: .66rem !important;
  line-height: 1 !important;
  padding: .42rem .68rem !important;
  border-radius: 999px !important;
}
.related-products-section .related-product-grid > .product-card .product-body {
  padding: 18px 20px 20px !important;
  gap: 4px;
}
.related-products-section .related-product-grid > .product-card .product-body small {
  color: var(--primary) !important;
  font-weight: 850 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  font-size: .72rem !important;
}
.related-products-section .related-product-grid > .product-card .product-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.04rem !important;
  line-height: 1.32 !important;
  min-height: 2.7rem !important;
  margin: .32rem 0 .2rem !important;
  color: #18241d !important;
}
.related-products-section .related-product-grid > .product-card .product-body p {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 2.65rem !important;
  max-height: 2.8rem !important;
  margin: 0 0 .8rem !important;
  font-size: .86rem !important;
  line-height: 1.55 !important;
  color: #68786e !important;
}
.related-products-section .related-product-grid > .product-card .price-row {
  padding-top: 12px;
  border-top: 1px solid #edf3ef;
  align-items: flex-end;
}
.related-products-section .related-product-grid > .product-card .price-row strong {
  color: var(--primary) !important;
  font-size: 1.02rem !important;
}
.related-products-section .related-product-grid > .product-card .price-row span {
  font-size: .75rem !important;
}
@media(max-width:900px){
  .related-products-section .section-head{align-items:flex-start;flex-direction:column;}
  .related-products-section .related-product-grid,
  .related-products-section .product-grid.related-product-grid,
  .related-products-section .product-grid-page.related-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;width:100%!important;}
}
@media(max-width:560px){
  .related-products-section .related-product-grid,
  .related-products-section .product-grid.related-product-grid,
  .related-products-section .product-grid-page.related-product-grid{grid-template-columns:1fr!important;}
  .related-products-section .related-product-grid > .product-card .product-image{height:170px!important;min-height:170px!important;max-height:170px!important;}
  .related-products-section .related-product-grid > .product-card .product-image img{max-height:130px!important;}
}


/* Demo mode */
.admin-login-link{
  display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(8,118,63,.16);
  background:#fff;color:var(--primary);border-radius:999px;padding:.75rem 1rem;font-weight:900;font-size:.82rem;
  box-shadow:0 10px 28px rgba(30,56,38,.08);white-space:nowrap;
}
.demo-version-badge{
  position:fixed;left:50%;bottom:14px;transform:translateX(-50%);z-index:9999;
  background:#f28c28;color:#fff;border-radius:999px;padding:8px 16px;
  font-weight:900;font-size:12px;letter-spacing:.08em;text-transform:uppercase;
  box-shadow:0 14px 40px rgba(242,140,40,.35);border:1px solid rgba(255,255,255,.45);
  text-align:center;white-space:nowrap;
}
.demo-toast{
  position:fixed;left:50%;bottom:60px;transform:translateX(-50%);z-index:10000;
  background:#18241d;color:#fff;border-radius:999px;padding:10px 15px;font-size:13px;font-weight:850;
  box-shadow:0 18px 50px rgba(24,36,29,.25);max-width:min(92vw,560px);text-align:center;
}
.demo-frontend-mode [data-demo-action]{
  cursor:not-allowed!important;
}
.demo-frontend-mode .contact-form-card button[type=submit]{
  opacity:.72;cursor:not-allowed;
}
@media(max-width:900px){
  .admin-login-link{display:none}
}
@media(max-width:560px){
  .demo-version-badge{font-size:10px;bottom:10px;padding:7px 11px}
}
