/* ================================
   FONTS
================================ */
@font-face {
    font-family: 'Apercu';
    src: url('../fonts/ApercuPro.woff2') format('woff2'),
        url('../fonts/apercu.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Apercu';
    src: url('../fonts/ApercuPro-Medium.woff2') format('woff2'),
        url('../fonts/apercu-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Apercu';
    src: url('../fonts/ApercuPro-Bold.woff2') format('woff2'),
        url('../fonts/apercu-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ================================
   RESET & ROOT
================================ */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

:root {
    --cream:     #f4f0e7;
    --cream-2:   #ebe5d7;
    --olive:     #9a9a86;
    --olive-dark:#777765;
    --text:      #1f1f1b;
    --muted:     #6b6a5d;
    --white:     #ffffff;
    --line:      rgba(0,0,0,.08);

    --topbar-h:  28px;
    --header-h:  80px;

    /* sisa layar setelah topbar + header */
    --viewport: calc(100dvh - var(--topbar-h) - var(--header-h));
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Apercu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input { font-family: inherit; }

/* ================================
   TOPBAR
================================ */
.site-topbar {
    position: sticky;
    top: 0;
    z-index: 101;
    width: 100%;
    height: var(--topbar-h);
    background: var(--olive);
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
    transition: background-color .35s ease, backdrop-filter .35s ease;
}

.site-topbar.is-scrolled {
    background: rgba(154,154,134,.72);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}

/* Running text */
.topbar-track {
    display: flex;
    white-space: nowrap;
    animation: topbar-scroll 28s linear infinite;
    will-change: transform;
}
.topbar-track:hover { animation-play-state: paused; }

.topbar-item {
    display: inline-flex;
    align-items: center;
    padding: 0 52px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,.92);
    white-space: nowrap;
    flex-shrink: 0;
}
.topbar-item::after {
    content: '·';
    margin-left: 52px;
    color: rgba(255,255,255,.4);
    font-size: 14px;
}

@keyframes topbar-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================================
   HEADER
================================ */
.site-header {
    position: sticky;
    top: var(--topbar-h);
    z-index: 100;
    width: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    transition: background-color .35s ease, backdrop-filter .35s ease,
                box-shadow .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
    background: rgba(244,240,231,.68);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    border-bottom-color: rgba(255,255,255,.25);
    box-shadow: 0 10px 32px rgba(0,0,0,.06);
}

.site-header__inner {
    height: var(--header-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    padding: 0 100px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 82px;
}
.desktop-nav--right { justify-content: flex-end; gap: 32px; }

.desktop-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .95px;
    transition: opacity .2s;
}
.desktop-nav a:hover { opacity: .55; }

.site-logo {
    font-size: 42px;
    font-weight: 400;
    color: #747369;
    letter-spacing: 22px;
    padding-left: 22px;
    line-height: 1;
    transition: opacity .2s;
}
.site-logo:hover { opacity: .7; }

.header-icon {
    width: 22px; height: 22px;
    border: 0; background: transparent;
    color: #777765;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; position: relative;
    transition: opacity .2s;
}
.header-icon:hover { opacity: .55; }

.cart-badge {
    position: absolute; top: -8px; right: -9px;
    min-width: 16px; height: 16px; padding: 0 4px;
    background: #9e9d8a; color: #fff;
    border-radius: 99px; font-size: 9px;
    display: flex; align-items: center; justify-content: center;
}

.site-header.is-scrolled .site-logo,
.site-header.is-scrolled .desktop-nav a,
.site-header.is-scrolled .header-icon { color: #5f5e53; }

/* ================================
   MOBILE TOGGLE
================================ */
.mobile-toggle {
    display: none;
    width: 28px; height: 22px;
    border: 0; background: transparent; cursor: pointer;
    flex-direction: column; justify-content: center; gap: 7px;
}
.mobile-toggle span {
    display: block; width: 100%; height: 1.5px;
    background: var(--muted);
    transition: transform .25s ease, opacity .25s ease;
    transform-origin: center;
}
.mobile-toggle.is-active span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.mobile-toggle.is-active span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

/* ================================
   MOBILE NAV
================================ */
.mobile-nav { display: none; background: rgba(244,240,231,.97); border-top: 1px solid var(--line); padding: 18px 24px 24px; }
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: block; padding: 12px 0; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: #636254; border-bottom: 1px solid rgba(0,0,0,.06); }

/* ================================
   HERO SECTION — tepat 1 layar
================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: var(--viewport);   /* ← pas 1 layar */
    max-height: 900px;      /* ← tambah ini di base style */
    min-height: 480px;      /* ← tambah ini juga */
    overflow: hidden;
    background: #1a1816;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity .75s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }

.hero-slide img,
.hero-slide video {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.02) 40%, rgba(0,0,0,.38) 100%);
    z-index: 2; pointer-events: none;
}

.hero-dots {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; gap: 10px; align-items: center;
}
.hero-dot {
    width: 7px; height: 7px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.65);
    background: transparent; cursor: pointer; padding: 0;
    transition: all .3s ease; flex-shrink: 0;
}
.hero-dot.is-active { background: rgba(255,255,255,.92); border-color: rgba(255,255,255,.92); width: 24px; border-radius: 4px; }
.hero-dot:hover:not(.is-active) { background: rgba(255,255,255,.4); }

.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; width: 44px; height: 44px;
    border: 1.5px solid rgba(255,255,255,.45);
    background: rgba(0,0,0,.2); color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; transition: opacity .25s, background .25s;
    backdrop-filter: blur(6px);
}
.hero-section:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: rgba(0,0,0,.42); }
.hero-arrow--prev { left: 24px; }
.hero-arrow--next { right: 24px; }

