/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */

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

html { font-size: 62.5%; -webkit-tap-highlight-color: rgba(0,0,0,0); }

body {
    font-family: var(--font-body);
    font-size: var(--body-size, 1.6rem);
    line-height: 1.6em;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    color: var(--text);
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga" on;
    margin-right: 0 !important;
}

/* Headings — Casper base + type scale.
   Component titles (.product-title, .collection-title, .hero-title, .page-body
   headings, etc.) keep their own PlantNest sizes via higher specificity; this
   only governs un-classed headings such as those inside post/page content. */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text);
    text-rendering: optimizeLegibility;
}
h1 { margin: 0 0 0.5em; font-size: 4.8rem; font-weight: 700; letter-spacing: -0.015em; }
h2 { margin: 1.5em 0 0.5em; font-size: 2.8rem; font-weight: 700; }
h3 { margin: 1.5em 0 0.5em; font-size: 2.4rem; font-weight: 600; }
h4 { margin: 1.5em 0 0.5em; font-size: 2.0rem; }
h5 { margin: 1.5em 0 0.5em; font-size: 2.0rem; }
h6 { margin: 1.5em 0 0.5em; font-size: 1.8rem; }
@media (max-width: 600px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.3rem; }
    h3 { font-size: 1.7rem; }
    h4 { font-size: 1.7rem; }
}

/* Casper reading-content metrics (post/page body) */
.gh-content { font-size: 2.0rem; line-height: 1.6em; }

/* Monospace / code — Casper stack */
code, kbd, pre, samp { font-family: var(--font-mono); }

img { display: block; max-width: 100%; height: auto; }
a { background-color: transparent; text-decoration: none; }


/* ==========================================================================
   2. CSS VARIABLES
   ========================================================================== */

:root {
    --bg:                #f8f8f8;
    --bg-dark:           #ebebeb;
    --primary:           #111111;
    --primary-mid:       #444444;
    --primary-light:     #888888;
    --text:              #111111;
    --text-mid:          #555555;
    --text-light:        #999999;
    --white:             #ffffff;

    /* Fonts — ported from Casper */
    --font-sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    --font-serif: Georgia, Times, serif;
    --font-mono:  Menlo, Courier, monospace;

/* Ghost's native Typography fonts (--gh-font-*) drive these;
       the sans/serif fallbacks apply only when no font is set in admin. */
  
    --font-title: var(--gh-font-heading, var(--font-sans));
    --font-body:  var(--gh-font-body, var(--font-serif));
    --gutter:            max(4vmin, 20px);
    --cart-color:        rgba(106, 153, 78, 0.88);
    --card-title-size:   1.4rem;
    --card-title-weight: 500;
    --price-size:        1.4rem;
    --price-weight:      400;
    --body-size:         1.6rem;
}

/* Card title size */
.card-title-size-sm { --card-title-size: 1.2rem; }
.card-title-size-md { --card-title-size: 1.4rem; }
.card-title-size-lg { --card-title-size: 1.6rem; }
.card-title-size-xl { --card-title-size: 1.8rem; }

/* Card title weight */
.card-title-weight-light   { --card-title-weight: 300; }
.card-title-weight-regular { --card-title-weight: 400; }
.card-title-weight-medium  { --card-title-weight: 500; }
.card-title-weight-bold    { --card-title-weight: 700; }
.card-title-weight-black   { --card-title-weight: 900; }

/* Price size */
.price-size-sm { --price-size: 1.2rem; }
.price-size-md { --price-size: 1.4rem; }
.price-size-lg { --price-size: 1.6rem; }

/* Price weight */
.price-weight-regular { --price-weight: 400; }
.price-weight-medium  { --price-weight: 500; }
.price-weight-bold    { --price-weight: 700; }

/* Body size */
.body-size-sm { --body-size: 1.4rem; }
.body-size-md { --body-size: 1.6rem; }
.body-size-lg { --body-size: 1.8rem; }


/* ==========================================================================
   5. LAYOUT
   ========================================================================== */

.viewport { position: relative; display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex-grow: 1; background: var(--bg); }

/* Consistent horizontal padding */
.outer { position: relative; padding: 0 var(--gutter); }

/* Max-width container */
.inner { margin: 0 auto; max-width: 1920px; width: 100%; }


/* ==========================================================================
   6. ANNOUNCEMENT BAR
   ========================================================================== */

.announce-bar {
    background: var(--text);
    color: var(--white);
    text-align: center;
    padding: 0.9rem 2rem;
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.02rem;
}

.announce-bar p { margin: 0; }


/* ==========================================================================
   7. HEADER
   ========================================================================== */

.gh-head {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 150;
    height: 60px;
    margin: 0 20rem;
    background-color: color-mix(in srgb, var(--white) 40%, transparent);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.gh-head { transition: transform 0.3s ease; }

.gh-head.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.07); }

.gh-head .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.gh-head-brand { flex-shrink: 0; }

.gh-head-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    white-space: nowrap;
}

.gh-head-logo img { max-height: 32px; width: auto; }
.logo-icon { font-size: 1.4rem; }

.gh-head-menu { display: flex; align-items: center; justify-content: center; flex: 1; }

.gh-head-menu .nav { display: flex; align-items: center; gap: 2.8rem; list-style: none; }

.gh-head-menu .nav li a {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.01rem;
    white-space: nowrap;
    transition: color 0.15s;
}

.gh-head-menu .nav li a:hover { color: var(--ghost-accent-color); }
.gh-head-menu .nav li.nav-current a { color: var(--ghost-accent-color); font-weight: 700; }

.gh-head-actions { display: flex; align-items: center; gap: 1.6rem; flex-shrink: 0; }

.btn-signin {
  --primary-color: var(--ghost-accent-color, var(--text));
  --secondary-color: var(--white);
  --hover-color: var(--text-mid);
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  border: 0;
  border-radius: 50px;
  color: var(--secondary-color);
  padding: 0.5em 1.8em;
  background: var(--primary-color);
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.3rem;
}
.btn-signin .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-signin .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}
.btn-signin .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}
.btn-signin:hover { background-color: var(--ghost-accent-color); }
.btn-signin:hover .arrow { background: var(--secondary-color); }
.btn-signin:hover .arrow::before { right: 0; }

.gh-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    color: var(--text);
    transition: opacity 0.2s;
}

.gh-search-toggle:hover { 
    color: var(--ghost-accent-color);
}

.cart-icon { display: flex; align-items: center; position: relative; color: var(--text); transition: opacity 0.2s; }
.cart-icon:hover { 
    color: var(--ghost-accent-color);
}

.cart-badge {
    position: absolute;
    top: -7px; 
    right: -7px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    width: 16px; 
    height: 16px;
    border-radius: 50%;
    background: var(--ghost-accent-color);
    color: var(--white);
    font-size: 0.9rem; font-weight: 700;
    transform: scale(1);
    transition: transform 0.18s ease;
}
.cart-badge-bump { transform: scale(1.35); }

.gh-burger { display: none; width: 36px; height: 36px; padding: 6px; cursor: pointer; background: transparent; border: 0; position: relative; flex-shrink: 0; }
.gh-burger-box { position: relative; width: 22px; height: 16px; }
.gh-burger-inner,
.gh-burger-inner::before,
.gh-burger-inner::after { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.gh-burger-inner { position: absolute; top: 50%; margin-top: -1px; transition: background 0.3s; }
.gh-burger-inner::before { content: ''; position: absolute; top: -7px; }
.gh-burger-inner::after  { content: ''; position: absolute; bottom: -7px; }
.gh-head-open .gh-burger-inner { background: transparent; }
.gh-head-open .gh-burger-inner::before { top: 0; transform: rotate(45deg); }
.gh-head-open .gh-burger-inner::after  { bottom: 0; transform: rotate(-45deg); }
             
.home-template .site-content { padding-top: 0; }  

/* ==========================================================================
   8. SEARCH BAR
   ========================================================================== */

.gh-search-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--white);
    z-index: 200;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    pointer-events: none;
}

.gh-search-bar.active { 
    transform: translateY(0); 
    opacity: 1;
    pointer-events: auto;
}

.gh-search-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 199; opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s; }
.gh-search-overlay.active { opacity: 1; visibility: visible; }
body.search-open { overflow: hidden; }

.gh-search-header {
    display: flex; 
    align-items: center; 
    gap: 1.6rem;
    padding: 1.6rem 24rem;
    border-bottom: 1px solid var(--bg-dark);
    position: sticky; top: 0;
    background: var(--white); 
    z-index: 1;
}

.gh-search-input-wrap {
    display: flex; align-items: center; gap: 1rem;
    flex: 1; background: var(--bg);
    border-radius: 100px; padding: 1rem 1.8rem;
}

.gh-search-input-wrap svg { color: var(--text-light); flex-shrink: 0; }

.gh-search-input-wrap input {
    flex: 1; border: none; outline: none;
    font-size: 1.5rem; font-family: var(--font-body);
    color: var(--text); background: transparent; min-width: 0;
}

.gh-search-input-wrap input::placeholder { color: var(--text-light); }

.gh-search-clear-btn {
    background: none; border: none; cursor: pointer;
    font-size: 1.4rem; color: var(--text-light);
    padding: 0; line-height: 1; transition: color 0.15s;
}
.gh-search-clear-btn:hover { color: var(--text); }

