/* ============ RESET & TOKENS ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --blk: #0c0c0c;
    --text: #141414;
    --muted: #777;
    --white: #fff;
    --line: rgba(0, 0, 0, .08);
    --accent: #c9b896;
    --navH: 72px;
    --cream: #f2efe6;
    /* panel krem */
    --line: #d8d3c5;
    /* garis grid */
    --olive: #6f7a58;
    /* warna teks hijau-olive */
}

/* 1. Regular */
        @font-face {
            font-family: 'Apercu';
            src: url('../fonts/ApercuPro.woff2') format('woff2'),
                url('../assets/fonts/apercu.otf') format('opentype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        /* 2. Medium / Semibold */
        @font-face {
            font-family: 'Apercu';
            src: url('../fonts/ApercuPro-Medium.woff2') format('woff2'),
                url('../assets/fonts/apercu-medium.otf') format('opentype');
            font-weight: 500;
            /* atau 600, sesuaikan dengan style-nya */
            font-style: normal;
            font-display: swap;
        }

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

html,
body {
    height: 100%
}

body {
    font-family: 'Apercu', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top, #f5f0e6 0, #ffffff 45%, #f3eee4 100%);
}


/* ============ HEADER NAV ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navH);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    /* hampir transparan di atas hero */
}

.header-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 28px
}

.nav {
    list-style: none;
    display: flex;
    gap: 48px;
    justify-content: center
}

.nav a {
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    opacity: .92;
    transition: .2s
}

.nav a:hover {
    opacity: 1
}

.tools {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    align-items: center
}

.iconbtn {
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    padding: 6px;
    border-radius: 999px;
    transition: transform .15s ease
}

.iconbtn:active {
    transform: scale(.96)
}

.cart-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #fff
}

.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    color: #fff;
}

/* PNG di-scale dari 265x265 jadi kecil */
.cart-icon img {
    width: 20px;
    /* icon tampil 20px */
    height: 20px;
    object-fit: contain;
    display: block;
}

/* badge jumlah item */
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Saat header transparan di atas hero (belum scroll) */
.header:not(.is-solid) .cart-icon {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
}

.header:not(.is-solid) .cart-icon img {
    filter: invert(1);
    /* kalau PNG hitam, ini bikin kelihatan putih */
}

/* Header saat scroll (di section non-hero) */
.header.is-solid {
    background: rgba(255, 255, 255, .95)
}

.header.is-solid .nav a {
    color: #111
}

.header.is-solid .iconbtn,
.header.is-solid .cart-text {
    color: #111
}

.has-mega {
    position: relative
}

.has-mega>a {
    position: relative
}

/* panel */
.mega-category {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: min(980px, 90vw);
    height: 420px;
    margin-top: 18px;
    background: var(--cream);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
    border-radius: 6px;
    overflow: hidden;
    z-index: 1000;
}

.has-mega:hover .mega-category {
    opacity: 1;
    visibility: visible;
    margin-top: 12px
}

/* grid 3 kolom */
.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%
}

.mega-col {
    position: relative;
    padding: 34px 34px 28px;
    cursor: pointer
}

.mega-col:not(:last-child) {
    border-right: 1px solid var(--line)
}

/* preview image di dalam kolom (muncul saat hover) */
.mega-preview {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.mega-preview .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    /* sedikit zoom untuk kesan “cinematic” */
    transition:
        opacity .22s cubic-bezier(.2, 0, .2, 1),
        transform .45s cubic-bezier(.2, 0, .2, 1);
    will-change: opacity, transform;
    /* hint GPU */
}

.mega-preview .bg.is-top {
    opacity: 1;
    transform: scale(1);
    /* halus ke 1.00 */
}

/* Saat hover kolom, biar layer aktif sedikit “masuk” */
.mega-col:hover .mega-preview .bg.is-top {
    transform: scale(1.005);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .mega-preview .bg {
        transition: none !important;
        transform: none !important;
    }
}

/* overlay tipis supaya teks terbaca */
.mega-col::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .55) 100%);
    opacity: 0;
    transition: .35s ease;
}

.mega-col:hover::after {
    opacity: 1
}

/* daftar link kecil di kiri atas tiap kolom */
.mega-links {
    position: relative;
    z-index: 2;
    margin-bottom: auto
}

.mega-links ul {
    list-style: none
}

.mega-links li {
    margin-bottom: 12px
}

.mega-links a {
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--olive);
    transition: .25s ease;
}