.hero-progress {
    position: absolute; bottom: 0; left: 0;
    height: 2px; background: rgba(255,255,255,.85);
    width: 0%; z-index: 10; transition: width linear;
}

.slide-type-badge {
    position: absolute; top: 16px; right: 16px; z-index: 3;
    background: rgba(0,0,0,.45); color: rgba(255,255,255,.85);
    font-size: 9px; letter-spacing: 1.5px; padding: 4px 10px;
    text-transform: uppercase; backdrop-filter: blur(8px); pointer-events: none;
}

/* ================================
   COLLECTION SECTION — tepat 1 layar
================================ */
.collection-section {
    width: 100%;
    height: var(--viewport);   /* ← pas 1 layar */
    max-height: 900px;      /* ← tambah ini di base style */
    min-height: 480px;      /* ← tambah ini juga */
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
}

.col-card {
    position: relative;
    overflow: hidden;
    background: var(--cream-2);
    display: block;
    height: 100%;           /* ← ikut tinggi parent */
}

.col-card img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}

.col-card--left .col-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.60) 100%);
    pointer-events: none;
}

.col-text { position: absolute; z-index: 2; color: #fff; text-transform: uppercase; }

.col-text--bottomleft { left: 52px; bottom: 48px; }
.col-kicker { display: block; font-size: 12px; font-weight: 700; letter-spacing: 2.2px; margin-bottom: 10px; opacity: .9; }
.col-text--bottomleft h2 { font-size: clamp(28px, 3.2vw, 52px); line-height: .95; font-weight: 700; letter-spacing: 1.2px; max-width: 380px; }

.col-card--right .col-dark {
    position: absolute; inset: 0;
    background: rgba(30,28,22,0);
    transition: background .38s ease; pointer-events: none;
}
.col-card--right:hover .col-dark { background: rgba(30,28,22,.52); }
.col-card--right img { transition: transform .55s ease; }

.col-text--center { inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; pointer-events: none; }
.col-text--hover { opacity: 0; transform: translateY(12px); transition: opacity .35s ease, transform .35s ease; }
.col-card--right:hover .col-text--hover { opacity: 1; transform: translateY(0); }
.col-text--center h2 { font-size: clamp(24px, 2.8vw, 42px); line-height: 1; font-weight: 700; letter-spacing: 2.2px; }

.col-btn {
    position: absolute; z-index: 4; right: 48px; bottom: 48px;
    min-width: 142px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #979684; color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    transition: background .3s, border-color .3s;
}
.col-card--right:hover .col-btn { background: rgba(80,78,64,.1); border: 1px solid rgba(255,255,255,.82); }

/* ================================
   PRODUCT SHOWCASE — tepat 1 layar
================================ */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: var(--viewport);   /* ← pas 1 layar */
    max-height: 900px;      /* ← tambah ini di base style */
    min-height: 480px;      /* ← tambah ini juga */
    background: var(--cream);
}