.gh-search-cancel {
    background: none; border: none; cursor: pointer;
    font-size: 1.4rem; font-weight: 500;
    color: var(--text); font-family: var(--font-body);
    white-space: nowrap; padding: 0;
    transition: opacity 0.15s; flex-shrink: 0;
}
.gh-search-cancel:hover { opacity: 0.6; }

.gh-search-body {
    min-height: 300px;
    padding: 2.5rem 24rem;
}

.gh-search-left { padding: 2.4rem var(--gutter); border-right: 1px solid var(--bg-dark); }
.gh-search-right { padding: 2.4rem var(--gutter); }

.gh-search-popular-label {
    font-size: 1.1rem; font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase; letter-spacing: 0.1rem;
    margin-bottom: 1.4rem;
}

.gh-search-history-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.gh-search-history-clear { background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--text-light); font-family: var(--font-body); transition: color 0.15s; padding: 0; }
.gh-search-history-clear:hover { color: var(--text); }

/* Popular pills — horizontal */
.gh-search-popular-pills { display: flex; flex-wrap: wrap; gap: 0.8rem; flex-direction: row; }

.gh-search-pill {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    border-radius: 100px;
    border: 1px solid var(--bg-dark);
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 400;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}
.gh-search-pill:hover { background: var(--bg-dark); }

/* History list — dengan tombol ✕ per item */
.gh-search-history-list { display: flex; flex-direction: column; }

.gh-search-history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--bg-dark);
}
.gh-search-history-item:last-child { border-bottom: none; }

.gh-search-history-text {
    background: none; border: none; cursor: pointer;
    font-size: 1.4rem; font-weight: 400;
    color: var(--text); font-family: var(--font-body);
    text-align: left; padding: 0;
    flex: 1;
    transition: color 0.15s;
}
.gh-search-history-text:hover { color: var(--text-mid); }

.gh-search-history-remove {
    background: none; border: none; cursor: pointer;
    font-size: 1.2rem; color: var(--text-light);
    padding: 0.2rem 0.4rem;
    transition: color 0.15s; flex-shrink: 0;
}
.gh-search-history-remove:hover { color: var(--text); }

/* Section spacing */
.gh-search-section { margin-bottom: 2.8rem; }
.gh-search-section:last-child { margin-bottom: 0; }

/* Results state */
.gh-search-results-state {
    display: grid;
    grid-template-columns: 280px 1fr;
}

.gh-search-suggestions-list { display: flex; flex-direction: column; }

.gh-search-suggestion {
    display: block; padding: 0.8rem 0;
    color: var(--text); font-family: var(--font-body);
    font-size: 1.4rem; font-weight: 400;
    border-bottom: 1px solid var(--bg-dark);
    background: none; border-top: none; border-left: none; border-right: none;
    cursor: pointer; text-align: left; width: 100%;
    transition: color 0.15s;
}
.gh-search-suggestion:last-child { border-bottom: none; }
.gh-search-suggestion:hover { color: var(--text-mid); }
.gh-search-suggestion strong { font-weight: 700; }

.gh-search-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}

.gh-search-grid-item {
    display: flex; flex-direction: column; gap: 0.8rem;
    transition: transform 0.2s;
}
.gh-search-grid-item:hover { transform: translateY(-2px); }

.gh-search-grid-img { aspect-ratio: 1/1; background: var(--bg); border-radius: 3px; overflow: hidden; }
.gh-search-grid-img img { width: 100%; height: 100%; object-fit: cover; }
.gh-search-grid-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.gh-search-grid-title { font-size: 1.3rem; font-weight: 500; color: var(--text); line-height: 1.3; }
.gh-search-grid-price { font-size: 1.3rem; font-weight: 400; color: var(--text-mid); }
.gh-search-empty { padding: 4rem 2rem; font-size: 1.4rem; color: var(--text-light); text-align: center; }

@media (max-width: 768px) {
    .gh-search-body { grid-template-columns: 1fr; }
    .gh-search-left { border-right: none; border-bottom: 1px solid var(--bg-dark); padding: 1.6rem var(--gutter); }
    .gh-search-right { padding: 1.6rem var(--gutter); }
    .gh-search-results-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}

/* ==========================================================================
   9. HERO FULLSCREEN
   ========================================================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    background-color: var(--white);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: inset(0 100% 0 0);
    z-index: 0;
}
.hero-slide.is-active {
    clip-path: inset(0 0 0 0);
    z-index: 2;
    transition: clip-path 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.hero-slide.is-prev {
    clip-path: inset(0 0 0 0);
    z-index: 1;
}

.hero-eyebrow, .hero-heading, .hero-sub, .hero-actions { overflow: hidden; padding-bottom: 0.08em; }

.hero-reveal { display: block; transform: translateY(110%); }
.hero-actions .hero-reveal { display: inline-flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.hero-content--split .hero-actions { justify-content: flex-start; }

.hero-slide:not(.is-active):not(.is-prev) .hero-reveal { transform: translateY(110%); }

@keyframes heroReveal {
    from { transform: translateY(110%); }
    to   { transform: translateY(0); }
}
.hero-slide.is-active .hero-eyebrow .hero-reveal { animation: heroReveal 0.5s cubic-bezier(0.5, 0, 0.1, 1) 0.05s both; }
.hero-slide.is-active .hero-heading .hero-reveal { animation: heroReveal 0.6s cubic-bezier(0.5, 0, 0.1, 1) 0.12s both; }
.hero-slide.is-active .hero-sub     .hero-reveal { animation: heroReveal 0.5s cubic-bezier(0.5, 0, 0.1, 1) 0.19s both; }
.hero-slide.is-active .hero-actions .hero-reveal { animation: heroReveal 0.5s cubic-bezier(0.5, 0, 0.1, 1) 0.26s both; }

.hero-slide--dark  { background-color: #1e3a29; }
.hero-slide--light { background-color: var(--white); }

.hero-slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 100%);
}
.hero-slide--light .hero-slide-overlay { display: none; }

.hero-slide-content { position: relative; z-index: 1; width: 100%; }

.hero-content--center {
    padding: 2rem var(--gutter);
    max-width: 700px;
    margin: 0 auto 8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content--split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1140px;
    margin: 0 auto;
    padding: 2rem var(--gutter);
    text-align: left;
}
.hero-content--split .hero-heading,
.hero-content--split .hero-sub { text-align: left; }

.hero-col-text  { flex: 1 1 0; max-width: 480px; }
.hero-col-media { flex: 1 1 0; display: flex; justify-content: flex-end; }
.hero-col-media img { max-height: 62vh; width: auto; object-fit: contain; }

.hero-slide--light .hero-heading { color: var(--text); font-size: 4.2rem; text-transform: none; line-height: 1.05; }
.hero-slide--light .hero-eyebrow { color: var(--text-light); }
.hero-slide--light .hero-sub     { color: var(--text-mid); }

.hero-dots {
    position: absolute; bottom: 2.4rem; left: 0; right: 0;
    z-index: 3;
    display: flex; gap: 0.8rem; justify-content: center;
}
.hero-dot {
    width: 8px; height: 8px; padding: 0;
    border: none; border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer; transition: width 0.3s ease, background 0.3s ease;
}
.hero-dot.is-active { width: 22px; border-radius: 10px; background: #fff; }
.hero-on-light .hero-dot { background: rgba(0,0,0,0.22); }
.hero-on-light .hero-dot.is-active { background: var(--text); }

.hero-eyebrow {
    font-size: 1.1rem; font-weight: 700;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-heading {
    font-family: var(--font-title);
    font-size: 8rem; 
    font-weight: 700;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 1.6rem;
    text-transform: uppercase;
    text-align: center;
}

.hero-sub {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.8rem;
    line-height: 1.5;
    max-width: 480px;
    text-align: center;
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }

.hero-cta-primary {
    display: inline-block;
    background: var(--ghost-accent-color, var(--white)); color: var(--white);
    font-size: 1.3rem; font-weight: 700;
    padding: 1.4rem 3.2rem;
    border-radius: 100px;
    letter-spacing: 0.03rem; text-transform: uppercase;
    transition: opacity 0.2s;
}
.hero-cta-primary:hover { filter: brightness(0.85); }

.hero-cta-secondary {
    display: inline-block;
    background: transparent; color: var(--white);
    font-size: 1.3rem; font-weight: 600;
    padding: 1.4rem 2.4rem;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.6);
    letter-spacing: 0.03rem; text-transform: uppercase;
    transition: border-color 0.2s, background 0.2s;
}
.hero-cta-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ==========================================================================
   10. HERO SCROLL INDICATOR
   ========================================================================== */

.hero-scroll {
    position: absolute;
    bottom: 2.4rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    color: rgba(255,255,255,0.6);
    font-size: 1rem; font-weight: 600;
    letter-spacing: 0.1rem; text-transform: uppercase;
    animation: fadeInUp 1s ease 1s both;
}

.hero-scroll-line {
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.4);
    animation: scrollLine 1.5s ease infinite;
}

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}


/* ==========================================================================
   11. KATEGORI GRID
   ========================================================================== */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    width: 100%;
    height: 480px;
    margin: 1.6rem 0;
    padding: 0 var(--gutter);
    box-sizing: border-box;
}

.category-card {
    position: relative;
    overflow: hidden;
    display: flex; 
    align-items: center; 
    justify-content: center;
    cursor: pointer;
    border-radius: 20px;
    background: var(--bg-dark);
    transition: border-radius 0.3s ease;
}

.category-card:hover { border-radius: 200px; z-index: 1; }

.category-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}