.mega-links a:hover {
    opacity: .75;
    transform: translateX(4px)
}

/* judul besar di kiri bawah tiap kolom */
.mega-title {
    position: absolute;
    left: 34px;
    bottom: 28px;
    z-index: 2;
    color: var(--olive);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: .6px;
}

/* Saat hover kolom: teks jadi putih */
.mega-col:hover .mega-links a,
.mega-col:hover .mega-title {
    color: #fff
}

/* responsif */
@media (max-width:1024px) {
    .mega-category {
        width: 92vw;
        height: 420px
    }
}

@media (max-width:768px) {

    /* di mobile, panel penuh layar (opsional) */
    .mega-category {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        top: var(--navH);
        width: 100vw;
        height: calc(100vh - var(--navH) - 32px);
        border-radius: 0
    }

    .mega-grid {
        grid-template-columns: 1fr
    }

    .mega-col {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }
}

/* ============ MOBILE NAV ============ */

/* wrapper tombol hamburger (kolom kiri header) */
.menu-toggle {
    display: none;
    /* default: hanya muncul di mobile */
    align-items: center;
}

/* tombol hamburger */
.menu-toggle button {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 0;
    background: rgba(0, 0, 0, 0.32);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: background .2s ease, transform .15s ease;
}

.menu-toggle button:active {
    transform: scale(.95);
}

.menu-toggle button span,
.menu-toggle button::before,
.menu-toggle button::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.menu-toggle button span {
    transform: translateY(0);
}

.menu-toggle button::before {
    transform: translateY(-5px);
}

.menu-toggle button::after {
    transform: translateY(5px);
}

/* state “open” -> jadi ikon X */
.menu-toggle button.is-open span {
    opacity: 0;
}

.menu-toggle button.is-open::before {
    transform: rotate(45deg);
}

.menu-toggle button.is-open::after {
    transform: rotate(-45deg);
}

/* ketika header solid (scroll turun), garis jadi gelap */
.header.is-solid .menu-toggle button {
    background: rgba(0, 0, 0, 0.04);
}

.header.is-solid .menu-toggle button span,
.header.is-solid .menu-toggle button::before,
.header.is-solid .menu-toggle button::after {
    background: #111;
}

/* overlay full-screen utk mobile nav */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 998;
}

.mobile-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* panel menu geser dari kiri */
.mobile-nav {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: #f5f1e7;
    padding: 72px 22px 26px;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.mobile-nav-overlay.is-open .mobile-nav {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li+li {
    margin-top: 14px;
}

.mobile-nav a,
.mobile-nav button.mobile-parent {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    color: #111;
    background: transparent;
    border: 0;
    padding: 4px 0;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav a:hover {
    opacity: .8;
}

/* parent yang punya sub menu */
.mobile-parent .chevron {
    width: 10px;
    height: 10px;
    border-right: 1.5px solid #333;
    border-bottom: 1.5px solid #333;
    transform: rotate(45deg);
    margin-left: 8px;
    transition: transform .2s ease;
}

.mobile-parent.is-open .chevron {
    transform: rotate(-135deg);
}

/* sub menu */
.mobile-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height .22s ease;
    padding-left: 8px;
}

.mobile-sub.is-open {
    max-height: 400px;
    /* cukup untuk semua item */
}

.mobile-sub li {
    margin-top: 8px;
}

.mobile-sub a {
    font-size: 13px;
    letter-spacing: 1.2px;
    opacity: .8;
}

/* disable scroll body saat menu open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .running-text-content {
        animation: none;
    }

    .running-text-content span {
        padding: 0 30px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .running-text-wrapper {
        padding: 12px 0;
    }

    .running-text-content span {
        font-size: 12px;
        letter-spacing: 2px;
        padding: 0 40px;
    }

    @keyframes scroll-text {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }
}

@media (max-width: 520px) {
    .running-text-content span {
        font-size: 11px;
        padding: 0 30px;
    }
}

/* ======= CONTENT SECTIONS (punyamu) ======= */
.section {
    padding: 90px 0
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px
}

/* ============ CAROUSEL & FOOTER (reuse punyamu) ============ */
.latest-collection {
    padding: 90px 0 130px;
    background: transparent;
    border-top: none;
}

.home-panel {
    max-width: 1200px;
    margin: 40px auto 0;
    background: #f8f4ec;
    border-radius: 32px;
    border: 1px solid #ece2d4;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .08);
    padding: 32px 32px 40px;
}

/* header di dalam panel */
.home-panel .section-header {
    text-align: left;
    margin-bottom: 28px;
}

.home-panel .section-header h2 {
    font-weight: 500;
    font-size: 26px;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.home-panel .section-header p {
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--muted);
}

/* carousel di dalam panel biar napasnya pas */
.home-panel .carousel-container {
    margin-top: 16px;
}

.home-panel .carousel-wrapper {
    margin: 0;
    /* jangan keluar dari panel */
}

.home-panel .carousel-dots {
    margin-top: 26px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px
}

.section-header h2 {
    font-weight: 300;
    font-size: 40px;
    letter-spacing: -.3px;
    margin-bottom: 8px;
    color: #111
}

.section-header p {
    color: #666;
    font-size: 15px
}

/* ===== Shop Our Latest (banner) – teks kiri seperti contoh ===== */
.shop-latest {
    position: relative;
    isolation: isolate;
    background: #111;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Kartu besar */
    max-width: 1200px;
    margin: 115px auto 1px;
    /* overlap kecil dengan hero */
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
}

@media (max-width: 1024px) {
    .shop-latest {
        margin: -70px auto 60px;
        border-radius: 26px;
        min-height: 54vh;
    }
}

@media (max-width: 768px) {
    .shop-latest {
        margin: 115px auto 5px;
        /* overlap makin kecil */
        min-height: 48vh;
        border-radius: 20px;
    }
}

.shop-latest::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/our-latest.jpg') center/cover no-repeat;
    opacity: .92;
    z-index: -2;
}

.shop-latest::after {
    /* gelapkan sisi kiri supaya teks kontras, memudar ke kanan */
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .28) 35%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
}