.showcase-card {
    position: relative;
    overflow: hidden;
    border-right: 2px solid var(--cream);
    background: #c5b9a6;
    display: block;
    height: 100%;              /* ← ikut tinggi parent */
}
.showcase-card:last-child { border-right: 0; }

.showcase-card img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    transition: transform .55s ease;
}
.showcase-card:hover img { transform: scale(1.035); }

.showcase-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,.45) 100%);
    pointer-events: none;
}

.showcase-bottom {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 2; display: flex; align-items: flex-end;
    justify-content: space-between; padding: 0 28px 28px;
    gap: 12px;
}

.showcase-name {
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.15;
    max-width: 60%;
}

.showcase-btn {
    display: inline-flex; align-items: center; justify-content: center;
    height: 36px; padding: 0 15px;
    border: 1px solid rgba(255,255,255,.75);
    background: transparent; color: rgba(255,255,255,.9);
    font-size: 9px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
    white-space: nowrap; transition: background .25s;
}

.showcase-card:hover .showcase-btn { background: #979684; color: #ffffff; }

.showcase-caption {
    position: absolute; left: 30px; bottom: 54px;
    z-index: 2; color: #fff; text-transform: uppercase;
}
.showcase-caption h3 { font-size: clamp(16px, 1.6vw, 22px); font-weight: 700; letter-spacing: 1.2px; line-height: 1.1; max-width: 220px; }
.showcase-caption span { display: block; margin-top: 6px; font-size: 11px; letter-spacing: 1px; opacity: .88; }

.showcase-explore {
    position: absolute; left: 30px; bottom: 30px; z-index: 2;
    font-size: 13px; font-weight: 400; letter-spacing: 1.5px;
    text-transform: uppercase; color: rgba(255,255,255,.75);
}

/* ================================
   RESPONSIVE — SMALL LAPTOP (≤ 1280px)
================================ */
@media (max-width: 1280px) {
    :root {
        --header-h: 64px;   /* dari 80px */
    }

    .site-header__inner { padding: 0 48px; }
    .site-logo { font-size: 34px; letter-spacing: 16px; padding-left: 16px; }
    .desktop-nav { gap: 48px; }
    .desktop-nav--right { gap: 24px; }
    .desktop-nav a { font-size: 13px; }

    /* Batasi tinggi max setiap section */
    .hero-section         { max-height: 780px }
    .collection-section   { max-height: 780px }
    .product-showcase     { max-height: 780px }

    /* Collection text */
    .col-text--bottomleft { left: 36px; bottom: 36px; }
    .col-text--bottomleft h2 { font-size: 38px; }
    .col-btn { right: 36px; bottom: 36px; min-width: 130px; height: 40px; font-size: 10px; }

    /* Showcase */
    .showcase-caption { left: 24px; bottom: 48px; }
    .showcase-caption h3 { font-size: 18px; }
    .showcase-explore { left: 24px; bottom: 26px; font-size: 11px; }
}

/* ================================
   RESPONSIVE — MEDIUM LAPTOP (≤ 1024px)
   (update dari yang sudah ada)
================================ */
@media (max-width: 1024px) {
    :root {
        --header-h: 60px;
    }

    .site-header__inner { padding: 0 28px; gap: 20px; }
    .desktop-nav { gap: 28px; }
    .desktop-nav--right { gap: 16px; }
    .site-logo { font-size: 28px; letter-spacing: 12px; padding-left: 12px; }
    .desktop-nav a { font-size: 12px; letter-spacing: .8px; }

    .hero-section         { max-height: 680px }
    .collection-section   { max-height: 680px }
    .product-showcase     { max-height: 680px }

    .col-text--bottomleft { left: 28px; bottom: 28px; }
    .col-text--bottomleft h2 { font-size: 30px; }
    .col-kicker { font-size: 10px; margin-bottom: 8px; }
    .col-btn { right: 28px; bottom: 28px; min-width: 120px; height: 38px; }

    .showcase-caption { left: 20px; bottom: 44px; }
    .showcase-caption h3 { font-size: 16px; }
    .showcase-explore { left: 20px; bottom: 22px; font-size: 11px; }
}

/* ================================
   RESPONSIVE — MOBILE (≤ 768px)
================================ */
@media (max-width: 768px) {
    :root {
        --topbar-h: 28px;
        --header-h: 58px;
    }

    .topbar-item { padding: 0 36px; font-size: 9px; letter-spacing: 1.4px; }
    .topbar-item::after { margin-left: 36px; }

    .site-header__inner { height: var(--header-h); grid-template-columns: auto 1fr auto; padding: 0 18px; }
    .mobile-toggle { display: flex; }
    .desktop-nav--left { display: none; }
    .desktop-nav--right > a { display: none; }
    .desktop-nav--right { gap: 12px; }
    .site-logo { justify-self: center; font-size: 24px; letter-spacing: 10px; padding-left: 10px; }

    /* Collection — stack vertical, tiap card setengah viewport */
    .collection-section {
        grid-template-columns: 1fr;
        height: auto;           /* reset height */
    }
    .col-card {
        height: 50vw;           /* proporsi oke di mobile */
        min-height: 280px;
    }
    .col-text--bottomleft { left: 26px; bottom: 28px; }
    .col-btn { right: 26px; bottom: 28px; }

    /* Showcase — stack vertical */
    .product-showcase {
        grid-template-columns: 1fr;
        height: auto;
    }
    .showcase-card {
        height: 75vw;
        min-height: 320px;
        border-right: 0;
        border-bottom: 2px solid var(--cream);
    }
}

/* ================================
   RESPONSIVE — SMALL (≤ 480px)
================================ */
@media (max-width: 480px) {
    .col-card { height: 60vw; min-height: 240px; }
    .col-text--bottomleft h2 { font-size: 26px; }
    .col-btn { min-width: 120px; height: 40px; font-size: 10px; }

    .showcase-card { height: 90vw; min-height: 280px; }
    .showcase-caption { left: 22px; bottom: 48px; }
    .showcase-caption h3 { font-size: 16px; }
    .showcase-explore { left: 22px; bottom: 26px; }
}
/* ================================================
   MOBILE RESPONSIVE — TAMBAHAN
   (hero iOS height, showcase bottom, col text)
================================================ */

@media (max-width: 768px) {

    /* Hero — pakai svh supaya address bar iOS tidak crop */
    .hero-section {
        height: 100svh;
        min-height: 360px;
        max-height: 700px;
    }

    /* Hero dots lebih kecil */
    .hero-dots    { bottom: 18px; gap: 8px; }
    .hero-dot     { width: 6px; height: 6px; }
    .hero-dot.is-active { width: 18px; }

    /* Arrow hilang di mobile (pakai swipe) */
    .hero-arrow   { display: none; }

    /* Collection text ukuran lebih kecil */
    .col-text--bottomleft       { left: 20px; bottom: 22px; }
    .col-text--bottomleft h2    { font-size: 22px; letter-spacing: .8px; max-width: 260px; }
    .col-kicker                 { font-size: 10px; letter-spacing: 1.8px; margin-bottom: 7px; }
    .col-btn                    { right: 20px; bottom: 22px; min-width: 120px; height: 38px; font-size: 10px; }

    /* Showcase bottom — stack biar tidak overflow */
    .showcase-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px 20px;
        gap: 8px;
    }
    .showcase-name  { font-size: 16px; max-width: 100%; }
    .showcase-btn   { height: 30px; font-size: 9px; padding: 0 12px; }

    /* Showcase card min height lebih wajar */
    .showcase-card  { height: 70vw; min-height: 280px; }
}