.category-label {
    position: relative; z-index: 1;
    display: inline-flex; align-items: center;
    padding: 0.8rem 2rem;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 100px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 1.2rem; font-weight: 500;
    letter-spacing: 0.1rem; text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s;
}

.category-card:hover .category-label { background: rgba(255,255,255,0.3); }


/* ==========================================================================
   12. FEATURED CAROUSEL
   ========================================================================== */

.featured-carousel {
    padding: 5.6rem 0 4rem;
    overflow: hidden;
    background: var(--white);
}

.featured-title {
    font-family: var(--font-title);
    font-size: 1.4rem; font-weight: 700;
    color: var(--text);
    letter-spacing: 0.15rem; text-transform: uppercase;
    text-align: center;
    margin-bottom: 3.2rem;
    text-decoration: underline; text-underline-offset: 6px;
}

.featured-track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: none;
    user-select: none;

}

.featured-track {
    display: flex; align-items: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.featured-slide {
    flex-shrink: 0;
    width: 35vw; max-width: 480px; min-width: 240px;
    opacity: 1;
    padding: 0 1.6rem;
    transition: opacity 0.5s ease;
}

.featured-slide.active { opacity: 1; }

.featured-slide-img {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}

.featured-slide-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 2.4rem;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.featured-slide-no-img {
    font-size: 8rem;
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
}

.featured-info {
    text-align: center;
    padding: 3.2rem var(--gutter) 0;
    position: relative;
    min-height: 140px;
}

.featured-info-item {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.featured-info-item.active { display: flex; }

.featured-info-title {
    font-family: var(--font-title);
    font-size: 2rem; font-weight: 700;
    color: var(--text);
    letter-spacing: -0.06rem;
}

.featured-info-harga { font-size: 1.5rem; color: var(--text-mid); }
.featured-harga { font-weight: 500; }

.featured-info-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 1.2rem; margin-top: 0.8rem;
}

.featured-btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1.2rem 3rem;
    background: var(--ghost-accent-color, var(--text)); color: var(--white);
    font-size: 1.3rem; font-weight: 700;
    letter-spacing: 0.05rem; text-transform: uppercase;
    border-radius: 100px;
    transition: opacity 0.2s;
}

.featured-btn-primary:hover { opacity: 0.75; }

.featured-btn-secondary {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1.2rem 3rem;
    background: transparent; color: var(--text);
    font-size: 1.3rem; font-weight: 700;
    letter-spacing: 0.05rem; text-transform: uppercase;
    border-radius: 100px;
    border: 2px solid var(--bg-dark);
    cursor: pointer;
    transition: border-color 0.2s;
}
.featured-btn-secondary:hover { border-color: var(--text); }

.featured-btn-secondary.in-cart {
    background: rgba(106, 153, 78, 0.15);
    border-color: var(--cart-color);
    color: var(--cart-color);
}

.featured-dots {
    display: flex; justify-content: center;
    gap: 0.8rem; margin-top: 2.4rem;
}

.featured-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--bg-dark);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.featured-dot.active { background: var(--text); transform: scale(1.3); }

/* Custom cursor */
.featured-cursor {
    position: fixed;
    width: 100px; height: 100px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.2s, transform 0.2s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.featured-cursor.visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.featured-cursor-svg { width: 100%; height: 100%; }


/* ==========================================================================
   13. PRODUK BARU — horizontal scroll
   ========================================================================== */

.new-arrivals {
    padding: 4rem var(--gutter);
    border-bottom: 1px solid var(--bg-dark);
}

.new-arrivals-scroll {
    display: flex;
    gap: 1.6rem;
    overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none;
    padding-bottom: 1.2rem;
    cursor: grab;
    user-select: none; -webkit-user-select: none;
}

.new-arrivals-scroll::-webkit-scrollbar { display: none; }
.new-arrivals-scroll:active { cursor: grabbing; }

.new-arrivals-scroll img {
    -webkit-user-drag: none;
    pointer-events: none;
}

.new-arrivals-scroll a { -webkit-user-drag: none; }
.new-arrivals-scroll .post-card { flex-shrink: 0; width: 400px; }

.new-arrivals-card {
    flex-shrink: 0;
    width: 400px;
    display: flex; 
    flex-direction: column;
}

.new-arrivals-img {
    position: relative;
    max-width: 400px;
    max-height: 400px;
    background: var(--white);
    overflow: hidden; 
    flex-shrink: 0;
}

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

.new-arrivals-no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4rem; }

.post-card:hover .quick-add-btn,
.new-arrivals-card:hover .quick-add-btn { opacity: 1; transform: translateY(0); }

.new-arrivals-info { 
    padding: 1rem 2rem 2rem;
    background: var(--white);
}

.new-arrivals-title {
    font-size: var(--card-title-size, 1.4rem); 
    font-weight: var(--card-title-weight, 500);
    color: var(--text); 
    line-height: 1.3;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}

.new-arrivals-price { 
    font-size: var(--price-size); 
    font-weight: var(--price-weight); 
    color: var(--text-mid); 
    margin-top: 0.2rem; }


/* ==========================================================================
   14. FEED HEADER
   ========================================================================== */

.feed-header {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 2.8rem;
}

.feed-title {
    font-family: var(--font-title);
    font-size: 1.8rem; font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    padding-top: 72px;

}

.feed-viewall {
    font-size: 1.2rem; font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.05rem; text-transform: uppercase;
    text-decoration: underline; text-underline-offset: 3px;
    transition: color 0.15s;
}
.feed-viewall:hover { color: var(--text); }

.feed-nav { display: flex; align-items: center; gap: 0.8rem; }

.feed-nav-btn {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--bg-dark);
    background: var(--white); color: var(--text);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}
.feed-nav-btn:hover { border-color: var(--text); background: var(--bg); }


/* ==========================================================================
   15. POST FEED & CARDS
   ========================================================================== */

.site-main { 
    padding-bottom: 8rem; 
    background: var(--bg); 
}

.post-feed { display: grid; gap: 1.6rem; grid-template-columns: repeat(3, 1fr); }
.posts-grid-2 { grid-template-columns: repeat(2, 1fr); }
.posts-grid-3 { grid-template-columns: repeat(3, 1fr); }
.posts-grid-4 { grid-template-columns: repeat(4, 1fr); }

.post-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--bg-dark);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-width: 0;
}

.post-card-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-dark);
}

.post-card-image { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.post-card-no-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4rem; background: var(--bg); }

.post-card-badge {
    position: absolute;
    top: 1.2rem; left: 1.2rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    background: var(--text);
    color: var(--white);
}
.post-card-badge svg { display: block; }

.wishlist-btn {
    position: absolute;
    top: 1.2rem; right: 1.2rem;
    z-index: 2;
    width: 3.8rem; height: 3.8rem;
    display: flex; align-items: center; justify-content: center;
    border: none; border-radius: 50%;
    background: var(--white);
    color: var(--text-light);
    box-shadow: 0 1px 6px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: color 0.18s, transform 0.18s;
}
.wishlist-btn svg { fill: none; stroke: currentColor; stroke-width: 2; }
.wishlist-btn:hover { transform: scale(1.08); }
.wishlist-btn.active { color: #e23744; }
.wishlist-btn.active svg { fill: currentColor; stroke: currentColor; }

.post-card-content { display: flex; flex-direction: column; padding: 1.8rem 2rem 2rem; background: var(--white); }

.post-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }

.post-card-title {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--card-title-size, 1.4rem);
    font-weight: var(--card-title-weight, 600);
    color: var(--text);
    line-height: 1.3;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--text-mid); }