/* posisikan konten ke kiri, beri jarak dari tepi */
.shop-latest .container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: min(8vw, 120px);
    /* <— jarak kiri seperti mockup */
    padding-right: min(4vw, 60px);
}

.latest-copy {
    max-width: 720px;
    /* biar heading bisa 2–3 baris */
    color: #fff;
    text-align: left;
}

/* heading besar, huruf kapital & rapih di kiri */
.latest-title {
    font-size: clamp(36px, 6vw, 68px);
    /* lebih besar seperti gambar */
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin: 0 0 22px 0;
}

/* tombol outline putih */
.latest-btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, .9);
    border-radius: 3px;
    padding: 12px 26px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    transition: .25s ease;
}

.latest-btn:hover {
    background: #fff;
    color: #111
}

/* responsive */
@media (max-width:768px) {
    .shop-latest {
        min-height: 56vh
    }

    .shop-latest .container {
        padding-left: 24px;
        padding-right: 24px
    }

    .latest-title {
        font-size: clamp(28px, 7vw, 40px)
    }
}

/* ===== Product Carousel Widget ===== */
.runway {
    background: #f8f4ec;
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
    /* Tambahkan ini untuk mencegah overflow */
}

.runway .brand-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    font-weight: 300;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(48px, 9vw, 120px);
    letter-spacing: 18px;
}

/* Container untuk runway rail */
/* Container */
.runway-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

/* Rail */
.runway-rail {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    user-select: none;
    will-change: transform;
}

.runway-rail:active {
    cursor: grabbing;
}

/* Items */
.runway-item {
    position: relative;
    width: 280px;
    min-width: 280px;
    height: 420px;
    flex-shrink: 0;
    filter: grayscale(100%) blur(1.2px);
    opacity: 0.35;
    transform: translateY(12px) scale(0.98);
    transition: filter 0.4s, opacity 0.4s, transform 0.4s;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.runway-item.is-active {
    filter: none;
    opacity: 1;
    transform: translateY(0) scale(1.05);
}

.runway-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
}

/* Navigation buttons */
.runway-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 28px;
    z-index: 10;
}

.runway-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.runway-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

.runway-btn:active {
    transform: scale(0.95);
}

.runway-btn svg {
    width: 20px;
    height: 20px;
}

/* Info */
.runway-info {
    text-align: center;
    margin-top: 56px;
    color: #000;
    padding: 0 20px;
}

.runway-name {
    font-size: 14px;
    letter-spacing: 1.5px;
    color: #000;
    font-weight: 500;
}