@media (max-width: 480px) {

    /* Hero */
    .hero-section   { min-height: 300px; max-height: 580px; }

    /* Collection */
    .col-card                   { height: 62vw; min-height: 220px; }
    .col-text--bottomleft       { left: 16px; bottom: 18px; }
    .col-text--bottomleft h2    { font-size: 19px; }
    .col-btn                    { right: 16px; bottom: 18px; min-width: 110px; height: 34px; font-size: 9px; }

    /* Showcase */
    .showcase-card              { height: 85vw; min-height: 260px; }
    .showcase-bottom            { padding: 0 16px 16px; gap: 6px; }
    .showcase-name              { font-size: 14px; }
    .showcase-btn               { height: 28px; padding: 0 10px; }
}

@media (max-width: 390px) {

    /* Hero */
    .hero-section   { min-height: 260px; }

    /* Collection */
    .col-text--bottomleft h2    { font-size: 17px; }
    .col-btn                    { min-width: 100px; height: 32px; }

    /* Showcase */
    .showcase-name              { font-size: 13px; }
    .showcase-btn               { font-size: 8px; padding: 0 9px; }
}

/* ================================================
   PATCH v2 — Hero penuh 1 layar, showcase overflow fix
================================================ */

/* Pastikan showcase tidak overflow ke footer */
.product-showcase { overflow: hidden; }