.post-price {
    margin: 0;
    font-size: var(--price-size);
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.post-card-excerpt {
    margin: 0.6rem 0 0;
    font-size: 1.3rem;
    color: var(--text-mid);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-cart-btn {
    margin-top: 1.6rem;
    width: 100%;
    border: none;
    background: var(--ghost-accent-color, var(--text));
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.3rem; font-weight: 700;
    letter-spacing: 0.03rem;
    padding: 1.4rem;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s, opacity 0.18s, transform 0.1s;
}
.post-card-cart-btn span { display: flex; align-items: center; justify-content: center; gap: 0.8rem; }
.post-card-cart-btn svg { display: block; }
.post-card-cart-btn:hover { opacity: 0.9; }
.post-card-cart-btn:active { transform: scale(0.98); }

.post-card-cart-btn .cart-btn-added { display: none; }
.post-card-cart-btn.in-cart .cart-btn-default { display: none; }
.post-card-cart-btn.in-cart .cart-btn-added { display: flex; }
.post-card-cart-btn svg { display: block; }
.post-card-cart-btn:hover { opacity: 0.9; }
.post-card-cart-btn:active { transform: scale(0.98); }
.post-card-cart-btn.in-cart { 
    background: color-mix(in srgb,var(--ghost-accent-color) 80%, black);
    opacity: 1;    
}

.post-card-tags { display: none; }
.post-card-actions { display: none; }
.btn-cart { display: none; }
.btn-order { display: none; }
.badge-featured { display: none; }


/* ==========================================================================
   16. PAGINATION
   ========================================================================== */

.pagination { display: none; justify-content: center; gap: 1rem; margin-top: 6rem; }
html.no-infinite-scroll .pagination { display: flex; }

.pagination a {
    padding: 0.8rem 1.8rem; border-radius: 100px;
    border: 1px solid var(--bg-dark); background: var(--white); color: var(--text);
    font-size: 1.3rem; font-weight: 500;
    transition: background 0.15s, color 0.15s;
}
.pagination a:hover { background: var(--text); color: var(--white); border-color: var(--text); }


/* ==========================================================================
   17. FOOTER
   ========================================================================== */

.site-footer {
    background-color: var(--bg-dark);
    color: var(--text-mid);
    font-family: var(--font-body);
    font-size: 1.3rem;
    padding: 5.6rem var(--gutter) 0;
}

.footer-cols {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 4rem;
}

.footer-group-title {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 1.6rem;
    padding: 0;
    background: none;
    border: 0;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-align: left;
    cursor: default;
}
.footer-group-title--link { cursor: pointer; }

.footer-group-caret { display: none; }

.footer-group-body ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-group-body ul li a { font-size: 1.3rem; color: var(--text-mid); transition: color 0.15s; }
.footer-group-body ul li a:hover { color: var(--text); }

.footer-nav > .nav { list-style: none; display: flex; flex-direction: column; gap: 1rem; }

.footer-logo {
    display: flex; 
    align-items: center; 
    gap: 0.8rem;
    font-family: var(--font-title);
    font-size: 1.7rem; 
    font-weight: 900; 
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.footer-logo img { max-height: 28px; }

.footer-tagline { font-size: 1.3rem; color: var(--text-light); line-height: 1.6; max-width: 280px; }

.footer-col-title {
    font-size: 1.1rem; font-weight: 700; color: var(--text);
    text-transform: uppercase; letter-spacing: 0.1rem; margin-bottom: 1.6rem;
}

.footer-col ul,
.footer-col nav ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-col ul li a,
.footer-col nav ul li a { font-size: 1.3rem; color: var(--text-mid); transition: color 0.15s; }
.footer-col ul li a:hover,
.footer-col nav ul li a:hover { color: var(--text); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 2rem 0; }
.footer-copy { font-size: 1.2rem; color: var(--text-light); }
.footer-copy a { color: var(--text-mid); }
.footer-copy a:hover { color: var(--text); }

.site-footer a { color: var(--text-mid); transition: color 0.15s; }
.site-footer a:hover { color: var(--text); }


/* ==========================================================================
   18. POST NAVIGATION
   ========================================================================== */

.post-navigation {
    display: flex; 
    justify-content: center; 
    gap: 4rem;
    padding-top: 3.2rem; 
    margin-bottom: 6rem;
}

.post-nav-item { display: flex; flex-direction: column; gap: 0.6rem; max-width: 45%; }
.post-nav-item.next { text-align: left; }
.nav-label { font-size: 1rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.15rem; text-transform: uppercase; }

/* ==========================================================================
   19. PAGE
   ========================================================================== */

.page-wrapper { padding: 6rem 0; background: var(--white); }
.page-content { max-width: 720px; margin: 0 auto; }
.page-header { margin-bottom: 4rem; }

.page-title { font-family: var(--font-title); font-size: 4rem; font-weight: 900; color: var(--text); line-height: 1.05; margin-bottom: 1.6rem; letter-spacing: -0.1rem; text-transform: uppercase; }
.page-excerpt { font-size: 1.7rem; color: var(--text-light); line-height: 1.6; }
.page-image { margin-bottom: 4rem; border-radius: 3px; overflow: hidden; }
.page-image img { width: 100%; }

.page-body { font-size: 2.0rem; line-height: 1.6em; color: var(--text-mid); }
.page-body h2 { font-family: var(--font-title); font-size: 2.8rem; font-weight: 700; color: var(--text); margin: 4rem 0 1.6rem; }
.page-body h3 { font-family: var(--font-title); font-size: 2.4rem; font-weight: 600; color: var(--text); margin: 3.2rem 0 1.2rem; }
.page-body p  { margin-bottom: 2rem; }
.page-body a  { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.page-body img { border-radius: 3px; margin: 2.4rem 0; }
.page-body ul, .page-body ol { padding-left: 2.4rem; margin-bottom: 2rem; }
.page-body li { margin-bottom: 0.8rem; }


/* ==========================================================================
   20. TAG PAGE
   ========================================================================== */

.collection-header { background-color: var(--white); padding: 10rem 0 4.8rem; text-align: center; border-bottom: 1px solid var(--bg-dark); }

.collection-title { font-family: var(--font-title); font-size: 4.8rem; font-weight: 900; color: var(--text); margin-bottom: 1.2rem; letter-spacing: -0.15rem; text-transform: uppercase; }
.collection-description { font-size: 1.5rem; color: var(--text-light); margin-bottom: 1.6rem; line-height: 1.5; }

.collection-count-badge { display: inline-block; padding: 0.4rem 1.4rem; border-radius: 100px; border: 1px solid var(--bg-dark); color: var(--text-mid); font-size: 1.2rem; font-weight: 600; }

.tag-pill { display: inline-block; padding: 0.5rem 1.4rem; border-radius: 100px; border: 1px solid var(--bg-dark); color: var(--text-mid); font-size: 1.2rem; font-weight: 500; transition: background 0.15s, color 0.15s, border-color 0.15s; }
.tag-pill:hover { background: var(--ghost-accent-color); color: var(--white); border-color: var(--ghost-accent-color); }

.collection-bar { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 0; border-bottom: 1px solid var(--bg-dark); margin-bottom: 3.2rem; }
.collection-count { font-size: 1.3rem; color: var(--text-light); font-weight: 500; }


/* ==========================================================================
   21. PRODUCT PAGE
   ========================================================================== */

.product-page { background: var(--white); min-height: 100vh; padding: 4rem 0; padding-left: var(--gutter); padding-right: var(--gutter); }

.product-layout { 
    display: grid; 
    grid-template-columns: 1.1fr 1fr; 
    gap: 6.4rem; 
    align-items: start;
}

.product-gallery { position: sticky; top: 76px; }

.product-image-main { background: rgba(106, 153, 78, 0.09); border-radius: 16px; overflow: hidden; aspect-ratio: 1 / 1; }
.product-image-main img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; }

.product-info { display: flex; flex-direction: column; gap: 1.4rem; }

.product-tag { display: inline-block; width: fit-content; padding: 0.3rem 1.2rem; border-radius: 100px; border: 1px solid var(--bg-dark); color: var(--text-mid); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.08rem; text-transform: uppercase; }
.product-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.product-title { font-family: var(--font-title); font-size: 3.2rem; font-weight: 800; color: var(--text); line-height: 1.1; letter-spacing: -0.08rem; }
.product-price-detail { font-size: 2.2rem; font-weight: 700; color: var(--cart-color); }

.product-desc { font-size: 2.0rem; line-height: 1.6em; color: var(--text-mid); padding: 2.4rem 0 0; border-top: 1px solid var(--bg-dark); margin-top: 0.6rem; }
.product-desc p { margin-bottom: 1.2rem; }
.product-desc p:last-child { margin-bottom: 0; }
.product-desc [data-price] { display: none; }

.product-actions { display: flex; gap: 1.2rem; }

.btn-cart-detail,
.btn-order-detail {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1.8rem 2.4rem; border-radius: 100px;
    font-size: 1.4rem; font-family: var(--font-body);
    cursor: pointer; width: 100%;
    font-weight: 700; letter-spacing: 0.06rem; text-transform: uppercase;
    transition: opacity 0.15s, background 0.15s;
}

.btn-order-detail { background: var(--ghost-accent-color, var(--text)); color: var(--white); border: 2px solid var(--ghost-accent-color, var(--text)); order: 1; }
.btn-order-detail:hover { opacity: 0.78; }

.btn-cart-detail { background: transparent; color: var(--text); border: 2px solid var(--bg-dark); gap: 0.8rem; order: 2; }
.btn-cart-detail:hover { border-color: var(--text); }

.read-more-wrap { padding: 6rem 0; background: var(--white); border-top: 1px solid var(--bg-dark); }

.more-from-scroll {
    display: flex;
    gap: 1.6rem;
    overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none;
    padding: 0 var(--gutter) 1.2rem;
    cursor: grab;
    user-select: none; -webkit-user-select: none;
}
.more-from-scroll::-webkit-scrollbar { display: none; }
.more-from-scroll:active { cursor: grabbing; }
.more-from-scroll img { -webkit-user-drag: none; pointer-events: none; }
.more-from-scroll a { -webkit-user-drag: none; }
.more-from-scroll .post-card { flex-shrink: 0; width: 400px; }
.more-from-scroll .post-card-image-link { width: 400px; height: 400px; }

@media (max-width: 768px) {
    .more-from-scroll .post-card { width: 160px; }
    .more-from-scroll .post-card-image-link { width: 160px; height: 200px; border-radius: 12px; }
}

.quick-add-btn {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    width: 100%; border: none;
    background: rgba(26,26,26,0.88); color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem; font-weight: 700;
    padding: 1rem;
}

/* Breadcrumb */
.product-breadcrumb { display: flex; align-items: center; gap: 0.8rem; font-size: 1.2rem; color: var(--text-light); margin-bottom: 2.4rem; }
.product-breadcrumb a { color: var(--text-light); transition: color 0.15s; }
.product-breadcrumb a:hover { color: var(--text); }

/* Trust strip */
.product-trust { display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem; padding: 1.2rem 0; border-top: 1px solid var(--bg-dark); border-bottom: 1px solid var(--bg-dark); }
.product-trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 1.2rem; color: var(--text-mid); }
.product-trust-icon { font-size: 1.4rem; flex-shrink: 0; }

/* Sticky Footer Product */
.product-sticky-footer {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--bg-dark);
    padding: 1.2rem 2rem; z-index: 100;
    align-items: center; justify-content: space-between; gap: 1.2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.product-sticky-price { display: flex; flex-direction: column; gap: 0.2rem; }
.sticky-price-label { font-size: 1rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08rem; }
.sticky-price-value { font-size: 1.6rem; font-weight: 600; color: var(--text); }
.product-sticky-actions { display: flex; gap: 0.8rem; flex: 1; justify-content: flex-end; }
.sticky-cart, .sticky-order { flex: none !important; width: auto !important; padding: 1rem 2rem !important; font-size: 1.3rem !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.03rem !important; }
.post-template .site-footer { padding-bottom: calc(3.2rem + 80px); }


/* ==========================================================================
   22. GHOST UTILITIES
   ========================================================================== */

.kg-width-wide { width: 85vw; max-width: 1200px; }
.kg-width-full { width: 100vw; margin: 0 calc(50% - 50vw); }

/* Spacing rhythm for cards inside post content */
.product-desc .kg-card { margin: 2.4rem 0; }
.product-desc .kg-card:first-child { margin-top: 0; }

/* --- Image / Gallery card --- */
.product-desc figure.kg-image-card img,
.product-desc .kg-gallery-image img { border-radius: 12px; }
.product-desc figcaption {
    margin-top: 0.8rem; font-size: 1.3rem; font-style: italic;
    color: var(--text-light); text-align: center;
}
.product-desc .kg-gallery-container { display: flex; flex-direction: column; gap: 0.6rem; }
.product-desc .kg-gallery-row { display: flex; gap: 0.6rem; }
.product-desc .kg-gallery-image { flex: 1 1 0; border-radius: 12px; overflow: hidden; }

/* --- Callout card --- */
.product-desc .kg-callout-card {
    display: flex; align-items: flex-start; gap: 1.2rem;
    padding: 1.6rem 1.8rem; border-radius: 12px;
    border-left: 4px solid var(--cart-color);
    background: var(--bg);
    font-size: 1.5rem; line-height: 1.55em; color: var(--text-mid);
}
.product-desc .kg-callout-emoji { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.product-desc .kg-callout-text { flex: 1; }
.product-desc .kg-callout-card-white { background: var(--white); border: 1px solid var(--bg-dark); border-left: 4px solid var(--cart-color); }
.product-desc .kg-callout-card-green { background: rgba(106, 153, 78, 0.08); }
.product-desc .kg-callout-card-blue { background: rgba(66, 133, 200, 0.08); border-left-color: #4285c8; }
.product-desc .kg-callout-card-yellow { background: rgba(224, 178, 46, 0.1); border-left-color: #e0b22e; }
.product-desc .kg-callout-card-red { background: rgba(204, 51, 51, 0.06); border-left-color: #cc3333; }
.product-desc .kg-callout-card-pink { background: rgba(214, 91, 149, 0.08); border-left-color: #d65b95; }
.product-desc .kg-callout-card-purple { background: rgba(130, 91, 214, 0.08); border-left-color: #825bd6; }
.product-desc .kg-callout-card-grey { background: var(--bg-dark); border-left-color: var(--text-light); }
.product-desc .kg-callout-card-accent { background: rgba(106, 153, 78, 0.08); border-left-color: var(--cart-color); }

/* --- Toggle card --- */
.product-desc .kg-toggle-card {
    border-top: 1px solid var(--bg-dark); border-bottom: 1px solid var(--bg-dark);
    padding: 0; overflow: hidden;
}
.product-desc .kg-toggle-card + .kg-toggle-card { border-top: none; margin-top: -2.4rem; }
.product-desc .kg-toggle-heading {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.2rem; padding: 1.6rem 0; cursor: pointer; user-select: none;
}
.product-desc .kg-toggle-heading-text {
    font-family: var(--font-title); font-weight: 600; font-size: 1.7rem; color: var(--text);
}
.product-desc .kg-toggle-card-icon {
    flex-shrink: 0; width: 20px; height: 20px; color: var(--text-mid);
    transition: transform 0.25s ease;
}
.product-desc .kg-toggle-card.kg-toggle-card-open .kg-toggle-card-icon,
.product-desc .kg-toggle-card[open] .kg-toggle-card-icon { transform: rotate(180deg); }
.product-desc .kg-toggle-content {
    font-size: 1.5rem; line-height: 1.6em; color: var(--text-mid);
    padding: 0 0 1.8rem;
}

/* --- Bookmark card --- */
.product-desc .kg-bookmark-card { margin: 2.4rem 0; }
.product-desc .kg-bookmark-container {
    display: flex; border: 1px solid var(--bg-dark); border-radius: 12px;
    overflow: hidden; text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-desc .kg-bookmark-container:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.product-desc .kg-bookmark-content { flex: 1; padding: 1.6rem 2rem; min-width: 0; }
.product-desc .kg-bookmark-title { font-family: var(--font-title); font-weight: 600; font-size: 1.5rem; color: var(--text); margin-bottom: 0.4rem; }
.product-desc .kg-bookmark-description {
    font-size: 1.3rem; color: var(--text-mid); line-height: 1.5em;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-desc .kg-bookmark-metadata { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.2rem; font-size: 1.2rem; color: var(--text-light); }
.product-desc .kg-bookmark-icon { width: 18px; height: 18px; }
.product-desc .kg-bookmark-thumbnail { flex: 0 0 33%; position: relative; }
.product-desc .kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 600px) { .product-desc .kg-bookmark-container { flex-direction: column-reverse; } .product-desc .kg-bookmark-thumbnail { flex-basis: auto; height: 160px; } }

/* --- Button card (editor CTA) --- */
.product-desc .kg-button-card { display: flex; margin: 2.4rem 0; }
.product-desc .kg-btn {
    display: inline-block; font-family: var(--font-body); font-size: 1.3rem; font-weight: 700;
    padding: 1.2rem 3rem; border-radius: 100px; letter-spacing: 0.05rem; text-transform: uppercase;
    background: var(--ghost-accent-color, var(--text)); color: var(--white) !important;
    text-decoration: none; transition: opacity 0.15s;
}
.product-desc .kg-btn:hover { opacity: 0.75; }
.product-desc .kg-button-card.kg-align-center { justify-content: center; }
.product-desc .kg-button-card.kg-align-left { justify-content: flex-start; }

/* --- Divider --- */
.product-desc hr { border: none; border-top: 1px solid var(--bg-dark); margin: 3.2rem 0; }

/* --- File card --- */
.product-desc .kg-file-card {
    display: flex; align-items: center; gap: 1.4rem;
    border: 1px solid var(--bg-dark); border-radius: 8px; padding: 1.4rem 1.8rem;
    text-decoration: none;
}
.product-desc .kg-file-card-title { font-family: var(--font-title); font-weight: 600; font-size: 1.4rem; color: var(--text); }
.product-desc .kg-file-card-caption { font-size: 1.2rem; color: var(--text-light); margin-top: 0.2rem; }
.product-desc .kg-file-card-metadata { font-size: 1.2rem; color: var(--text-light); margin-left: auto; flex-shrink: 0; }

/* --- Embed (generic oEmbed / iframe) --- */
.product-desc .kg-embed-card { margin: 2.4rem 0; }
.product-desc .kg-embed-card iframe { width: 100%; border-radius: 12px; }

/* --- Header card --- */
.product-desc .kg-header-card {
    border-radius: 12px; overflow: hidden; padding: 4rem 2.4rem; text-align: center;
    background-size: cover; background-position: center;
}
.product-desc .kg-header-card-heading { font-family: var(--font-title); font-weight: 700; }
.product-desc .kg-header-card-subheading { font-size: 1.5rem; margin-top: 0.6rem; }


/* ==========================================================================
   23. BUTTONS (global)
   ========================================================================== */

.btn-primary { display: inline-block; background: var(--ghost-accent-color, var(--text)); color: var(--white); font-family: var(--font-body); font-size: 1.3rem; font-weight: 700; padding: 1.2rem 3rem; border-radius: 100px; letter-spacing: 0.05rem; text-transform: uppercase; transition: opacity 0.15s; }

.btn-primary:hover { opacity: 0.75; }

.btn-tag { display: inline-block; background: var(--bg-dark); color: var(--text-mid); font-size: 1rem; font-weight: 600; padding: 0.3rem 1rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05rem; transition: background 0.15s, color 0.15s; }
.btn-tag:hover { background: var(--text); color: var(--white); }

.btn-clear { background: transparent; color: #cc3333; border: 1px solid #cc3333; padding: 0.8rem 1.8rem; border-radius: 100px; font-family: var(--font-body); font-size: 1.3rem; cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s; }
.btn-clear:hover { background: #cc3333; color: var(--white); border-color: #cc3333; }

.btn-remove-item { background: transparent; color: #cc3333; border: 1px solid #cc3333; padding: 0.5rem 1.2rem; border-radius: 100px; font-size: 1.2rem; cursor: pointer; transition: background 0.15s, color 0.15s; }
.btn-remove-item:hover { background: #cc3333; color: var(--white); }

.btn-back { font-size: 1.3rem; color: var(--text-light); transition: color 0.15s; }
.btn-back:hover { color: var(--text); }

.btn-send-order { display: inline-flex; align-items: center; justify-content: center; gap: 1rem; width: 100%; padding: 1.4rem 2.8rem; border-radius: 100px; background: #25d366; color: var(--white); font-family: var(--font-body); font-size: 1.4rem; font-weight: 700; letter-spacing: 0.03rem; text-transform: uppercase; border: none; cursor: pointer; margin-top: 0.8rem; transition: opacity 0.15s; }
.btn-send-order:hover { opacity: 0.85; }

.btn-order-selected { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 0.8rem; 
    background: var(--ghost-accent-color, var(--text)); 
    color: var(--white);
    padding: 1rem 2.4rem; 
    border-radius: 100px; 
    font-family: var(--font-body); 
    font-size: 1.3rem; 
    font-weight: 700; 
    letter-spacing: 0.03rem; 
    text-transform: uppercase; 
    border: none; 
    cursor: pointer; 
    transition: opacity 0.15s; 
}

.btn-order-selected:hover { opacity: 0.75; }


/* ==========================================================================
   24. FORM
   ========================================================================== */

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.form-group { display: flex; flex-direction: column; gap: 0.6rem; }
.form-group label { font-size: 1.1rem; font-weight: 700; color: var(--text); letter-spacing: 0.08rem; text-transform: uppercase; }

.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: 1.2rem 1.4rem; border-radius: 3px; border: 1px solid var(--bg-dark); background: var(--white); color: var(--text); font-family: var(--font-body); font-size: 1.4rem; outline: none; transition: border-color 0.15s; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--text); }

.qty-control-mini { 
    display: flex; 
    align-items: center; 
    gap: 0.8rem; 
    border: 1px solid var(--bg-dark); 
    border-radius: 100px; 
    padding: 0.4rem 1rem; 
    background: var(--white); 
}

.qty-control-mini button { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 30px; 
    height: 30px; 
    border: none; 
    background: none; 
    color: var(--text); 
    font-size: 1.6rem; 
    font-weight: 600; 
    cursor: pointer; 
    transition: color 0.15s; 
}

.qty-control-mini button:hover { 
    color: var(--text-mid); 
}

.qty-control-mini span { 
    min-width: 20px; 
    text-align: center; 
    font-size: 1.4rem; 
    font-weight: 600; 
    color: var(--text); 
}


/* ==========================================================================
   25. KERANJANG PAGE
   ========================================================================== */

.cart-header { background: var(--white); padding:10rem 0 4.8rem; text-align: center; border-bottom: 1px solid var(--bg-dark); }
.cart-header h1 { font-family: var(--font-title); font-size: 4.8rem; font-weight: 900; color: var(--text); letter-spacing: -0.1rem; text-transform: uppercase; margin-bottom: 0.8rem; }
.cart-header p { font-size: 1.4rem; color: var(--text-light); }
.cart-section { padding: 1.6rem var(--gutter); }

.cart-list { 
    display: flex; 
    flex-direction: column; 
    border-top: 1px solid var(--bg-dark); 
}

.cart-item { display: flex; align-items: center; gap: 1.6rem; padding: 2rem; border-bottom: 1px solid var(--bg-dark); background: var(--white); }

.cart-item-img { 
    flex-shrink: 0; 
    width: 80px;
    height: 80px; 
    border-radius: 3px; 
    overflow: hidden; 
    background: var(--bg); 
}

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

.cart-item-info { flex: 0 1 400px; display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.cart-item-title { font-size: 1.4rem; font-weight: 500; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.15s; }
.cart-item-title:hover { color: var(--text-mid); }
.cart-item-price { font-size: 1.4rem; font-weight: 400; color: var(--text-mid); }

.cart-item-subtotal { flex-shrink: 0; font-size: 1.4rem; font-weight: 700; color: var(--text); min-width: 90px; text-align: right; }

.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 1.2rem; flex-shrink: 0; align-self: stretch; justify-content: center; }
.cart-item-top { display: flex; align-items: center; gap: 1.2rem; }

.btn-remove-item { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--bg-dark); border: none; border-radius: 50%; color: var(--text-mid); cursor: pointer; transition: background 0.15s, color 0.15s; }
.btn-remove-item:hover { background: #e0d0d0; color: #cc3333; }

.cart-checkbox { flex-shrink: 0; cursor: pointer; }
.cart-checkbox input[type="checkbox"] { display: none; }

.checkbox-custom { display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; border: 1.5px solid var(--primary-light); border-radius: 2px; background: var(--white); flex-shrink: 0; transition: background 0.15s, border-color 0.15s; }

.cart-checkbox input:checked + .checkbox-custom,
.cart-check-all input:checked + .checkbox-custom { background: var(--text); border-color: var(--text); }

.cart-checkbox input:checked + .checkbox-custom::after,
.cart-check-all input:checked + .checkbox-custom::after { content: '✓'; color: var(--white); font-size: 1.1rem; font-weight: 700; }

/* Cart two-column layout: list on the left, summary on the right (desktop) */
.cart-layout { 
    display: grid; 
    grid-template-columns: minmax(0, 1fr) 340px; 
    align-items: start; 
    gap: 3.2rem; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.cart-main { min-width: 0; max-width: 700px; }

/* Cart summary — desktop: sticky right sidebar card */
.cart-sticky-footer { 
    position: sticky; 
    top: 2rem; 
    align-self: start; 
    background: var(--white); 
    border: 1px solid var(--bg-dark); 
    border-radius: 8px; 
    box-shadow: 0 2px 16px rgba(0,0,0,0.04); 
    z-index: 1; 
    display: none; 
}

.cart-sticky-footer .inner { display: flex; flex-direction: column; align-items: stretch; gap: 1.6rem; padding: 2rem; max-width: none; }
.cart-sticky-footer .cart-total-text { flex: none; display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem; padding-top: 1.2rem; border-top: 1px solid var(--bg-dark); }
.cart-sticky-footer .cart-order-btn { width: 100%; }

.cart-check-all { display: flex; align-items: center; gap: 0.8rem; cursor: pointer; flex-shrink: 0; }
.cart-check-all input[type="checkbox"] { display: none; }
.cart-check-all .checkbox-custom { display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; border: 1.5px solid var(--primary-light); border-radius: 2px; background: var(--white); flex-shrink: 0; transition: background 0.15s, border-color 0.15s; }

.cart-check-label { font-size: 1.3rem; font-weight: 500; color: var(--text); white-space: nowrap; }
.cart-total-text { font-size: 1.4rem; color: var(--text-light); flex: 1; min-width: 0; }
.cart-total-text strong { color: var(--text); font-size: 1.6rem; font-weight: 700; white-space: nowrap; }
.cart-order-btn { font-size: 1.3rem !important; padding: 1rem 2rem !important; }


/* ==========================================================================
   26. PESAN PAGE
   ========================================================================== */

.order-page { background: var(--white); min-height: 100vh; padding: 6rem var(--gutter); margin-bottom: 4rem; }
.order-layout { display: grid; grid-template-columns: 1.5fr 2fr; gap: 4.8rem; align-items: start; }
.order-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1.6rem; }
.order-summary-card { background: var(--bg); border-radius: 3px; padding: 2.4rem; display: flex; flex-direction: column; gap: 0.8rem; }
.order-summary-label { font-size: 1.1rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1rem; }
.order-summary-price { font-size: 2.4rem; font-weight: 600; color: var(--text); }
.order-total { border-top: 1px solid var(--bg-dark); padding-top: 1.6rem; margin-top: 0.8rem; }
.order-form-wrapper { background: var(--white); }
.order-title { font-family: var(--font-title); font-size: 2.4rem; font-weight: 800; color: var(--text); margin-bottom: 0.8rem; letter-spacing: -0.05rem; text-transform: uppercase; }
.order-subtitle { font-size: 1.4rem; color: var(--text-light); margin-bottom: 3.2rem; }
.order-form { display: flex; flex-direction: column; gap: 2rem; }
.order-item { display: flex; justify-content: space-between; align-items: center; gap: 1.2rem; padding: 1rem 0; border-bottom: 1px solid var(--bg-dark); }
.order-item:last-child { border-bottom: none; }
.order-item-info { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.order-item-name { font-size: 1.4rem; font-weight: 500; color: var(--text); }
.order-item-price { font-size: 1.3rem; font-weight: 400; color: var(--text-mid); }


/* ==========================================================================
   27. MODAL
   ========================================================================== */

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 999; display: flex; align-items: center; justify-content: center; padding: 2.4rem; }
.modal-box { background: var(--white); border-radius: 3px; padding: 3.2rem 2.4rem; max-width: 400px; width: 100%; text-align: center; display: flex; flex-direction: column; gap: 1.6rem; }
.modal-icon { font-size: 3rem; }
.modal-title { font-family: var(--font-title); font-size: 1.8rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: -0.03rem; }
.modal-desc { font-size: 1.4rem; color: var(--text-light); line-height: 1.6; }
.modal-actions { display: flex; gap: 1.2rem; margin-top: 0.8rem; }
.modal-btn-cancel { flex: 1; padding: 1.2rem; border-radius: 100px; border: 1.5px solid var(--bg-dark); background: transparent; color: var(--text-mid); font-size: 1.3rem; font-weight: 600; cursor: pointer; transition: background 0.15s; }
.modal-btn-cancel:hover { background: var(--bg); }
.modal-btn-confirm { flex: 1; padding: 1.2rem; border-radius: 100px; border: none; background: #cc3333; color: var(--white); font-size: 1.3rem; font-weight: 700; cursor: pointer; transition: opacity 0.15s; }
.modal-btn-confirm:hover { opacity: 0.8; }


/* ==========================================================================
   28. RESPONSIVE TABLET (max 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
    .posts-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .product-layout { grid-template-columns: 1fr; gap: 2.4rem; }
    .product-gallery { position: static; }
    .order-layout { grid-template-columns: 1fr 1.5fr; }
    .post-navigation { flex-direction: column; gap: 1.6rem; }
    .post-nav-item.next { text-align: left; margin-left: 0; }
    .post-nav-item { max-width: 100%; }
    .footer-cols { grid-template-columns: 1fr; }
    .footer-col--brand { grid-column: 1 / -1; }
}


/* ==========================================================================
   29. RESPONSIVE MOBILE (max 768px)
   ========================================================================== */

@media (max-width: 768px) {

    :root { --gutter: 1.6rem; }

    .announce-bar { font-size: 1.1rem; padding: 0.8rem var(--gutter); }
    .site-content { padding-top: 52px; }

    /* Header */
    .gh-head { height: 52px; }
    .gh-head .inner { padding: 0 var(--gutter); gap: 10px; }
    .gh-head-logo { font-size: 1.5rem; }
    .gh-head-logo img { max-height: 26px; }
    .gh-burger { display: block; }
    .btn-signin { display: none; }
    .gh-search-bar { top: 52px; }

    /* Mobile menu */
    .gh-head-menu { display: none; position: fixed; top: 52px; left: 0; right: 0; bottom: 0; background: var(--white); padding: 4rem var(--gutter); flex-direction: column; align-items: center; justify-content: center; z-index: 149; overflow-y: auto; }
    .gh-head-open .gh-head-menu { display: flex; }
    .gh-head-menu .nav { flex-direction: column; align-items: center; gap: 3.2rem; }
   .gh-head-menu .nav li a { font-size: 1.7rem; font-weight: 500; color: var(--ghost-accent-color); letter-spacing: 0; text-transform: none; }

    /* Hero */
    .hero-slider { height: calc(100svh - 52px); min-height: 480px; }
    .hero-heading { font-size: 3.6rem; letter-spacing: -0.12rem; }
    .hero-eyebrow { font-size: 1rem; }
    .hero-sub { font-size: 1.4rem; }
    .hero-cta-primary, .hero-cta-secondary { font-size: 1.2rem; padding: 1.2rem 2.4rem; }
    .hero-content--center { padding: 3.6rem var(--gutter); }
    .hero-content--split { flex-direction: column-reverse; text-align: center; gap: 2rem; }
    .hero-content--split .hero-heading, .hero-content--split .hero-sub { text-align: center; }
    .hero-col-text, .hero-col-media { max-width: 100%; width: 100%; justify-content: center; }
    .hero-col-media img { max-height: 32vh; }
    .hero-slide--light .hero-heading { font-size: 3rem; }
    .hero-scroll { display: none; }

    /* Kategori grid */
    .category-grid { grid-template-columns: repeat(2, 1fr); height: auto; padding: 0 var(--gutter); }
    .category-card { height: 200px; }
    .category-label { font-size: 1.1rem; padding: 0.7rem 1.4rem; }

    /* Featured */
    .featured-slide { width: 80vw; }
    .featured-info-title { font-size: 2rem; }
    .featured-btn-primary, .featured-btn-secondary { padding: 1rem 2rem; font-size: 1.2rem; }
    .featured-cursor{
        display: none;
        
    }

    /* Produk baru */
    .new-arrivals { padding: 4rem var(--gutter); }
    .new-arrivals-card { width: 160px; }
    .new-arrivals-img { width: 160px; height: 200px; border-radius: 12px; }
    .new-arrivals-scroll .post-card { width: 220px; }
    .new-arrivals-title { font-size: min(var(--card-title-size), 1.2rem); }

    /* Typography */
    body { font-size: 1.4rem; line-height: 1.5; }
    .collection-title { font-size: 3rem; }
    .page-title { font-size: 2.8rem; }
    .cart-header h1 { font-size: 2.4rem; }
    .order-title { font-size: 2rem; }

    /* Feed */
    .site-main { padding-top: 3.2rem; padding-bottom: 6rem; }
    .feed-header { margin-bottom: 2rem; }
    .feed-title { font-size: 1.5rem; }
    .post-feed, .posts-grid-2, .posts-grid-3, .posts-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
    .post-card-title { font-size: min(var(--card-title-size), 1.25rem); }
    .post-price { font-size: min(var(--price-size), 1.25rem); }

    /* Product */
    .product-page { padding: 2.4rem var(--gutter); padding-bottom: 8rem; }
    .product-actions { display: none; }
    .product-trust { border-bottom: none; padding-bottom: 0; gap: 0.6rem 1.2rem; }
    .product-sticky-footer { display: flex; }
    .product-title { font-size: 2rem; }
    .product-price-detail { font-size: 1.8rem; }
    .product-desc { font-size: 1.4rem; }
    .read-more-wrap { padding-top: 4rem; padding-bottom: 4rem; }
    .product-breadcrumb { display: none; }

    /* Post navigation */
    .post-navigation { flex-direction: row; gap: 1.2rem; margin: 3.2rem 0; }
    .post-nav-item { max-width: 48%; }
    .post-nav-item.next { text-align: right; margin-left: auto; }

    /* Keranjang */
    .cart-header { padding: 3.2rem 0; }
    .cart-section { padding: 2.4rem 0; padding-bottom: 9rem; }
    .cart-layout { display: block; }
    .cart-sticky-footer { position: fixed; top: auto; bottom: 0; left: 0; right: 0; border: 0; border-top: 1px solid var(--bg-dark); border-radius: 0; box-shadow: 0 -2px 16px rgba(0,0,0,0.06); }
    .cart-sticky-footer .inner { flex-direction: row; align-items: center; gap: 2rem; padding: 1rem var(--gutter); }
    .cart-sticky-footer .cart-total-text { flex: 1; display: block; padding-top: 0; border-top: 0; }
    .cart-sticky-footer .cart-order-btn { width: auto; }
    .cart-item { padding: 1.6rem var(--gutter); flex-direction: row; align-items: center; }
    .cart-item-img { width: 60px; height: 80px; flex-shrink: 0; }
    .cart-item-info { min-width: 0; flex: 1; }
    .cart-item-subtotal { min-width: 70px; font-size: 1.3rem; }
    .cart-item-right { justify-content: space-between; flex-direction: column; align-self: stretch; }
    .cart-total-text { font-size: 1.2rem; }
    .cart-total-text strong { font-size: 1.4rem; }
    .cart-order-btn { font-size: 1.2rem !important; padding: 0.8rem 1.4rem !important; }

    /* Pesan */
    .order-page { padding: 3.2rem var(--gutter); }
    .order-layout { grid-template-columns: 1fr; gap: 2.4rem; }
    .order-sidebar { position: static; }
    .form-row { grid-template-columns: 1fr; }
    .order-item { flex-direction: column; align-items: flex-start; gap: 0.8rem; }

    /* Tag */
    .collection-header { padding: 4rem 0; }
    .collection-bar { flex-direction: column; align-items: flex-start; gap: 1.2rem; }

    /* Footer */
    .footer-cols { grid-template-columns: 1fr; gap: 3.2rem; }
    .footer-col--brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .post-template .site-footer { padding-bottom: calc(3.2rem + 80px); }

    .footer-cols { gap: 2.4rem; }
    .footer-nav { grid-template-columns: 1fr; gap: 0; }

    .footer-group { border-top: 1px solid rgba(0,0,0,0.08); }
    .footer-group:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }

    .footer-group-title {
        margin: 0;
        padding: 1.6rem 0;
        font-size: 1.2rem;
        cursor: pointer;
    }

    .footer-group-caret {
        display: block;
        flex: none;
        width: 0.8rem;
        height: 0.8rem;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translate(-0.2rem, -0.2rem);
        transition: transform 0.2s ease;
    }
    .footer-group.is-open .footer-group-caret {
        transform: rotate(225deg) translate(-0.2rem, -0.2rem);
    }

    .footer-group-body {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.25s ease;
    }
    .footer-group.is-open .footer-group-body { max-height: 40rem; }
    .footer-group-body ul { padding-bottom: 1.6rem; }

    /* Modal */
    .modal-box { padding: 2.4rem 2rem; }
    .modal-title { font-size: 1.6rem; }
}


/* ==========================================================================
   30. RESPONSIVE SMALL MOBILE (max 480px)
   ========================================================================== */

@media (max-width: 480px) {
    :root { --gutter: 1.2rem; }
    .hero-heading { font-size: 3rem; }
    .post-card-title { font-size: min(var(--card-title-size), 1.2rem); }
    .post-feed, .posts-grid-2, .posts-grid-3, .posts-grid-4 { gap: 1rem; }
    .category-card { height: 160px; }
    .category-label { font-size: 0.8rem; padding: 0.7rem 1.4rem; }
}

/* Search page */
.search-results-page {
    padding-top: 5.6rem;
    padding-bottom: 8rem;
    background: var(--white);
}

.search-header { 
    margin-bottom: 4rem; 
}

.search-label { 
    font-size: 1.4rem; 
    color: var(--text-light); 
    letter-spacing: 0.1rem; 
    margin-bottom: 0.8rem; 
}

.search-query { 
    font-family: var(--font-title); 
    font-size: 2rem; 
    font-weight: 900; 
    color: var(--text); 
    letter-spacing: -0.08rem; 
    margin-bottom: 0.8rem; 
}

.search-count { 
    font-size: 1.3rem; 
    color: var(--text-light); 
}

.search-loading { 
    font-size: 1.4rem; 
    color: var(--text-light); 
    padding: 4rem 0; 
}

.search-empty { 
    font-size: 1.4rem; 
    color: var(--text-light); 
    padding: 4rem 0; 
}


/* ==========================================================================
   EDITORIAL BANNER
   ========================================================================== */

.editorial-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    height: 70vh;
    min-height: 480px;
    overflow: hidden;
}

.editorial-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
}

.editorial-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.editorial-img--placeholder {
    background: var(--bg-dark);
}

.editorial-panel:hover .editorial-img { transform: scale(1.04); }

/* Overlay gradient bawah */
.editorial-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
}

.editorial-content {
    position: relative;
    z-index: 2;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.editorial-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.15rem;
}

.editorial-title {
    font-family: var(--font-title);
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 0.95;
    text-transform: uppercase;
}

.editorial-btn {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 1rem 2.4rem;
    border-radius: 100px;
    background: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    margin-top: 0.8rem;
    transition: opacity 0.2s;
}

.editorial-panel:hover .editorial-btn { opacity: 0.85; }

/* Garis pemisah tengah */
.editorial-panel:first-child {
    border-right: 1px solid rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .editorial-banner {
        grid-template-columns: 1fr;
        height: auto;
    }
    .editorial-panel { height: 50vw; min-height: 280px; }
    .editorial-title { font-size: 3.2rem; }
    .editorial-content { padding: 2.4rem; }
    .editorial-panel:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
}

.tag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2.4rem;
    margin-top: 2.4rem;
}

.tag-card {
    display: flex;
    flex-direction: column;
    border: 0.5px solid var(--bg-dark);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tag-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.tag-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--white);
    position: relative;
}

.tag-card-img img,
.tag-card-static {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.tag-slide.active { opacity: 1; }

.tag-card-static {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.tag-slide.active { opacity: 1; }

.tag-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--bg);
}

.tag-card-info { 
    padding: 1.2rem 1.6rem;
    background: var(--white);
}
.tag-card-name { font-size: 1.4rem; font-weight: 600; color: var(--text); margin: 0 0 0.3rem; }
.tag-card-count { font-size: 1.2rem; color: var(--text-mid); margin: 0; }

@media (max-width: 768px) {
    .tag-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}


/* ==========================================================================
   CART NOTIF
   ========================================================================== */

   .cart-notif {
    position: fixed;
    top: 8rem; right: 2.4rem;
    width: 340px; max-width: calc(100vw - 3rem);
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 1.6rem;
    display: flex;
    gap: 1.4rem;
    z-index: 9999;
    opacity: 0;
    transform: translateX(12px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, top 0.3s ease;
}
.cart-notif.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

.cart-notif-thumb {
    flex-shrink: 0;
    width: 6rem; height: 6rem;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
}
.cart-notif-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-notif-fallback { font-size: 2.6rem; }

.cart-notif-body { flex: 1; min-width: 0; }
.cart-notif-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.cart-notif-title { font-size: 1.5rem; font-weight: 700; color: var(--text); margin: 0; }
.cart-notif-close {
    border: none; background: none; cursor: pointer;
    color: var(--text-light); font-size: 1.8rem; line-height: 1;
    padding: 0; flex-shrink: 0;
    transition: color 0.2s;
}
.cart-notif-close:hover { color: var(--text); }
.cart-notif-name {
    font-size: 1.3rem; color: var(--text-mid);
    margin: 0.6rem 0 0.2rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-notif-price { font-size: 1.4rem; font-weight: 700; color: var(--text); margin: 0; }
.cart-notif-btn {
    display: inline-block;
    margin-top: 1.1rem;
    font-size: 1.1rem; font-weight: 700;
    letter-spacing: 0.05rem; text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    color: var(--ghost-accent-color, #6a994e);
    border: 1px solid var(--ghost-accent-color, #6a994e);
    background: var(--bg);
    cursor: pointer;
    transition: 0.3s ease;
}
.cart-notif-btn:hover { color: var(--white); background: var(--ghost-accent-color, #6a994e); }

.gh-head-menu .nav li.has-submenu { position: relative; }
.gh-head-menu .nav li.has-submenu > a { display: inline-flex; align-items: center; }

.submenu-caret {
    display: inline-block;
    width: 0.5rem; height: 0.5rem;
    margin-left: 0.6rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s;
}

.gh-head-menu .nav .submenu {
    list-style: none;
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 180px;
    background: var(--white);
    border: 1px solid var(--bg-dark);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 0.8rem 0;
    display: flex; flex-direction: column;
    opacity: 0; visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 160;
}
.gh-head-menu .nav li.has-submenu:hover .submenu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.gh-head-menu .nav .submenu li a {
    display: block;
    padding: 0.9rem 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    white-space: nowrap;
}
.gh-head-menu .nav .submenu li a:hover { background: var(--bg); color: var(--ghost-accent-color); }

@media (max-width: 768px) {
    .gh-head-menu .nav li.has-submenu { flex-direction: column; align-items: center; }
    .gh-head-menu .nav .submenu {
        position: static;
        transform: none;
        opacity: 1; visibility: visible;
        background: transparent;
        border: none; box-shadow: none;
        padding: 0;
        max-height: 0; overflow: hidden;
        gap: 1.6rem;
        transition: max-height 0.3s ease, margin-top 0.3s ease;
    }
    .gh-head-menu .nav li.submenu-open .submenu { max-height: 60vh; margin-top: 2rem; }
    .gh-head-menu .nav .submenu li a { font-size: 1.5rem; font-weight: 400; padding: 0; }
    .gh-head-menu .nav li.submenu-open > a .submenu-caret { transform: translateY(2px) rotate(-135deg); }
}


/* ==========================================================================
   ODOMETER.MIN
   ========================================================================== */

.odometer.odometer-auto-theme, .odometer.odometer-theme-minimal {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-minimal .odometer-digit {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-minimal .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  vertical-align: middle;
  visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-minimal .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-minimal .odometer-digit .odometer-ribbon {
  display: block;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-minimal .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-minimal .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0);
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-minimal .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
}
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-down .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.post-card.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.post-card.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.collection-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.2rem; }
.collection-actions { display: flex; align-items: center; gap: 1.2rem; }
.filter-toggle-btn, .sort-trigger { display: flex; align-items: center; gap: 0.8rem; background: transparent; border: 1px solid var(--bg-dark); border-radius: 8px; padding: 0.8rem 1.6rem; font-size: 1.3rem; color: var(--text); cursor: pointer; transition: background 0.15s; }
.filter-toggle-btn:hover, .sort-trigger:hover { background: var(--bg-dark); }
.filter-toggle-btn.active { background: var(--text); color: var(--white); border-color: var(--text); }

.sort-dropdown { position: relative; }
.sort-caret { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.2s; }
.sort-dropdown.open .sort-caret { transform: rotate(-135deg) translateY(2px); }
.sort-menu { display: none; position: absolute; top: calc(100% + 0.6rem); right: 0; background: var(--bg); border: 1px solid var(--bg-dark); border-radius: 8px; min-width: 210px; z-index: 10; box-shadow: 0 4px 20px rgba(0,0,0,0.08); overflow: hidden; }
.sort-dropdown.open .sort-menu { display: block; }
.sort-option { padding: 1.1rem 1.6rem; font-size: 1.3rem; color: var(--text-mid); cursor: pointer; transition: background 0.15s; }
.sort-option:hover { background: var(--bg-dark); }
.sort-option.active { color: var(--text); font-weight: 600; }

.filter-count { font-size: 1.3rem; color: var(--text-light); margin: 1.2rem 0 0; }

.collection-layout { display: flex; align-items: flex-start; margin-top: 1.6rem; overflow: hidden; }
.filter-sidebar { width: 0; flex-shrink: 0; overflow: hidden; transition: width 0.4s cubic-bezier(0.22,1,0.36,1); }
.collection-layout.filters-open .filter-sidebar { width: 220px; }
.filter-sidebar-inner { width: 220px; transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); padding-right: 3.2rem; }
.collection-layout.filters-open .filter-sidebar-inner { transform: translateX(0); }
.filter-sidebar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.filter-sidebar-title { font-size: 1.4rem; font-weight: 600; margin: 0; color: var(--text); }
.filter-clear-btn { background: none; border: none; font-size: 1.2rem; color: var(--text-light); text-decoration: underline; cursor: pointer; padding: 0; }
.filter-clear-btn:hover { color: var(--text); }
.filter-sidebar .filter-group { margin-bottom: 2.4rem; }
.filter-sidebar .filter-label { font-size: 1.3rem; font-weight: 600; margin: 0 0 1.2rem; text-transform: uppercase; letter-spacing: 0.05rem; color: var(--text); }
.filter-sidebar .filter-pills { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.filter-sidebar .filter-pill { background: var(--bg-dark); color: var(--text-mid); border: none; font-size: 1.2rem; font-weight: 500; padding: 0.6rem 1.4rem; border-radius: 100px; cursor: pointer; white-space: nowrap; transition: background 0.15s, color 0.15s; }
.filter-sidebar .filter-pill:hover { background: var(--text-light); }
.filter-sidebar .filter-pill.active { background: var(--text); color: var(--white); }

.collection-layout .post-feed { flex: 1; min-width: 0; transition: width 0.35s ease; }