.runway-price {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 6px;
    color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .runway-item {
        width: 240px;
        min-width: 240px;
        height: 380px;
    }

    .runway-rail {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .runway-container {
        padding: 15px 0;
    }

    .runway-item {
        width: 70vw;
        min-width: 70vw;
        max-width: 280px;
        height: 340px;
    }

    .runway-rail {
        gap: 16px;
    }

    .runway-info {
        margin-top: 40px;
    }

    .runway-btn {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 520px) {
    .runway-item {
        width: 75vw;
        min-width: 75vw;
        max-width: 260px;
        height: 420px;
    }

    .runway-rail {
        gap: 14px;
    }

    .runway-nav {
        bottom: 12px;
        gap: 20px;
    }

    .runway-btn {
        width: 34px;
        height: 34px;
    }

    .runway-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ===== BHRE Footer (match mockup) ===== */
:root {
    --olive-bg: #9a9985;
    /* warna latar hijau-olive */
    --sand: #d0c2b1;
    /* warna aksen/tombol */
    --foot-text: #f1eee9;
    /* teks utama putih hangat */
    --foot-muted: rgba(241, 238, 233, .8);
    --foot-line: rgba(0, 0, 0, .08);
}

/* wrapper */
.bhre-footer {
    background: var(--olive-bg);
    color: var(--foot-text);
    padding: 64px 0 40px;
    position: relative;
    overflow: hidden;
}

.bhre-footer .inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 48px;
}

/* left block: title + subcopy */
.bhre-subscribe h3 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: .3px;
    margin-bottom: 12px;
}

.bhre-subscribe p {
    color: var(--foot-muted);
    font-size: 14px;
}

/* right block: form + disclaimer */
.bhre-form-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.bhre-input {
    flex: 1;
    height: 42px;
    border: none;
    outline: none;
    padding: 0 14px;
    border-radius: 2px;
    background: #fff;
    color: #222;
    font-size: 14px;
}

.bhre-btn {
    height: 42px;
    padding: 0 16px;
    border: none;
    cursor: pointer;
    background: var(--sand);
    color: #333;
    border-radius: 2px;
    font-weight: 600;
}

.bhre-disclaimer {
    margin-top: 10px;
    font-size: 11px;
    color: var(--foot-muted);
    max-width: 560px;
}

/* link columns */
.bhre-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
    margin-top: 28px;
}

.bhre-col h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    color: var(--foot-text);
}

.bhre-col ul {
    list-style: none
}

.bhre-col li {
    margin: 10px 0
}

.bhre-col a {
    color: var(--foot-text);
    text-decoration: none;
    font-size: 14px;
    opacity: .9;
}

.bhre-col a:hover {
    opacity: 1;
    text-decoration: underline
}

/* wordmark besar kiri bawah */
.bhre-wordmark {
    position: absolute;
    left: 28px;
    bottom: 22px;
    font-size: 42px;
    letter-spacing: 10px;
    font-weight: 600;
    color: #cbbdaf;
    /* krem pudar */
}

@media (max-width:768px) {
    .bhre-wordmark {
        left: 200px;
    }
}

/* divider tipis atas bottom area (opsional) */
/* .bhre-footer::after{content:""; position:absolute; left:0; right:0; bottom:70px; height:1px; background:var(--foot-line);} */

/* responsive */
@media (max-width:1024px) {
    .bhre-footer .inner {
        grid-template-columns: 1fr
    }

    .bhre-columns {
        margin-top: 20px
    }
}

@media (max-width:768px) {
    .bhre-subscribe h3 {
        font-size: 32px
    }

    .bhre-wordmark {
        font-size: 36px;
        letter-spacing: 8px
    }

    .bhre-columns {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:520px) {
    .bhre-form-row {
        flex-direction: column;
        align-items: stretch
    }

    .bhre-btn {
        width: 100%
    }

    .bhre-columns {
        grid-template-columns: 1fr
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width:1024px) {
    .nav {
        gap: 28px
    }

    .carousel-slide {
        flex: 0 0 calc(50% - 15px)
    }
}

@media (max-width:768px) {
    .topbar {
        font-size: 11px;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
        /* [hamburger] [logo/nav center] [tools] */
    }

    .nav {
        display: none;
        /* desktop nav disembunyikan di mobile */
    }

    .menu-toggle {
        display: flex;
        /* hamburger muncul */
    }

    .desktop-view {
        display: none;
    }

    .carousel-wrapper {
        margin: 0 20px;
    }

    .carousel-slide {
        flex: 0 0 calc(100% - 15px);
    }

    .brand {
        letter-spacing: 16px;
    }
}