/* Hero: isi tepat 1 layar di bawah topbar+header */
@media (max-width: 1024px) {
    .hero-section {
        height: calc(100svh - var(--topbar-h) - var(--header-h));
        max-height: none;
    }
}
@media (max-width: 768px) {
    .hero-section {
        height: calc(100svh - var(--topbar-h) - var(--header-h));
        max-height: none;
        min-height: 340px;
    }
}
@media (max-width: 480px) {
    .hero-section {
        height: calc(100svh - var(--topbar-h) - var(--header-h));
        max-height: none;
        min-height: 300px;
    }
}
@media (max-width: 390px) {
    .hero-section {
        height: calc(100svh - var(--topbar-h) - var(--header-h));
        max-height: none;
        min-height: 260px;
    }
}

/* ================================================
   PATCH v3 — Showcase max-height fix + footer links
================================================ */

/* Override max-height dari rule 1024px yang masih aktif di mobile */
@media (max-width: 768px) {
    .product-showcase {
        max-height: none !important;
        height: auto !important;
    }
    .collection-section {
        max-height: none !important;
    }
}
@media (max-width: 480px) {
    .product-showcase {
        max-height: none !important;
        height: auto !important;
    }
}
@media (max-width: 390px) {
    .product-showcase {
        max-height: none !important;
        height: auto !important;
    }
}

/* ================================================
   PRODUCT SHOWCASE — MOBILE SLIDER
   Desktop: grid 3 kolom (tidak berubah)
   Mobile : horizontal scroll-snap slider
================================================ */

/* Dots: hidden di desktop */
.showcase-dots-mobile { display: none; }

@media (max-width: 768px) {

    .showcase-slider-wrap {
        position: relative;
        background: var(--cream);
    }

    /* Ubah grid jadi flex horizontal scroll */
    .product-showcase {
        display: flex !important;
        flex-direction: row !important;
        grid-template-columns: unset !important;
        overflow-x: scroll !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        height: calc(100svh - var(--topbar-h) - var(--header-h)) !important;
        max-height: none !important;
        min-height: 320px !important;
    }
    .product-showcase::-webkit-scrollbar { display: none; }

    /* Tiap card: lebar penuh, snap ke kiri */
    .showcase-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        height: 100% !important;
        min-height: unset !important;
        scroll-snap-align: start !important;
        border-right: none !important;
        border-bottom: none !important;
    }

    /* Gambar dalam card: full cover */
    .showcase-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    /* Showcase bottom: row biasa di mobile slider */
    .showcase-bottom {
        flex-direction: row !important;
        align-items: flex-end !important;
        justify-content: space-between !important;
        padding: 0 24px 28px !important;
        gap: 12px !important;
    }
    .showcase-name { font-size: 15px !important; max-width: 55% !important; }
    .showcase-btn  { height: 34px !important; font-size: 9px !important; padding: 0 14px !important; white-space: nowrap; }

    /* Dots container */
    .showcase-dots-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 14px 0 10px;
        background: var(--cream);
    }

    /* Dot default */
    .showcase-dot-m {
        width: 5px;
        height: 5px;
        border-radius: 99px;
        background: var(--olive);
        opacity: .28;
        cursor: pointer;
        transition: width .3s ease, opacity .3s ease;
        flex-shrink: 0;
    }

    /* Dot aktif: pill shape */
    .showcase-dot-m.is-active {
        width: 18px;
        opacity: .85;
    }
}
