/* =========================================================
   KAU·ASIA — LUXURY FASHION
   MASTER RESPONSIVE STYLESHEET
========================================================= */

/* =========================================================
   VARIABLES
========================================================= */

:root {
    --bg-main: #f8f6f1;
    --bg-white: #ffffff;
    --bg-soft: #f1eee7;
    --bg-beige: #ebe5d9;

    --text-main: #24231f;
    --text-dark: #161512;
    --text-muted: #77736a;
    --text-soft: #a09b91;

    --gold: #b28a4a;
    --gold-light: #d1b273;
    --gold-dark: #8d6a32;
    --gold-soft: rgba(178, 138, 74, .08);
    --gold-border: rgba(178, 138, 74, .28);

    --line: rgba(36, 35, 31, .09);
    --line-dark: rgba(36, 35, 31, .14);

    --shadow-soft:
        0 12px 35px rgba(35, 31, 24, .055);

    --shadow-hover:
        0 25px 60px rgba(35, 31, 24, .10);

    --serif:
        "Cormorant Garamond",
        Georgia,
        serif;

    --sans:
        "Plus Jakarta Sans",
        Arial,
        sans-serif;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-main);
    color: var(--text-main);

    font-family: var(--sans);
    font-weight: 300;

    line-height: 1.7;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}

button:focus-visible,
a:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 4px;
}


/* =========================================================
   HEADER
========================================================= */

header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    min-height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 6%;

    z-index: 1000;

    background: rgba(248, 246, 241, .92);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid var(--line);

    transition:
        background .4s ease,
        box-shadow .4s ease;
}



.header-top {
    display: flex;
    align-items: center;

    width: 100%;
    min-width: 0;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-right: 30px;

    line-height: 1;

    z-index: 1200;
}

.brand-main {
    font-family: var(--serif);

    font-size: 27px;
    font-weight: 600;

    letter-spacing: 6px;

    color: var(--text-dark);

    white-space: nowrap;
}

.brand-sub {
    margin-top: 5px;

    color: var(--gold);

    font-size: 7px;
    font-weight: 500;

    letter-spacing: 4.5px;

    text-transform: uppercase;

    white-space: nowrap;
}


/* =========================================================
   DECORATIVE RIBBON
========================================================= */

.ribbon-tabs {
    display: flex;

    gap: 15px;

    margin-top: 10px;

    border-top: 1px solid var(--line);

    padding-top: 8px;
}

.ribbon-tab {
    padding: 4px 8px;

    color: var(--text-muted);

    font-size: 9px;
    letter-spacing: 2px;

    text-transform: uppercase;
}

.ribbon-tab.active {
    color: var(--gold-dark);

    border-bottom:
        2px solid var(--gold);
}

.ribbon-container {
    display: none;
}


/* =========================================================
   DESKTOP NAVIGATION WRAPPER
========================================================= */

.nav-scroll-wrapper {
    position: relative;

    display: flex;
    align-items: center;

    flex: 1;
    min-width: 0;

    padding: 0 30px;
}


/* =========================================================
   NAV VIEWPORT

   Hanya area ini yang melakukan horizontal scrolling.
   Jangan gunakan overflow pada #mainNav.
========================================================= */

.nav-viewport {
    position: relative;

    flex: 1;
    min-width: 0;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;

    scroll-behavior: smooth;
}

.nav-viewport::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   MAIN NAV
========================================================= */

nav#mainNav {
    position: relative;

    width: max-content;
    
    white-space: nowrap;
    margin-left: auto;
}

nav#mainNav > ul {
    display: flex;
    align-items: center;

    width: max-content;
    min-width: 100%;

    gap: 35px;

    list-style: none;
    padding-right: 10px;
}

nav#mainNav > ul > li {
    position: relative;

    flex-shrink: 0;
}


/* =========================================================
   MAIN MENU
========================================================= */

nav#mainNav > ul > li > a,
nav#mainNav > ul > li > .submenu-toggle {
    position: relative;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 30px 0;

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2.4px;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        color .3s ease;
}

nav#mainNav > ul > li > a::after,
nav#mainNav > ul > li > .submenu-toggle::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 17px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition:
        width .35s ease;
}

nav#mainNav > ul > li:hover > a,
nav#mainNav > ul > li:hover > .submenu-toggle,
nav#mainNav > ul > li:focus-within > a,
nav#mainNav > ul > li:focus-within > .submenu-toggle {
    color: var(--text-dark);
}

nav#mainNav > ul > li:hover > a::after,
nav#mainNav > ul > li:hover > .submenu-toggle::after,
nav#mainNav > ul > li:focus-within > a::after,
nav#mainNav > ul > li:focus-within > .submenu-toggle::after {
    width: 100%;
}


/* =========================================================
   SUBMENU ARROW
========================================================= */

.submenu-toggle .arrow {
    width: 5px;
    height: 5px;

    flex-shrink: 0;

    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;

    transform:
        rotate(45deg)
        translateY(-2px);

    transition:
        transform .35s ease;
}

.has-submenu:hover > .submenu-toggle .arrow,
.has-submenu.open > .submenu-toggle .arrow {
    transform:
        rotate(225deg)
        translateY(-1px);
}


/* =========================================================
   DESKTOP SUBMENU

   IMPORTANT:
   position: fixed digunakan supaya submenu tidak terpotong
   oleh .nav-viewport yang memiliki overflow-x:auto.
========================================================= */

@media (min-width: 901px) {

    nav#mainNav .submenu {
        position: fixed;

        width: 235px;

        margin: 0;
        padding: 10px 0;

        list-style: none !important;

        background: rgba(255, 255, 255, .98);

        border: 1px solid var(--gold-border);

        box-shadow:
            0 25px 55px rgba(32, 28, 22, .10);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(5px);

        transition:
            opacity .18s ease,
            visibility .18s ease,
            transform .18s ease;

        z-index: 99999;
    }


    nav#mainNav .submenu li {
        list-style: none !important;
        margin: 0;
        padding: 0;
    }


    nav#mainNav .submenu li::marker {
        content: none !important;
    }


    nav#mainNav .submenu a {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 12px 23px;

        color: var(--text-muted);

        font-size: 9px;
        font-weight: 500;
        letter-spacing: 1.8px;

        text-transform: uppercase;

        text-decoration: none;

        transition:
            background .2s ease,
            color .2s ease,
            padding .2s ease;
    }


    nav#mainNav .submenu a:hover {
        color: var(--gold-dark);

        background: var(--gold-soft);

        padding-left: 28px;
    }


    nav#mainNav .submenu a span:last-child {
        opacity: 0;
        transform: translateX(-5px);

        color: var(--gold);

        transition:
            opacity .2s ease,
            transform .2s ease;
    }


    nav#mainNav .submenu a:hover span:last-child {
        opacity: 1;
        transform: translateX(0);
    }


    /* HANYA .open YANG MEMBUKA SUBMENU */
    nav#mainNav .has-submenu.open > .submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

}
/* =========================================================
   NAV SCROLL BUTTONS
========================================================= */

.nav-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    /* Layout Centering */
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;
    
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: var(--gold-dark);
    
    /* Penyesuaian Presisi Posisi Teks/Simbol */
    font-size: 18px;
    line-height: 0;           /* Mencegah spasi ekstra bawaan font */
    padding-bottom: 2px;      /* Menarik simbol › sedikit ke atas/tengah */
    text-indent: -1px;        /* Menggeser horizontal jika agak condong */

    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, background .3s ease, color .3s ease, transform .3s ease;
    z-index: 100;
}

.nav-scroll-btn.visible {
    opacity: 1;

    pointer-events: auto;
}

.nav-scroll-btn:hover {
    background: var(--gold);

    color: #fff;

    transform:
        translateY(-50%)
        scale(1.05);
}

.nav-scroll-wrapper .prev-btn {
    left: -5px;
}

.nav-scroll-wrapper .next-btn {
    right: 0px;
}


/* =========================================================
   HAMBURGER
========================================================= */

.menu-toggle {
    display: none;

    position: relative;

    flex-shrink: 0;

    width: 44px;
    height: 44px;

    z-index: 1200;

    border:
        1px solid var(--line-dark);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .45);

    transition:
        border-color .3s ease,
        background .3s ease;
}

.menu-toggle:hover {
    border-color: var(--gold-border);

    background:
        rgba(255, 255, 255, .8);
}

.menu-toggle span {
    position: absolute;

    left: 13px;

    width: 18px;
    height: 1px;

    background: var(--text-dark);

    transition:
        transform .4s cubic-bezier(.25,1,.5,1),
        top .4s cubic-bezier(.25,1,.5,1),
        opacity .3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 16px;
}

.menu-toggle span:nth-child(2) {
    top: 21px;
}

.menu-toggle span:nth-child(3) {
    top: 26px;
}

.menu-toggle.active span:nth-child(1) {
    top: 21px;

    transform:
        rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;

    transform:
        scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    top: 21px;

    transform:
        rotate(-45deg);
}


/* =========================================================
   DYNAMIC CONTENT TABS
========================================================= */

.tabs-wrapper {
    position: fixed;

    top: 85px;
    left: 0;

    width: 100%;

    height: 51px;

    display: flex;
    align-items: center;

    padding: 0 6%;

    z-index: 999;

    background:
        rgba(248, 246, 241, .94);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom:
        1px solid var(--line);
}

.content-tabs {
    display: flex;
    align-items: center;

    gap: 30px;

    width: 100%;
    min-width: 0;

    overflow-x: auto;

    white-space: nowrap;

    padding: 14px 0;

    scrollbar-width: none;

    scroll-behavior: smooth;
}

.content-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    position: relative;

    flex-shrink: 0;

    padding: 6px 0;

    color: var(--text-muted);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2.2px;

    text-transform: uppercase;

    transition:
        color .3s ease;
}

.tab-btn::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition:
        width .3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--gold-dark);
}

.tab-btn.active::after {
    width: 100%;
}


/* =========================================================
   CONTENT TAB SCROLL BUTTON
========================================================= */

.tab-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: var(--gold-dark);

    /* Penyesuaian Presisi Posisi Teks/Simbol */
    font-size: 20px;
    line-height: 0;           /* Menghapus spasi tinggi baris bawaan font */
    padding-bottom: 3px;      /* Menarik simbol › / ‹ ke atas agar presisi di tengah */

    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, background .3s ease, color .3s ease;

    z-index: 10;
}

.tab-scroll-btn.visible {
    opacity: 1;

    pointer-events: auto;
}

.tab-scroll-btn:hover {
    background: var(--gold);

    color: #fff;
}

.tabs-wrapper .prev-btn {
    left: 18px;
}

.tabs-wrapper .next-btn {
    right: 18px;
}


/* =========================================================
   EMPTY CONTENT TABS
========================================================= */

.content-tabs.is-empty {
    justify-content: center;
    align-items: center;

    min-height: 40px;

    padding: 13px;
}

.content-tabs.is-empty::before {
    content: attr(data-empty-text);

    font-family:
        var(--serif);

    font-size: 14px;

    font-style: italic;

    font-weight: 500;

    letter-spacing: 1.5px;

    color: var(--text-soft);

    text-transform: none;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

main#main-content {
    margin-top: 136px;

    min-height:
        calc(100vh - 136px);
}

.content-container {
    width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 6%;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(178,138,74,.10),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            #faf9f5 0%,
            #f8f6f1 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    inset: 7%;

    border:
        1px solid var(--gold-border);

    pointer-events: none;

    opacity: .65;
}

.hero-content {
    position: relative;

    width: 100%;
    max-width: 900px;

    animation:
        heroFadeIn
        1.2s
        cubic-bezier(.16,1,.3,1)
        both;
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 22px;

    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 5px;

    text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
    content: "";

    width: 28px;
    height: 1px;

    background:
        var(--gold);

    opacity: .6;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero h1 {
    font-family:
        var(--serif);

    font-size:
        clamp(4rem, 10vw, 8.5rem);

    font-weight: 400;

    letter-spacing: 13px;

    line-height: .9;

    color:
        var(--text-dark);

    text-transform: uppercase;

    margin-bottom: 26px;
}

.hero h1 span {
    color: var(--gold);

    font-style: italic;

    font-weight: 300;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 470px;

    margin:
        0 auto 40px;

    color:
        var(--text-muted);

    font-size: 12px;

    line-height: 1.9;

    letter-spacing: .3px;
}


/* =========================================================
   HERO BUTTON
========================================================= */

.hero-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    padding: 17px 34px;

    border:
        1px solid var(--gold);

    color:
        var(--text-dark);

    background:
        transparent;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    overflow: hidden;

    transition:
        color .4s ease;
}

.hero-button::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        var(--gold);

    transform:
        translateX(-101%);

    transition:
        transform .4s ease;

    z-index: -1;
}

.hero-button:hover {
    color: #fff;
}

.hero-button:hover::before {
    transform:
        translateX(0);
}


/* =========================================================
   SCROLL NOTE
========================================================= */

.scroll-note {
    position: absolute;

    bottom: 28px;
    left: 50%;

    transform:
        translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    color:
        var(--text-soft);

    font-size: 7px;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.scroll-note::after {
    content: "";

    width: 1px;
    height: 38px;

    background:
        linear-gradient(
            to bottom,
            var(--gold),
            transparent
        );
}


/* =========================================================
   SECTION
========================================================= */

.section {
    padding:
        120px 6%;

    background:
        var(--bg-main);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 55px;

    padding-bottom: 25px;

    border-bottom:
        1px solid var(--line);
}

.section-label {
    margin-bottom: 7px;

    color:
        var(--gold-dark);

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.section-title {
    font-family:
        var(--serif);

    font-size:
        clamp(2.7rem, 5vw, 4rem);

    font-weight: 400;

    line-height: 1;

    color:
        var(--text-dark);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(280px, 1fr)
        );

    gap: 28px;
}

.product-card {
    background:
        var(--bg-white);

    border:
        1px solid var(--line);

    padding: 12px;

    box-shadow:
        var(--shadow-soft);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}

.product-card:hover {
    transform:
        translateY(-7px);

    border-color:
        var(--gold-border);

    box-shadow:
        var(--shadow-hover);
}

.product-card.hidden {
    display: none;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image {
    position: relative;

    aspect-ratio: 3 / 4;

    overflow: hidden;

    background:
        var(--bg-soft);
}

.product-image::after {
    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid rgba(255,255,255,.25);

    pointer-events: none;
}

.product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s
        cubic-bezier(.25,1,.5,1);
}

.product-card:hover
.product-image img {
    transform:
        scale(1.045);
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    padding:
        18px 5px 7px;
}

.product-category {
    color:
        var(--gold-dark);

    font-size: 8px;

    font-weight: 500;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.product-name {
    margin-top: 4px;

    font-family:
        var(--serif);

    font-size: 21px;

    font-weight: 500;

    line-height: 1.15;

    color:
        var(--text-dark);
}

.product-price {
    padding-top: 2px;

    color:
        var(--text-muted);

    font-size: 10px;

    white-space: nowrap;
}


/* =========================================================
   FOOTER
========================================================= */

footer:not(.site-footer) {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding:
        42px 6%;

    background:
        #f3f0e9;

    border-top:
        1px solid var(--line);

    color:
        var(--text-muted);

    font-size: 9px;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.footer-brand {
    font-family:
        var(--serif);

    font-size: 19px;

    color:
        var(--text-dark);

    letter-spacing: 4px;
}

.footer-social {
    display: flex;

    gap: 25px;
}

.footer-social a {
    transition:
        color .3s ease;
}

.footer-social a:hover {
    color:
        var(--gold-dark);
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes heroFadeIn {

    from {
        opacity: 0;

        transform:
            translateY(30px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   TABLET & MOBILE
========================================================= */

@media (max-width: 900px) {

    /* -----------------------------------------------------
       BODY
    ----------------------------------------------------- */

    body.menu-open {
        overflow: hidden;
    }


    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    header {
        min-height: 70px;

        padding:
            10px 5%;

        flex-direction: row;

        align-items: center;
        justify-content: space-between;
    }

    .header-top {
        justify-content: space-between;
    }


    /* -----------------------------------------------------
       BRAND
    ----------------------------------------------------- */

    .brand {
        margin-right: 0;
    }

    .brand-main {
        font-size: 23px;

        letter-spacing: 5px;
    }

    .brand-sub {
        font-size: 6.5px;

        letter-spacing: 4px;
    }


    /* -----------------------------------------------------
       DECORATIVE ELEMENTS
    ----------------------------------------------------- */

    .ribbon-tabs,
    .ribbon-container {
        display: none !important;
    }


    /* -----------------------------------------------------
       DESKTOP NAV WRAPPER
    ----------------------------------------------------- */

    .nav-scroll-wrapper {
        flex: none;

        width: auto;

        padding: 0;
    }

    .nav-viewport {
        overflow: visible;
    }


    /* -----------------------------------------------------
       HAMBURGER
    ----------------------------------------------------- */

    .menu-toggle {
        display: block;
    }


    /* -----------------------------------------------------
       MOBILE / TABLET DRAWER
    ----------------------------------------------------- */

    nav#mainNav {
        position: fixed;

        top: 70px;
        right: 0;

        width:
            min(340px, 86vw);

        height:
            calc(100dvh - 70px);

        padding:
            20px;

        background:
            rgba(255,255,255,.985);

        border-left:
            1px solid var(--gold-border);

        box-shadow:
            -15px 0 45px rgba(0,0,0,.08);

        transform:
            translateX(100%);

        transition:
            transform .4s
            cubic-bezier(.25,1,.5,1);

        overflow-x: hidden;
        overflow-y: auto;

        overscroll-behavior:
            contain;

        z-index: 1100;
    }

    nav#mainNav.active {
        transform:
            translateX(0);
    }


    /* -----------------------------------------------------
       MOBILE MENU LIST
    ----------------------------------------------------- */

    nav#mainNav > ul {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        width: 100%;
        min-width: 0;
    }

    nav#mainNav > ul > li {
        width: 100%;

        border-bottom:
            1px solid var(--line);
    }


    /* -----------------------------------------------------
       MOBILE MAIN MENU
    ----------------------------------------------------- */

    nav#mainNav > ul > li > a,
    nav#mainNav > ul > li > .submenu-toggle {

        width: 100%;

        justify-content:
            space-between;

        padding:
            18px 0;

        font-size: 10px;

        letter-spacing:
            2px;
    }

    nav#mainNav > ul > li > a::after,
    nav#mainNav > ul > li > .submenu-toggle::after {

        left: 0;
        bottom: 0;

        width: 0;

        opacity: 0;

        transition:
            width .35s ease,
            opacity .25s ease;
    }

    nav#mainNav > ul > li.has-submenu.open >
    .submenu-toggle::after {

        width: 100%;

        opacity: 1;
    }


    /* -----------------------------------------------------
       MOBILE ARROW
    ----------------------------------------------------- */

    .submenu-toggle .arrow {

        transform:
            rotate(45deg)
            translateY(-2px) !important;

        transition:
            transform .4s
            cubic-bezier(.25,1,.5,1);
    }

    .has-submenu.open
    .submenu-toggle .arrow {

        transform:
            rotate(225deg)
            translateY(-1px) !important;
    }


    /* -----------------------------------------------------
       MOBILE SUBMENU
    ----------------------------------------------------- */

    nav#mainNav .submenu {

        position: static !important;

        width: 100%;

        max-height: 0;

        padding:
            0 0 0 14px;

        transform: none !important;

        background: transparent;

        border: 0;

        box-shadow: none;

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        overflow: hidden;

        transition:
            max-height .4s
                cubic-bezier(.25,1,.5,1),
            opacity .3s ease,
            visibility .3s ease,
            padding .3s ease;
    }

    nav#mainNav .has-submenu.open >
    .submenu {

        max-height: 1000px;

        padding-top: 5px;

        padding-bottom: 12px;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;
    }

    nav#mainNav .submenu li {
        width: 100%;
        list-style: none !important;
    }

    nav#mainNav .submenu a {

        display: flex;

        align-items: center;

        justify-content:
            space-between;

        gap: 12px;

        min-height: 42px;

        padding:
            9px 4px 9px 15px;

        font-size: 8px;

        letter-spacing: 1.7px;

        transition:
            padding .25s ease,
            color .25s ease,
            background .25s ease;
    }

    nav#mainNav .submenu a:hover {

        padding-left: 20px;

        color:
            var(--gold-dark);
    }

    nav#mainNav .submenu a span:last-child {

        opacity: 1;

        transform: none;

        color:
            var(--gold);
    }


    /* -----------------------------------------------------
       HIDE DESKTOP NAV BUTTONS
    ----------------------------------------------------- */

    .nav-scroll-btn {
        display: none !important;
    }


    /* -----------------------------------------------------
       TABS
    ----------------------------------------------------- */

    .tabs-wrapper {

        top: 70px;

        height: 55px;

        padding:
            0 10%;
    }

    .content-tabs {

        gap: 25px;

        padding:
            13px 0;
    }

    .tab-btn {

        font-size: 8px;

        letter-spacing: 1.8px;
    }

    .tab-scroll-btn {

        width: 30px;
        height: 30px;

        font-size: 16px;
    }

    .tabs-wrapper .prev-btn {
        left: 5px;
    }

    .tabs-wrapper .next-btn {
        right: 5px;
    }


    /* -----------------------------------------------------
       MAIN
    ----------------------------------------------------- */

    main#main-content {

        margin-top: 125px;

        padding:
            15px 4%;

        min-height:
            calc(100vh - 125px);
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero {

        min-height:
            100svh;

        padding:
            150px 20px 100px;
    }

    .hero::before {

        inset: 5%;
    }

    .hero h1 {

        font-size:
            clamp(3rem, 17vw, 6rem);

        letter-spacing:
            7px;

        line-height:
            .92;
    }

    .hero-description {

        max-width:
            400px;

        font-size:
            11px;

        padding:
            0 10px;
    }


    /* -----------------------------------------------------
       SECTION
    ----------------------------------------------------- */

    .section {

        padding:
            90px 5%;
    }

    .section-heading {

        align-items:
            flex-start;

        flex-direction:
            column;

        margin-bottom:
            35px;
    }

    .section-title {

        font-size:
            2rem;
    }


    /* -----------------------------------------------------
       PRODUCT
    ----------------------------------------------------- */

    .product-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );

        gap: 16px;
    }

    .product-card {

        padding: 8px;
    }

    .product-info {

        flex-direction:
            column;

        gap: 5px;

        padding:
            13px 3px 5px;
    }

    .product-name {

        font-size:
            18px;
    }

    .product-price {

        font-size:
            9px;
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    footer {

        flex-direction:
            column;

        text-align:
            center;

        gap: 18px;

        padding:
            35px 5%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    header {
        padding:
            9px 4%;
    }

    .brand-main {
        font-size: 21px;

        letter-spacing:
            4px;
    }

    .brand-sub {
        font-size:
            5.5px;

        letter-spacing:
            3.5px;
    }

    .menu-toggle {

        width: 42px;
        height: 42px;
    }

    .menu-toggle span {

        left: 12px;

        width: 18px;
    }


    nav#mainNav {

        width:
            min(310px, 88vw);

        padding:
            18px;
    }


    .tabs-wrapper {

        padding:
            0 8%;
    }

    .content-tabs {

        gap:
            20px;
    }

    main#main-content {

        padding:
            12px 3%;
    }


    .hero {

        padding:
            145px 16px 90px;
    }

    .hero h1 {

        font-size: clamp(2.8rem, 1vw, 5rem);

        letter-spacing:
            5px;
    }

    .eyebrow {

        gap: 10px;

        font-size: 8px;

        letter-spacing:
            3px;
    }

    .eyebrow::before,
    .eyebrow::after {

        width:
            20px;
    }


    .hero-description {

        font-size:
            10.5px;

        line-height:
            1.8;
    }

    .hero-button {

        padding:
            15px 25px;

        font-size:
            8px;
    }


    .product-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );

        gap:
            10px;
    }

    .product-card {

        padding:
            6px;
    }

    .product-name {

        font-size:
            16px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .brand-main {

        font-size:
            19px;

        letter-spacing:
            3px;
    }

    .brand-sub {

        font-size:
            5px;

        letter-spacing:
            3px;
    }

    .menu-toggle {

        width:
            40px;

        height:
            40px;
    }

    .hero h1 {

        font-size:
            2.8rem;

        letter-spacing:
            4px;
    }

    .product-grid {

        gap:
            8px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior:
            auto !important;
    }

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;
    }
}

.page-not-found {
    position: relative;
    min-height: calc(100vh - 136px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 6%;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(178, 138, 74, .09),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #faf9f6 0%,
            #f4f1eb 50%,
            #faf9f6 100%
        );
}


/* Decorative frame */

.page-not-found::before {
    content: "";

    position: absolute;
    inset: 30px;

    border: 1px solid rgba(178, 138, 74, .14);

    pointer-events: none;
}


/* Decorative circle */

.page-not-found::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(178, 138, 74, .08);
    border-radius: 50%;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;
}


/* Content */

.page-not-found .hero-content {
    position: relative;
    z-index: 2;

    width: min(800px, 100%);

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Brand */

.page-not-found .eyebrow {
    margin-bottom: 18px;

    color: var(--gold-dark);

    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 5px;
    text-transform: uppercase;
}

.page-not-found .eyebrow span {
    margin: 0 4px;

    color: var(--gold);
}


/* 404 */

.error-number {
    margin-bottom: 5px;

    font-family: var(--serif);

    font-size: clamp(7rem, 18vw, 13rem);
    font-weight: 500;

    line-height: .75;

    letter-spacing: 5px;

    color: transparent;

    -webkit-text-stroke: 1px rgba(178, 138, 74, .55);

    opacity: .85;
}


/* Heading */

.page-not-found h1 {
    margin-top: 20px;

    color: var(--text-dark);

    font-family: var(--serif);

    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 500;

    line-height: 1.05;

    letter-spacing: 7px;

    text-transform: uppercase;
}


/* Description */

.page-not-found .hero-description {
    max-width: 560px;

    margin: 25px auto 35px;

    color: var(--text-muted);

    font-family: var(--sans);

    font-size: 12px;
    font-weight: 300;

    line-height: 2;

    letter-spacing: .6px;
}


/* Back Home */

.back-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    min-width: 180px;

    padding: 14px 22px;

    border: 1px solid var(--gold-border);

    color: var(--gold-dark);

    background: rgba(255,255,255,.65);

    font-family: var(--sans);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.back-home:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: #fff;

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(178,138,74,.18);
}


.back-arrow {
    font-size: 15px;

    transition: transform .3s ease;
}


.back-home:hover .back-arrow {
    transform: translateX(5px);
}


/* Mobile */

@media (max-width: 900px) {

    .page-not-found {
        min-height: calc(100svh - 125px);

        padding: 90px 20px 70px;
    }

    .page-not-found::before {
        inset: 15px;
    }

    .page-not-found::after {
        width: 280px;
        height: 280px;
    }

    .page-not-found .eyebrow {
        font-size: 8px;
        letter-spacing: 4px;
    }

    .error-number {
        font-size: clamp(6rem, 30vw, 9rem);
    }

    .page-not-found h1 {
        font-size: clamp(1.7rem, 8vw, 2.5rem);

        letter-spacing: 4px;
    }

    .page-not-found .hero-description {
        max-width: 330px;

        font-size: 11px;
        line-height: 1.9;
    }

    .back-home {
        min-width: 170px;
        padding: 13px 18px;
    }
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {

    .back-home,
    .back-arrow {
        transition: none;
    }

}
/* =======================================================
   KAU·ASIA
   PRODUCT COLLECTION
======================================================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}


/* =======================================================
   CARD
======================================================= */

.product-card {
    position: relative;

    display: block !important;

    width: 100%;
    height: auto !important;
    min-height: 0 !important;

    background: #fff;

    border: 1px solid rgba(36, 35, 31, .08);

    overflow: hidden;

    box-sizing: border-box;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


.product-card:hover {
    transform: translateY(-5px);

    border-color: rgba(178, 138, 74, .22);

    box-shadow:
        0 20px 50px rgba(35, 31, 24, .09);
}


/* =======================================================
   IMAGE
======================================================= */

.product-image {
    position: relative;

    width: 100%;

    aspect-ratio: 3 / 4;

    overflow: hidden;

    background: #f1eee8;
}


.product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.8,.2,1);
}


.product-card:hover .product-image img {
    transform: scale(1.035);
}


/* =======================================================
   BADGE
======================================================= */

.product-badge {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 5;

    display: inline-block;

    padding: 7px 10px;

    background: rgba(255, 255, 255, .88);

    color: var(--gold-dark);

    font-family: var(--sans);

    font-size: 7px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    backdrop-filter: blur(8px);
}


/* =======================================================
   QUICK VIEW
======================================================= */

.quick-view {
    position: absolute;

    right: 14px;
    bottom: 14px;

    z-index: 5;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;
    margin: 0;

    border: 1px solid rgba(255, 255, 255, .7);

    border-radius: 50%;

    background: rgba(255, 255, 255, .92);

    color: var(--text-dark);

    font-family: var(--sans);

    font-size: 18px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity .3s ease,
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}


.product-card:hover .quick-view {
    opacity: 1;

    transform: translateY(0);
}


.quick-view:hover {
    background: var(--gold);

    color: #fff;
}


/* =======================================================
   PRODUCT INFO
======================================================= */

.product-info {
    display: block !important;

    width: 100%;

    height: auto !important;
    min-height: 0 !important;

    padding: 22px 20px 20px;

    box-sizing: border-box;

    background: #fff;
}


/* =======================================================
   CATEGORY
======================================================= */

.product-category {
    display: block;

    margin: 0 0 7px;

    color: var(--gold-dark);

    font-family: var(--sans);

    font-size: 8px;
    font-weight: 600;

    line-height: 1.2;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =======================================================
   PRODUCT NAME
======================================================= */

.product-name {
    display: block !important;

    width: 100%;

    margin: 0;

    color: var(--text-dark);

    font-family: var(--serif);

    font-size: 25px;
    font-weight: 500;

    line-height: 1.08;

    letter-spacing: .1px;
}


/* =======================================================
   PRICE
======================================================= */

.product-price {
    display: block !important;

    width: 100%;

    margin-top: 9px;

    color: var(--text-main);

    font-family: var(--sans);

    font-size: 11px;
    font-weight: 500;

    line-height: 1.4;

    letter-spacing: .4px;
}


/* =======================================================
   PRODUCT OPTION
======================================================= */

.product-option {
    display: block !important;

    width: 100%;

    margin-top: 19px;

    padding-top: 14px;

    border-top: 1px solid rgba(36, 35, 31, .07);

    box-sizing: border-box;
}


/* =======================================================
   OPTION LABEL
======================================================= */

.option-label {
    display: flex !important;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    margin: 0 0 10px;

    color: var(--text-muted);

    font-family: var(--sans);

    font-size: 8px;

    font-weight: 500;

    line-height: 1.2;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.selected-color,
.selected-size {
    color: var(--text-dark);

    font-weight: 600;

    text-align: right;
}


/* =======================================================
   COLOR
======================================================= */

.color-options {
    display: flex !important;

    align-items: center;

    gap: 9px;

    width: 100%;
}


.color-swatch {
    position: relative;

    flex: 0 0 auto;

    width: 21px;
    height: 21px;

    padding: 0;
    margin: 0;

    border: 1px solid rgba(36, 35, 31, .15);

    border-radius: 50%;

    background: var(--swatch);

    cursor: pointer;

    box-sizing: border-box;

    transition:
        transform .25s ease,
        border-color .25s ease;
}


.color-swatch:hover {
    transform: scale(1.1);
}


.color-swatch.active {
    border-color: var(--gold-dark);
}


.color-swatch.active::after {
    content: "";

    position: absolute;

    inset: -4px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    pointer-events: none;
}


/* =======================================================
   SIZE
======================================================= */

.size-options {
    display: flex !important;

    align-items: center;

    flex-wrap: wrap;

    gap: 6px;

    width: 100%;
}


.size-option {
    flex: 0 0 auto;

    min-width: 38px;
    height: 30px;

    padding: 0 9px;

    border: 1px solid rgba(36, 35, 31, .12);

    background: #fff;

    color: var(--text-muted);

    font-family: var(--sans);

    font-size: 8px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 1px;

    cursor: pointer;

    box-sizing: border-box;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.size-option:hover {
    border-color: var(--gold);

    color: var(--gold-dark);
}


.size-option.active {
    border-color: var(--gold-dark);

    background: var(--gold-dark);

    color: #fff;
}


/* =======================================================
   ADD TO BAG
======================================================= */

.add-to-bag {
    display: flex !important;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    height: auto;

    margin: 20px 0 0;

    padding: 14px 0;

    border: 0;

    border-top: 1px solid rgba(36, 35, 31, .1);

    background: transparent;

    color: var(--text-dark);

    font-family: var(--sans);

    font-size: 8px;

    font-weight: 600;

    line-height: 1;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    box-sizing: border-box;

    transition:
        color .25s ease,
        padding-left .25s ease;
}


.add-to-bag:hover {
    color: var(--gold-dark);

    padding-left: 4px;
}


.add-to-bag span:last-child {
    font-size: 14px;

    line-height: 1;

    transition:
        transform .25s ease;
}


.add-to-bag:hover span:last-child {
    transform: translateX(5px);
}


/* =======================================================
   RESPONSIVE
======================================================= */

@media (max-width: 1100px) {

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .product-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .product-name {
        font-size: 23px;
    }

}


@media (max-width: 480px) {

    .product-info {
        padding: 19px 17px 18px;
    }

    .product-name {
        font-size: 22px;
    }

}

/* =======================================================
   PRODUCT IMAGE SLIDER
======================================================= */

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f1eee8;
}


/* SLIDER */

.product-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* SLIDE */

.product-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.02);

    transition:
        opacity .45s ease,
        visibility .45s ease,
        transform .7s cubic-bezier(.2,.8,.2,1);
}


.product-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}


/* IMAGE */

.product-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =======================================================
   ARROWS
======================================================= */

.slider-arrow {
    position: absolute;

    top: 50%;
    z-index: 8;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%;

    background: rgba(255,255,255,.88);

    color: var(--text-dark);

    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    opacity: 0;

    transform: translateY(-50%);

    transition:
        opacity .3s ease,
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


.slider-prev {
    left: 14px;
}


.slider-next {
    right: 14px;
}


/* SHOW ARROWS */

.product-image:hover .slider-arrow {
    opacity: 1;
}


.slider-arrow:hover {
    background: var(--gold);
    color: #fff;
}


.slider-prev:hover {
    transform: translate(-2px, -50%);
}


.slider-next:hover {
    transform: translate(2px, -50%);
}


/* =======================================================
   DOTS
======================================================= */

.slider-dots {
    position: absolute;

    left: 50%;
    bottom: 15px;

    z-index: 8;

    display: flex;
    align-items: center;

    gap: 6px;

    transform: translateX(-50%);
}


.slider-dot {
    width: 5px;
    height: 5px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.65);

    cursor: pointer;

    transition:
        width .25s ease,
        background .25s ease,
        opacity .25s ease;
}


.slider-dot.active {
    width: 18px;

    border-radius: 10px;

    background: #fff;
}


/* =======================================================
   MOBILE
======================================================= */

@media (max-width: 700px) {

    .slider-arrow {
        width: 34px;
        height: 34px;

        font-size: 22px;

        opacity: 1;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

}
/* =======================================================
   COLOR SWATCH - OUT OF STOCK
======================================================= */

.color-swatch.out-of-stock {
    position: relative;

    opacity: .45;

    cursor: not-allowed;

    /* warna tetap terlihat */
    filter: grayscale(10%);

    /* tanda silang */
    background:
        linear-gradient(
            45deg,
            transparent 45%,
            rgba(255, 255, 255, .95) 46%,
            rgba(255, 255, 255, .95) 54%,
            transparent 55%
        ),
        linear-gradient(
            -45deg,
            transparent 45%,
            rgba(255, 255, 255, .95) 46%,
            rgba(255, 255, 255, .95) 54%,
            transparent 55%
        ),
        var(--swatch);

    background-size: 100% 100%;
}


/* jangan membesar ketika hover */

.color-swatch.out-of-stock:hover {
    transform: none;

    border-color: rgba(36, 35, 31, .15);
}


/* pastikan tidak dianggap active */

.color-swatch.out-of-stock.active {
    border-color: rgba(36, 35, 31, .15);
}
.product-slide {
    position: absolute;
    inset: 0;
}

.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OUT OF STOCK DI ATAS GAMBAR */
.slide-stock-badge {
    position: absolute;
    bottom: 32px;
    left: 16px;
    z-index: 5;

    padding: 7px 11px;

    background: rgba(35, 34, 30, .82);
    color: #fff;

    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;

    border: 1px solid rgba(255,255,255,.25);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.product-price-discount {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 8px;
}

.price-current {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: .02em;
}

.price-original {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.price-discount {
    display: inline-flex;
    align-items: center;
    padding: 4px 7px;

    background: rgba(170, 146, 114, .12);
    color: var(--gold-dark);

    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .1em;
}
.size-option {
    position: relative;
    min-width: 42px;
    min-height: 36px;
    padding: 0 10px;

    border: 1px solid rgba(36, 35, 31, .18);
    background: transparent;
    color: var(--text-dark);

    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .08em;

    cursor: pointer;
    transition: .25s ease;
    text-transform: uppercase;
}

.size-option:hover {
    border-color: var(--gold);
}

.size-option.active {
    border-color: var(--gold-dark);
    background: var(--gold-dark);
    color: #fff;
}


/* SIZE OUT OF STOCK */
.size-option.out-of-stock {
    cursor: not-allowed;
    opacity: .45;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.size-option.out-of-stock:hover {
    border-color: rgba(36, 35, 31, .18);
    background: transparent;
    color: var(--text-dark);
}


/* Label kecil */
.size-option.out-of-stock small {
    position: absolute;
    left: 50%;
    bottom: -17px;

    transform: translateX(-50%);

    width: max-content;

    font-family: var(--sans);
    font-size: 7px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;

    color: var(--text-muted);
    text-decoration: none;
}

/* =======================================================
   PRODUCT DETAIL MODAL
======================================================= */

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}


/* BACKDROP */

.product-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(20, 18, 15, .58);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* DIALOG */

.product-modal-dialog {
    position: relative;

    width: min(1080px, 100%);
    max-height: 90vh;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #faf8f4;

    overflow: hidden;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, .25);

    transform:
        translateY(25px)
        scale(.97);

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1);
}

.product-modal.active .product-modal-dialog {
    transform:
        translateY(0)
        scale(1);
}


/* CLOSE */

.product-modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    z-index: 10;

    border: 1px solid rgba(0,0,0,.12);

    background: rgba(250,248,244,.9);

    color: #181715;

    font-size: 25px;
    font-weight: 300;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background .2s ease,
        transform .2s ease;
}

.product-modal-close:hover {
    background: #181715;
    color: #fff;

    transform: rotate(90deg);
}


/* IMAGE */

.product-modal-media {
    position: relative;

    min-height: 650px;

    background: #eee9e1;

    overflow: hidden;
}

.product-modal-media img {
    width: 100%;
    height: 100%;

    min-height: 650px;

    object-fit: cover;

    display: block;

    transition:
        opacity .3s ease,
        transform .8s ease;
}

.product-modal.active .product-modal-media img {
    transform: scale(1.01);
}


/* COUNTER */

.modal-image-counter {
    position: absolute;

    left: 28px;
    bottom: 25px;

    font-size: 10px;

    letter-spacing: .18em;

    text-transform: uppercase;

    color: #fff;

    background: rgba(20,18,15,.55);

    padding: 9px 12px;
}


/* CONTENT */

.product-modal-content {
    padding: 65px 55px 45px;

    overflow-y: auto;

    display: flex;
    flex-direction: column;
}


/* CATEGORY */

.modal-product-category {
    margin-bottom: 13px;

    font-size: 10px;

    letter-spacing: .22em;

    text-transform: uppercase;

    color: #8b8175;
}


/* NAME */

.modal-product-name {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(30px, 3vw, 44px);

    line-height: 1.08;

    font-weight: 400;

    letter-spacing: -.025em;

    color: #181715;
}


/* PRICE */

.modal-product-price {
    margin-top: 23px;

    display: flex;
    align-items: center;
    gap: 12px;

    flex-wrap: wrap;
}

.modal-price-current {
    font-size: 17px;

    font-weight: 500;

    color: #181715;
}

.modal-price-original {
    font-size: 13px;

    color: #9b948c;

    text-decoration: line-through;
}

.modal-price-discount {
    font-size: 9px;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: #8b2929;
}


/* DIVIDER */

.modal-divider {
    height: 1px;

    background: rgba(0,0,0,.1);

    margin: 30px 0;
}


/* DESCRIPTION */

.modal-description {
    margin-bottom: 28px;
}

.modal-description p {
    margin: 0;

    font-size: 13px;

    line-height: 1.8;

    color: #6f6962;

    max-width: 430px;
}


/* OPTIONS */

.modal-option {
    margin-bottom: 25px;
}

.modal-option-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 13px;

    font-size: 10px;

    letter-spacing: .15em;

    text-transform: uppercase;
}

.modal-option-header span {
    color: #8b8175;
}

.modal-option-header strong {
    font-weight: 500;

    color: #181715;
}


/* COLORS */

.modal-color-options {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}

.modal-color-button {
    width: 30px;
    height: 30px;

    border-radius: 50%;

    border: 1px solid rgba(0,0,0,.15);

    background: var(--swatch);

    cursor: pointer;

    position: relative;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        opacity .2s ease;
}

.modal-color-button:hover {
    transform: scale(1.08);
}

.modal-color-button.active {
    box-shadow:
        0 0 0 1px #181715,
        0 0 0 4px #faf8f4;
}

.modal-color-button.out-of-stock {
    opacity: .3;

    cursor: not-allowed;
}

.modal-color-button.out-of-stock::after {
    content: "";

    position: absolute;

    width: 135%;
    height: 1px;

    background: #181715;

    left: -17%;
    top: 50%;

    transform: rotate(-45deg);
}


/* SIZE */

.modal-size-options {
    display: flex;

    gap: 7px;

    flex-wrap: wrap;
}

.modal-size-button {
    min-width: 48px;

    padding: 12px 14px;

    border: 1px solid rgba(0,0,0,.14);

    background: transparent;

    color: #292723;

    font-size: 11px;

    letter-spacing: .08em;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
    text-transform: uppercase;
}

.modal-size-button:hover {
    border-color: #181715;
}

.modal-size-button.active {
    background: #181715;

    color: #fff;

    border-color: #181715;
}

.modal-size-button.out-of-stock {
    opacity: .3;

    text-decoration: line-through;

    cursor: not-allowed;
    border-color: rgba(36, 35, 31, .18);
}
.modal-size-button.out-of-stock:hover {

}


/* DETAILS */

.modal-details {
    margin-top: 5px;

    border-top: 1px solid rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(0,0,0,.08);

    padding: 18px 0;

    display: grid;

    gap: 13px;
}

.modal-details div {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-size: 10px;

    letter-spacing: .08em;
}

.modal-details span {
    color: #958c82;
}

.modal-details strong {
    font-weight: 400;

    color: #292723;

    text-align: right;
}


/* ADD TO BAG */

.modal-add-to-bag {
    width: 100%;

    margin-top: 25px;

    min-height: 55px;

    border: none;

    background: #181715;

    color: #fff;

    padding: 0 22px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 10px;

    letter-spacing: .17em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;
}

.modal-add-to-bag:hover {
    background: #34312d;

    transform: translateY(-2px);
}

.modal-add-to-bag:disabled {
    background: #b3ada5;

    cursor: not-allowed;

    transform: none;
}


/* NOTE */

.modal-note {
    margin-top: 13px;

    text-align: center;

    font-size: 9px;

    letter-spacing: .08em;

    color: #9a9289;
}


/* BODY LOCK */

body.product-modal-open {
    overflow: hidden;
}
/* =======================================================
   MODAL RESPONSIVE
======================================================= */

@media (max-width: 800px) {

    .product-modal {
        padding: 15px;
    }

    .product-modal-dialog {
        grid-template-columns: 1fr;

        max-height: 94vh;

        overflow-y: auto;
    }

    .product-modal-media {
        min-height: 380px;

        height: 48vh;
    }

    .product-modal-media img {
        min-height: 380px;
    }

    .product-modal-content {
        padding: 38px 25px 30px;

        overflow: visible;
    }

    .product-modal-close {
        top: 12px;
        right: 12px;

        width: 38px;
        height: 38px;
    }

    .modal-product-name {
        font-size: 30px;
    }

}


@media (max-width: 480px) {

    

    .product-modal-dialog {
        width: 100%;

        max-height: 95vh;

        min-height: 95vh;
    }

    .product-modal-media {
        height: 48vh;

        min-height: 300px;
    }

    .product-modal-media img {
        min-height: 300px;
    }

    .product-modal-content {
        padding: 32px 20px 25px;
    }

    .modal-product-name {
        font-size: 27px;
    }

}
/* =====================================================
   ELEGANT PAGE LOADER
===================================================== */

#main-content {
    position: relative;
}

/* Overlay hanya area content */
.page-loader-index {
    position: absolute;
    inset: 0;
    z-index: 100;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(250, 248, 245, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    opacity: 0;
    transition: opacity .3s ease;
}

.page-loader-index.is-loading {
    display: flex;
    opacity: 1;
}

/* Inner */
.page-loader-inner {
    width: min(280px, 80%);
    text-align: center;
}

/* Brand */
.page-loader-brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .18em;
    color: #1c1b19;
    margin-bottom: 24px;
}

.page-loader-brand span {
    margin: 0 3px;
}

/* Loading line */
.page-loader-line {
    position: relative;
    width: 100%;
    height: 1px;
    overflow: hidden;
    background: rgba(28, 27, 25, .12);
}

.page-loader-line span {
    position: absolute;
    top: 0;
    left: -35%;
    width: 35%;
    height: 1px;

    background: #1c1b19;

    animation: kauLoaderLine 1.25s
        cubic-bezier(.65, 0, .35, 1)
        infinite;
}

@keyframes kauLoaderLine {

    0% {
        left: -35%;
    }

    50% {
        left: 45%;
    }

    100% {
        left: 100%;
    }
}

/* Text */
.page-loader-text {
    margin-top: 14px;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 10px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: rgba(28, 27, 25, .55);
}


/* =====================================================
   LOADING STATE
===================================================== */

#main-content.is-loading {
    pointer-events: none;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .page-loader-index {
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .page-loader-inner {
        width: 220px;
    }

    .page-loader-brand {
        font-size: 17px;
        margin-bottom: 20px;
    }

}
.page-load-error {
    min-height: 320px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 40px;
}

.page-load-error-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    color: #1c1b19;
    margin-bottom: 10px;
}

.page-load-error-text {
    font-size: 13px;
    color: #777;
    margin-bottom: 24px;
}

.page-load-error button {
    border: 1px solid #1c1b19;
    background: transparent;

    padding: 11px 24px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease;
}

.page-load-error button:hover {
    background: #1c1b19;
    color: #fff;
}

/* =======================================================
   BRAND STORY / CRAFTSMANSHIP (LUXURY STYLE)
======================================================= */
.brand-story-section {
    padding: 120px 24px;
    background-color: #faf9f6; /* Off-white luxury background */
    color: #111111;
    overflow: hidden;
}

.story-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .story-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
    }
}

/* Media/Image Grid */
.story-media {
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.story-image-wrapper {
    overflow: hidden;
    background-color: #e5e5e5;
}

.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-media:hover .story-image-wrapper img {
    transform: scale(1.04);
}

.story-image-wrapper.primary {
    width: 78%;
    height: 520px;
}

.story-image-wrapper.secondary {
    position: absolute;
    right: 0;
    bottom: -40px;
    width: 42%;
    height: 320px;
    border: 8px solid #faf9f6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.story-experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: #111111;
    color: var(--gold-light, #f3e5ab);
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.badge-number {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
    color: #ffffff;
}

/* Text Content */
.story-content {
    padding-right: 20px;
}

.story-title {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 12px;
    margin-bottom: 24px;
    color: #111111;
}

.story-title span {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-dark, #aa7c11);
}

.story-divider {
    width: 50px;
    height: 1px;
    background-color: var(--gold-border, #d4af37);
    margin-bottom: 28px;
}

.story-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 16px;
    font-weight: 300;
}

.story-subtext {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Pillars / Features */
.story-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 32px;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--gold-dark, #aa7c11);
    font-style: italic;
    line-height: 1;
}

.pillar-info h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111111;
}

.pillar-info p {
    font-size: 12px;
    color: #777777;
    line-height: 1.5;
}

/* Responsive Handling */
@media (max-width: 768px) {
    .brand-story-section {
        padding: 60px 20px;
    }

    .story-media {
        margin-bottom: 30px; /* Memberi jarak ke teks di bawahnya */
    }

    .story-image-wrapper.primary {
        width: 85%;
        height: 320px;
    }

    /* Tetap tampilkan gambar ke-2 dengan penyesuaian ukuran */
    .story-image-wrapper.secondary {
        display: block; 
        width: 45%;
        height: 200px;
        bottom: -20px;
        border-width: 4px;
    }

    .story-experience-badge {
        left: 0;
        top: 10px;
        padding: 10px 14px;
    }

    .badge-number {
        font-size: 18px;
    }

    .badge-text {
        font-size: 8px;
    }

    .story-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* =========================================
   KAU·ASIA FOOTER
========================================= */

.site-footer {
    position: relative;
    background: #f4f1ec;
    color: #1c1b19;
    padding: 90px 7vw 30px;
}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    display: grid;
    grid-template-columns:
        1.7fr
        1fr
        1fr
        1fr
        1.5fr;

    gap: 55px;
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================================
   BRAND
========================================= */

.footer-logo {
    display: inline-block;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;
    font-weight: 500;

    letter-spacing: .18em;

    color: #1c1b19;
    text-decoration: none;

    margin-bottom: 18px;
}

.footer-logo span {
    margin: 0 3px;
}


.footer-tagline {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
    font-style: italic;

    color: #5f5b55;

    margin-bottom: 18px;
}


.footer-description {
    max-width: 300px;

    font-size: 12px;
    line-height: 1.9;

    color: #77716a;

    letter-spacing: .02em;
}


/* =========================================
   COLUMN
========================================= */

.footer-column h4 {
    margin: 3px 0 23px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .18em;
    text-transform: uppercase;

    color: #2a2825;
}
.footer-column-service {
    }

/* =========================================
   LINKS
========================================= */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links a {
    position: relative;

    width: fit-content;

    color: #77716a;
    text-decoration: none;

    font-size: 12px;

    transition:
        color .25s ease,
        transform .25s ease;
}

.footer-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 0;
    height: 1px;

    background: #1c1b19;

    transition: width .3s ease;
}

.footer-links a:hover {
    color: #1c1b19;
    transform: translateX(2px);
}

.footer-links a:hover::after {
    width: 100%;
}


/* =========================================
   NEWSLETTER
========================================= */

.footer-newsletter p {
    max-width: 270px;

    font-size: 12px;
    line-height: 1.8;

    color: #77716a;

    margin-bottom: 22px;
}


.newsletter-form {
    display: flex;

    width: 100%;
    max-width: 300px;

    border-bottom: 1px solid #aaa49c;
}


.newsletter-form input {
    flex: 1;

    min-width: 0;

    border: 0;
    outline: 0;

    background: transparent;

    padding: 11px 5px;

    font-family: inherit;
    font-size: 11px;

    color: #1c1b19;
}


.newsletter-form input::placeholder {
    color: #99938b;
}


.newsletter-form button {
    width: 40px;

    border: 0;
    background: transparent;

    color: #1c1b19;

    font-size: 18px;

    cursor: pointer;

    transition:
        transform .25s ease,
        opacity .25s ease;
}

.newsletter-form button:hover {
    transform: translateX(4px);
    opacity: .6;
}


/* =========================================
   DIVIDER
========================================= */

.footer-divider {
    width: 100%;
    height: 1px;

    background: rgba(28, 27, 25, .12);

    margin: 70px auto 25px;
}


/* =========================================
   KAU·ASIA FOOTER BOTTOM
   VERTICAL LAYOUT
========================================= */

.site-footer .footer-bottom {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 14px;

    text-align: center;
}


/* COPYRIGHT */

.site-footer .footer-copyright {
    order: 1;

    display: block;

    font-size: 10px;
    line-height: 1.5;

    letter-spacing: .06em;

    color: #8a847d;

    text-align: center;
}


/* PRIVACY / TERMS */

.site-footer .footer-legal {
    order: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 25px;

    width: 100%;
}


.site-footer .footer-legal a {
    display: inline-block;

    font-size: 10px;
    line-height: 1.5;

    letter-spacing: .08em;

    color: #77716a;

    text-decoration: none;

    transition:
        color .25s ease,
        opacity .25s ease;
}


.site-footer .footer-legal a:hover {
    color: #1c1b19;
}


/* INSTAGRAM / JOURNAL / STORES */

.site-footer .footer-social {
    order: 3;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 24px;

    width: 100%;
}


.site-footer .footer-social a {
    display: inline-block;

    font-size: 10px;
    line-height: 1.5;

    letter-spacing: .08em;

    color: #77716a;

    text-decoration: none;

    transition:
        color .25s ease,
        opacity .25s ease;
}


.site-footer .footer-social a:hover {
    color: #1c1b19;
}
/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .footer-main {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 50px 35px;
    }

    .footer-newsletter {
        grid-column: span 2;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .site-footer {
        padding:
            65px 25px 25px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 45px 25px;
    }

    .footer-brand-column {
        grid-column: span 2;
    }

    .footer-newsletter {
        grid-column: span 2;
    }

    .footer-logo {
        font-size: 23px;
    }

    .footer-divider {
        margin-top: 55px;
    }

    .footer-legal {
        order: 2;
    }

    .footer-social {
        order: 3;

        justify-content: center;

        flex-wrap: wrap;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 700px) {

    /* Semua isi footer rata tengah */
    .site-footer {
        text-align: center;
    }

    /* Brand */
    .footer-brand-column {
        text-align: center;
    }

    .footer-logo {
        display: inline-block;
    }

    .footer-tagline,
    .footer-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Kolom footer */
    .footer-column {
        text-align: center;
    }

    .footer-column-service {
        grid-column: span 2;
    }

    .footer-column h4 {
        text-align: center;
    }

    /* Link */
    .footer-links {
        align-items: center;
        text-align: center;
    }

    .footer-links a {
        text-align: center;
    }

    /* Newsletter */
    .footer-newsletter {
        text-align: center;
    }

    .footer-newsletter p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-form {
        margin-left: auto;
        margin-right: auto;
    }

    /* Footer bottom */
    .footer-bottom {
        text-align: center;
        align-items: center;
    }

    .footer-copyright,
    .footer-legal,
    .footer-social {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
}
/* =======================================================
   EDITOR'S PICKS
======================================================= */

.editors-picks-section {
    padding: 130px 0;
    background: #f7f5f1;
    border-top: 1px solid #e8e4de;
}

.editors-picks-container {
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
}

.editors-picks-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 55px;
}

.editors-picks-title {
    margin: 14px 0 0;
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 500;
    letter-spacing: .12em;
    line-height: 1;
    color: #20201e;
}

.editors-picks-intro {
    max-width: 300px;
    margin: 0;
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: .04em;
    color: #77736d;
}


/* GRID */

.editors-picks-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 28px;
    align-items: stretch;
}


/* FEATURED */

.editor-featured-card {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.editor-featured-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.editor-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.editor-featured-card:hover .editor-featured-image img {
    transform: scale(1.035);
}

.editor-featured-label {
    position: absolute;
    top: 22px;
    left: 22px;
    padding: 9px 14px;
    background: rgba(255,255,255,.94);
    color: #292824;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.editor-featured-info {
    padding: 30px 32px 34px;
}

.editor-product-category {
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #918b82;
}

.editor-featured-info h3,
.editor-selection-info h3 {
    margin: 0;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: .02em;
    color: #24231f;
}

.editor-featured-info p {
    max-width: 350px;
    margin: 14px 0 24px;
    font-size: 13px;
    line-height: 1.8;
    color: #77736d;
}


/* BUTTON */

.editor-view-product,
.editor-selection-link {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    border: 0;
    background: none;
    color: #24231f;
    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
}

.editor-view-product span:last-child,
.editor-selection-link span {
    font-size: 17px;
    font-weight: 400;
    transition: transform .3s ease;
}

.editor-view-product:hover span:last-child,
.editor-selection-link:hover span {
    transform: translateX(5px);
}


/* SELECTION LIST */

.editor-selection-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.editor-selection-card {
    display: grid;
    grid-template-columns: 40% 1fr;
    min-height: 260px;
    background: #fff;
    overflow: hidden;
}

.editor-selection-image {
    overflow: hidden;
}

.editor-selection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.editor-selection-card:hover .editor-selection-image img {
    transform: scale(1.04);
}

.editor-selection-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
}

.editor-selection-info h3 {
    font-size: 19px;
}

.editor-selection-info p {
    margin: 12px 0 22px;
    font-size: 12px;
    line-height: 1.8;
    color: #77736d;
}

.editor-selection-link {
    margin-top: auto;
    align-self: flex-start;
}


/* TABLET */

@media (max-width: 900px) {

    .editors-picks-section {
        padding: 90px 0;
    }

    .editors-picks-container {
        width: min(100% - 48px, 700px);
    }

    .editors-picks-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .editor-featured-image {
        aspect-ratio: 16 / 10;
    }

    .editor-selection-card {
        min-height: 240px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .editors-picks-section {
        padding: 75px 0;
    }

    .editors-picks-container {
        width: calc(100% - 36px);
    }

    .editors-picks-heading {
        display: block;
        margin-bottom: 35px;
    }

    .editors-picks-title {
        font-size: 30px;
        letter-spacing: .08em;
    }

    .editors-picks-intro {
        max-width: 260px;
        margin-top: 20px;
    }

    .editor-featured-image {
        aspect-ratio: 4 / 5;
    }

    .editor-featured-info {
        padding: 25px 22px 28px;
    }

    .editor-featured-info h3 {
        font-size: 21px;
    }

    .editor-selection-list {
        gap: 18px;
    }

    .editor-selection-card {
        grid-template-columns: 38% 1fr;
        min-height: 190px;
    }

    .editor-selection-info {
        padding: 20px;
    }

    .editor-selection-info h3 {
        font-size: 16px;
        line-height: 1.4;
    }

    .editor-selection-info p {
        margin: 9px 0 15px;
        font-size: 11px;
    }

    .editor-product-category {
        font-size: 9px;
        margin-bottom: 9px;
    }

    .editor-selection-link {
        font-size: 9px;
    }

}
/* =====================================================
   BEST SELLERS
===================================================== */

.best-sellers {
    position: relative;
    padding: 150px 7vw 130px;
    background: #f3f0ea;
    color: #1e1d1a;
    overflow: hidden;
}


/* HEADING */

.best-sellers-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 70px;
}

.section-eyebrow {
    display: block;
    margin-bottom: 24px;
    color: #8d857a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.best-sellers-heading h2 em {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.08em;
}

.best-sellers-intro {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 250px;
    margin-bottom: 5px;
}

.best-sellers-line {
    width: 32px;
    height: 1px;
    flex: 0 0 32px;
    margin-top: 9px;
    background: #a69e92;
}

.best-sellers-intro p {
    margin: 0;
    color: #81796e;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.02em;
}


/* GRID */

.best-sellers-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}


/* IMAGE */

.best-seller-image-wrap {
    position: relative;
    aspect-ratio: 0.78;
    overflow: hidden;
    background: #ded9d0;
}

.best-seller-featured .best-seller-image-wrap {
    aspect-ratio: 0.82;
}

.best-seller-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(.2,.65,.2,1);
}

.best-seller-featured:hover .best-seller-image,
.best-seller-card:hover .best-seller-image {
    transform: scale(1.045);
}


/* NUMBER */

.best-seller-number {
    position: absolute;
    top: 22px;
    left: 24px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-style: italic;
    letter-spacing: 0.04em;
}


/* VIEW BUTTON */

.best-seller-view {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(30, 29, 26, 0.18);
    color: #fff;
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-family: inherit;
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        background 0.35s ease;
}

.best-seller-featured:hover .best-seller-view,
.best-seller-card:hover .best-seller-view,
.best-seller-view:focus-visible {
    opacity: 1;
    transform: translateY(0);
}

.best-seller-view:hover {
    background: #fff;
    color: #1e1d1a;
}

.best-seller-arrow {
    font-size: 16px;
    line-height: 1;
}


/* PRODUCT INFO */

.best-seller-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding-top: 22px;
}

.best-seller-category {
    display: block;
    margin-bottom: 11px;
    color: #999084;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.best-seller-info h3 {
    margin: 0;
    color: #27241f;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.best-seller-price {
    flex-shrink: 0;
    color: #777066;
    font-size: 11px;
    line-height: 1.4;
    white-space: nowrap;
}


/* FOOTER */

.best-sellers-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 72px;
    padding-top: 25px;
    border-top: 1px solid #d8d2c8;
}

.best-sellers-footer p {
    margin: 0;
    color: #948b7f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-style: italic;
}

.best-sellers-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #292720;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-decoration: none;
    text-transform: uppercase;
}

.best-sellers-link span {
    font-size: 17px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.best-sellers-link:hover span {
    transform: translate(4px, -4px);
}


/* TABLET */

@media (max-width: 900px) {

    .best-sellers {
        padding: 100px 5vw 90px;
    }

    .best-sellers-heading {
        margin-bottom: 50px;
    }

    .best-sellers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 18px;
    }

    .best-seller-featured {
        grid-column: 1 / -1;
    }

    .best-seller-featured .best-seller-image-wrap {
        aspect-ratio: 1.35;
    }

    .best-seller-view {
        opacity: 1;
        transform: none;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .best-sellers {
        padding: 82px 20px 75px;
    }

    .best-sellers-heading {
        display: block;
        margin-bottom: 42px;
    }

    .best-sellers-heading h2 {
        font-size: clamp(50px, 1vw, 78px);
    }

    .best-sellers-intro {
        margin-top: 30px;
        max-width: 280px;
    }

    .best-sellers-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .best-seller-featured {
        grid-column: auto;
    }

    .best-seller-featured .best-seller-image-wrap,
    .best-seller-image-wrap {
        aspect-ratio: 0.86;
    }

    .best-seller-number {
        top: 18px;
        left: 18px;
    }

    .best-seller-view {
        right: 14px;
        bottom: 14px;
        padding: 12px 14px;
    }

    .best-seller-info {
        padding-top: 17px;
    }

    .best-seller-info h3 {
        font-size: 15px;
    }

    .best-seller-price {
        font-size: 10px;
    }

    .best-sellers-footer {
        display: block;
        margin-top: 55px;
    }

    .best-sellers-link {
        margin-top: 25px;
    }

}
.editor-featured-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.editor-product-category {
    margin-bottom: 12px;
}

.editor-featured-info h3 {
    margin-bottom: 12px;
}

.editor-featured-info p {
    margin-bottom: 20px;
}

.editor-view-product {
    margin-top: auto;
}
.editor-featured-card {
    display: flex;
    height: 100%;
}

.editor-featured-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.editor-view-product {
    margin-top: auto;
}

/* =======================================================
   EDITOR / BEST SELLER OPTIONS
======================================================= */

.editor-product-options,
.best-seller-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.editor-option-row,
.best-seller-option-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.editor-option-label,
.best-seller-option-label {
    min-width: 42px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
}

/* COLOR */

.editor-color-options,
.best-seller-color-options {
    display: flex;
    align-items: center;
    gap: 7px;
}

.editor-color-swatch,
.best-seller-color-swatch {
    width: 17px;
    height: 17px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.18);
    background: var(--swatch);
    cursor: pointer;
    position: relative;
    transition: .25s ease;
}

.editor-color-swatch:hover,
.best-seller-color-swatch:hover {
    transform: scale(1.12);
}

.editor-color-swatch.active::after,
.best-seller-color-swatch.active::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid #222;
    border-radius: 50%;
}

/* SIZE */

.editor-size-options,
.best-seller-size-options {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.editor-size-option,
.best-seller-size-option {
    min-width: 30px;
    height: 27px;
    padding: 0 7px;
    border: 1px solid #ddd;
    background: transparent;
    font-size: 10px;
    letter-spacing: .08em;
    cursor: pointer;
    transition: .25s ease;
    text-transform: uppercase;
}


/* HANYA SIZE YANG DIPILIH */
.editor-size-option.active,
.best-seller-size-option.active {
    background: #222;
    color: #fff;
    border-color: #222;
}

/* HOVER TIDAK BOLEH TERLIHAT SEPERTI ACTIVE */
.editor-size-option:hover:not(.active),
.best-seller-size-option:hover:not(.active) {
    background: #f7f7f7;
    color: #222;
    border-color: rgba(36, 35, 31, .18);
}

/* DISABLED */

.editor-size-option.disabled,
.best-seller-size-option.disabled,
.editor-color-swatch.disabled,
.best-seller-color-swatch.disabled {
    opacity: .25;
    pointer-events: none;
}

/* MOBILE */

@media (max-width: 600px) {

    .editor-product-options,
    .best-seller-options {
        margin-top: 12px;
    }

    .editor-option-row,
    .best-seller-option-row {
        gap: 8px;
    }

}
/* =======================================================
   EDITOR SELECTION
======================================================= */

.editor-selection-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.editor-selection-info p {
    margin-bottom: 16px;
}

.editor-selection-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;

    margin-top: auto;

    width: fit-content;

    border: 0;
    padding: 0;

    background: transparent;

    color: inherit;
    font: inherit;

    text-decoration: none;

    cursor: pointer;

    position: relative;
    z-index: 5;

    visibility: visible !important;
    opacity: 1 !important;
}

.editor-selection-link span {
    margin-left: 10px;
    transition: transform .25s ease;
}

.editor-selection-link:hover span {
    transform: translateX(5px);
}


/* =======================================================
   BEST SELLER OPTIONS
======================================================= */

.best-seller-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.best-seller-option-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.best-seller-option-label {
    min-width: 42px;

    font-size: 9px;
    line-height: 1;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #888;
}


/* COLOR */

.best-seller-color-options {
    display: flex;
    align-items: center;
    gap: 7px;
}

.best-seller-color-swatch {
    position: relative;

    width: 16px;
    height: 16px;

    padding: 0;

    border: 1px solid rgba(0,0,0,.18);
    border-radius: 50%;

    background: var(--swatch);

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.best-seller-color-swatch:hover {
    transform: scale(1.12);
}

.best-seller-color-swatch.active::after {
    content: "";

    position: absolute;

    inset: -4px;

    border: 1px solid #222;
    border-radius: 50%;
}


/* SIZE */

.best-seller-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.best-seller-size-option {
    min-width: 28px;
    height: 25px;

    padding: 0 7px;

    border: 1px solid #ddd;

    background: transparent;

    color: #222;

    font-size: 9px;
    letter-spacing: .06em;

    cursor: pointer;

    transition: .2s ease;
}



/* IMPORTANT:
   Option button berada di atas click layer card
*/

.best-seller-options,
.best-seller-options button {
    position: relative;
    z-index: 10;
}


/* MOBILE */

@media (max-width: 600px) {

    .best-seller-options {
        margin-top: 12px;
    }

    .best-seller-option-row {
        gap: 8px;
    }

}
/* =====================================================
   EDITOR EXPLORE LINK
===================================================== */

.editor-selection-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;

    margin-top: 18px;

    padding: 0;

    border: 0;
    background: transparent;

    color: inherit;

    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    cursor: pointer;

    opacity: 1 !important;
    visibility: visible !important;

    position: relative;
    z-index: 5;
}

.editor-selection-link span {
    display: inline-block;

    font-size: 16px;
    line-height: 1;

    transition:
        transform 0.25s ease;
}

.editor-selection-link:hover span {
    transform: translateX(5px);
}


/* =====================================================
   EDITOR VIEW SELECTION
===================================================== */

.editor-view-product {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;

    cursor: pointer;

    opacity: 1 !important;
    visibility: visible !important;

    position: relative;
    z-index: 5;
}
/* =========================================================
   SHOP BY CATEGORY
========================================================= */

.shop-category-section {
    position: relative;
    padding: 120px 0;
    background: #f8f6f2;
    overflow: hidden;
}

.shop-category-container {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.shop-category-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 55px;
}

.shop-category-heading > div {
    flex: 1;
}

.shop-category-intro {
    max-width: 380px;
    margin: 0;
    color: #77736c;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
}


/* =========================================================
   GRID
========================================================= */

.shop-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* =========================================================
   CARD
========================================================= */

.shop-category-card {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    background: #ddd;
}

.shop-category-image {
    position: relative;
    width: 100%;
    aspect-ratio: 0.78 / 1;
    overflow: hidden;
    background: #e8e5df;
}

.shop-category-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.9s cubic-bezier(.2,.65,.2,1),
        filter 0.6s ease;
}


/* =========================================================
   OVERLAY
========================================================= */

.shop-category-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .62) 0%,
            rgba(0, 0, 0, .18) 42%,
            rgba(0, 0, 0, 0) 72%
        );
    transition: background .5s ease;
}


/* =========================================================
   NUMBER
========================================================= */

.shop-category-number {
    position: absolute;
    top: 25px;
    left: 25px;

    color: rgba(255,255,255,.85);

    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
}


/* =========================================================
   CONTENT
========================================================= */

.shop-category-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;
    z-index: 2;

    color: #fff;
}

.shop-category-label {
    display: block;
    margin-bottom: 8px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;

    opacity: .78;
}

.shop-category-content h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(28px, 1vw, 42px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.025em;
}


.shop-category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 20px;

    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;

    opacity: .9;

    transition:
        gap .35s ease,
        opacity .35s ease;
}

.shop-category-link span {
    font-size: 16px;
    line-height: 1;
}


/* =========================================================
   HOVER
========================================================= */

.shop-category-card:hover .shop-category-image img {
    transform: scale(1.045);
}

.shop-category-card:hover .shop-category-overlay {
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .20) 48%,
            rgba(0, 0, 0, .03) 75%
        );
}

.shop-category-card:hover .shop-category-link {
    gap: 15px;
    opacity: 1;
}


/* =========================================================
   SUBTLE BORDER
========================================================= */

.shop-category-card::after {
    content: "";
    position: absolute;
    inset: 0;

    border: 1px solid rgba(255,255,255,.18);

    pointer-events: none;
    z-index: 3;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .shop-category-section {
        padding: 95px 0;
    }

    .shop-category-container {
        width: min(100% - 50px, 900px);
    }

    .shop-category-heading {
        gap: 35px;
        margin-bottom: 40px;
    }

    .shop-category-grid {
        gap: 15px;
    }

    .shop-category-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .shop-category-number {
        top: 20px;
        left: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .shop-category-section {
        padding: 75px 0;
    }

    .shop-category-container {
        width: calc(100% - 32px);
    }


    .shop-category-heading {
        display: block;
        margin-bottom: 32px;
    }

    .shop-category-intro {
        max-width: 100%;
        margin-top: 18px;

        font-size: 13px;
        line-height: 1.75;
    }


    .shop-category-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    .shop-category-image {
        aspect-ratio: 1 / 1.18;
    }


    .shop-category-content {
        left: 22px;
        right: 22px;
        bottom: 23px;
    }


    .shop-category-content h3 {
        font-size: 32px;
    }


    .shop-category-number {
        top: 18px;
        left: 18px;
    }


    .shop-category-link {
        margin-top: 16px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .shop-category-section {
        padding: 65px 0;
    }

    .shop-category-container {
        width: calc(100% - 24px);
    }

    .shop-category-content {
        left: 18px;
        right: 18px;
        bottom: 20px;
    }

    .shop-category-content h3 {
        font-size: 29px;
    }

}

/* =========================================================
   hero-caterories
========================================================= */

.hero-caterories {
    position: relative;

    
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 6%;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(178,138,74,.10),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            #faf9f5 0%,
            #f8f6f1 100%
        );
}

.hero-caterories::before {
    content: "";

    position: absolute;

    inset: 7%;

    border:
        1px solid var(--gold-border);

    pointer-events: none;

    opacity: .65;
}

.hero-caterories-content {
    position: relative;

    width: 100%;
    max-width: 900px;

    animation:
        hero-cateroriesFadeIn
        1.2s
        cubic-bezier(.16,1,.3,1)
        both;
}

/* =========================================================
   hero-caterories TITLE
========================================================= */

.hero-caterories h1 {
    font-family:
        var(--serif);

    font-size:
        clamp(4rem, 10vw, 8.5rem);

    font-weight: 400;

    letter-spacing: 13px;

    line-height: .9;

    color:
        var(--text-dark);

    text-transform: uppercase;

    margin-bottom: 26px;
}

.hero-caterories h1 span {
    color: var(--gold);

    font-style: italic;

    font-weight: 300;
}


/* =========================================================
   hero-caterories DESCRIPTION
========================================================= */

.hero-caterories-description {
    max-width: 470px;

    margin:
        0 auto 40px;

    color:
        var(--text-muted);

    font-size: 12px;

    line-height: 1.9;

    letter-spacing: .3px;
}


/* =========================================================
   hero-caterories BUTTON
========================================================= */

.hero-caterories-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    padding: 17px 34px;

    border:
        1px solid var(--gold);

    color:
        var(--text-dark);

    background:
        transparent;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    overflow: hidden;

    transition:
        color .4s ease;
}

.hero-caterories-button::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        var(--gold);

    transform:
        translateX(-101%);

    transition:
        transform .4s ease;

    z-index: -1;
}

.hero-caterories-button:hover {
    color: #fff;
}

.hero-caterories-button:hover::before {
    transform:
        translateX(0);
}
@keyframes hero-cateroriesFadeIn {

    from {
        opacity: 0;

        transform:
            translateY(30px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}

@media (min-width: 901px) {

.hero-caterories {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 6%;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(178,138,74,.10),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            #faf9f5 0%,
            #f8f6f1 100%
        );
}

.hero-caterories::before {
    content: "";

    position: absolute;

    inset: 7%;

    border:
        1px solid var(--gold-border);

    pointer-events: none;

    opacity: .65;
}

.hero-caterories-content {
    position: relative;

    width: 100%;
    max-width: 900px;

    animation:
        hero-cateroriesFadeIn
        1.2s
        cubic-bezier(.16,1,.3,1)
        both;
}
.hero-caterories h1 {
    font-family:
        var(--serif);

    font-size:
        clamp(4rem, 10vw, 8.5rem);

    font-weight: 400;

    letter-spacing: 13px;

    line-height: .9;

    color:
        var(--text-dark);

    text-transform: uppercase;

    margin-bottom: 26px;
}

.hero-caterories h1 span {
    color: var(--gold);

    font-style: italic;

    font-weight: 300;
}


/* =========================================================
   hero-caterories DESCRIPTION
========================================================= */

.hero-caterories-description {
    max-width: 470px;

    margin:
        0 auto 40px;

    color:
        var(--text-muted);

    font-size: 12px;

    line-height: 1.9;

    letter-spacing: .3px;
}


/* =========================================================
   hero-caterories BUTTON
========================================================= */

.hero-caterories-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    padding: 17px 34px;

    border:
        1px solid var(--gold);

    color:
        var(--text-dark);

    background:
        transparent;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    overflow: hidden;

    transition:
        color .4s ease;
}

.hero-caterories-button::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        var(--gold);

    transform:
        translateX(-101%);

    transition:
        transform .4s ease;

    z-index: -1;
}

.hero-caterories-button:hover {
    color: #fff;
}

.hero-caterories-button:hover::before {
    transform:
        translateX(0);
}

}


@media (max-width: 900px) {

  /* -----------------------------------------------------
       hero-caterories
    ----------------------------------------------------- */

    .hero-caterories::before {

        inset: 5%;
    }

    .hero-caterories h1 {

        font-size:
            clamp(3rem, 17vw, 6rem);

        letter-spacing:
            7px;

        line-height:
            .92;
    }


.hero-caterories-description {
        max-width: 330px;

        font-size: 11px;
        line-height: 1.9;
    }


}

@media (max-width: 520px) {

    .hero-caterories h1 {

        font-size:
            clamp(2.8rem, 18vw, 5rem);

        letter-spacing:
            5px;
    }

    .hero-caterories-description {

        font-size:
            10.5px;

        line-height:
            1.8;
    }

    .hero-caterories-button {

        padding:
            15px 25px;

        font-size:
            8px;
    }

}

@media (max-width: 380px) {

.hero-caterories h1 {

        font-size:
            2.8rem;

        letter-spacing:
            4px;
    }
}

@media (prefers-reduced-motion: reduce) {
.hero-caterories-content {
    position: relative;
    z-index: 2;

    width: min(800px, 100%);

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-caterories-description {
    max-width: 560px;

    margin: 25px auto 35px;

    color: var(--text-muted);

    font-family: var(--sans);

    font-size: 12px;
    font-weight: 300;

    line-height: 2;

    letter-spacing: .6px;
}

}
/* =========================================================
   PRODUCT TOOLBAR
========================================================= */

.product-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(30, 30, 28, 0.12);
}

.product-toolbar-heading {
    flex: 1;
    min-width: 220px;
}

.product-toolbar-heading .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8b8174;
}

.product-toolbar-heading h3 {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #24231f;
}

.product-toolbar-heading p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #817b72;
}

.product-toolbar-controls {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

/* SEARCH */

.product-search {
    position: relative;
    width: 220px;
}

.product-search svg {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #817b72;
    stroke-width: 1.5;
    transform: translateY(-50%);
    pointer-events: none;
}

.product-search input {
    width: 100%;
    height: 46px;
    padding: 0 16px 0 43px;
    border: 1px solid #ded9d1;
    border-radius: 0;
    outline: none;
    background: #fff;
    color: #24231f;
    font-family: inherit;
    font-size: 12px;
    transition: border-color 0.25s ease;
}

.product-search input::placeholder {
    color: #aaa39a;
}

.product-search input:focus {
    border-color: #8b8174;
}

/* FILTER */

.product-filter {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 145px;
}

.product-filter label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8b8174;
}

.product-filter select {
    width: 100%;
    height: 46px;
    padding: 0 36px 0 14px;
    border: 1px solid #ded9d1;
    border-radius: 0;
    outline: none;
    background: #fff;
    color: #3d3933;
    font-family: inherit;
    font-size: 12px;
    cursor: pointer;
    transition: border-color 0.25s ease;
}

.product-filter select:focus {
    border-color: #8b8174;
}

/* RESULTS BAR */

.product-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 38px;
    margin-bottom: 24px;
}

#productResultsCount {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8b8174;
}

.clear-product-filters {
    padding: 0;
    border: 0;
    background: transparent;
    color: #8b8174;
    font-family: inherit;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.25s ease;
}

.clear-product-filters:hover {
    color: #24231f;
}

/* HIDDEN PRODUCT */

.product-card.product-filter-hidden {
    display: none !important;
}

/* =========================================================
   PAGINATION
========================================================= */

.product-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pagination-arrow,
.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #ded9d1;
    border-radius: 0;
    background: transparent;
    color: #6f685f;
    font-family: inherit;
    font-size: 12px;
    cursor: pointer;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.pagination-arrow:hover:not(:disabled),
.pagination-number:hover:not(:disabled) {
    border-color: #8b8174;
    color: #24231f;
}

.pagination-number.active {
    border-color: #24231f;
    background: #24231f;
    color: #fff;
}

.pagination-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    color: #9b9389;
    font-size: 12px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
    .product-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 24px;
    }

    .product-toolbar-controls {
        justify-content: flex-start;
    }

    .product-search {
        flex: 1 1 220px;
    }

    .product-filter {
        flex: 1 1 145px;
    }
}

@media (max-width: 600px) {
    .product-toolbar {
        gap: 20px;
        margin-bottom: 22px;
        padding-bottom: 22px;
    }

    .product-toolbar-heading h3 {
        font-size: 28px;
    }

    .product-toolbar-heading p {
        font-size: 12px;
    }

    .product-toolbar-controls {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .product-search {
        grid-column: 1 / -1;
        width: 100%;
    }

    .product-filter {
        grid-column: 1 / -1;
        width: 100%;
    }

    .product-filter select,
    .product-search input {
        height: 44px;
    }

    .product-results-bar {
        margin-bottom: 20px;
    }

    .product-pagination {
        gap: 5px;
        margin-top: 40px;
    }

    .pagination-arrow,
    .pagination-number {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }

    .pagination-numbers {
        gap: 4px;
    }
}
/* =========================================================
   KAU·ASIA — LUXURY NAVIGATION
   Editorial / Boutique Dashboard
========================================================= */

:root {
    --nav-bg: #fbfaf7;
    --nav-surface: #f5f1e9;
    --nav-text: #292722;
    --nav-muted: #8b867d;
    --nav-gold: #b99a5b;
    --nav-line: rgba(45, 41, 34, .08);
    --nav-gold-soft: rgba(185, 154, 91, .10);
}


/* ---------------------------------------------------------
   DESKTOP MAIN NAV
--------------------------------------------------------- */

nav#mainNav > ul > li > .submenu-toggle {
    gap: 12px;
    padding: 30px 0;
    color: var(--nav-muted);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.8px;
}

nav#mainNav > ul > li > .submenu-toggle::after {
    bottom: 16px;
    height: 1px;
    background: var(--nav-gold);
}

nav#mainNav > ul > li:hover > .submenu-toggle,
nav#mainNav > ul > li:focus-within > .submenu-toggle {
    color: var(--nav-text);
}


/* ---------------------------------------------------------
   DESKTOP SUBMENU
--------------------------------------------------------- */

@media (min-width: 901px) {

    nav#mainNav .submenu {
        width: 255px;
        padding: 16px 0;
        background: rgba(251, 250, 247, .98);
        border: 1px solid rgba(185, 154, 91, .20);
        box-shadow:
            0 20px 50px rgba(40, 35, 27, .07);
    }

    nav#mainNav .submenu li {
        position: relative;
    }

    nav#mainNav .submenu a {
        padding: 13px 26px;
        color: var(--nav-muted);
        font-size: 9px;
        font-weight: 400;
        letter-spacing: 2px;
        transition:
            background .25s ease,
            color .25s ease,
            padding .25s ease;
    }

    nav#mainNav .submenu a:hover {
        padding-left: 32px;
        color: var(--nav-text);
        background: var(--nav-gold-soft);
    }

    nav#mainNav .submenu a span:last-child {
        color: var(--nav-gold);
        font-size: 13px;
        font-weight: 300;
    }

}


/* ---------------------------------------------------------
   MOBILE / TABLET DRAWER
--------------------------------------------------------- */

@media (max-width: 900px) {

    nav#mainNav {
        top: 70px;
        width: min(360px, 88vw);
        padding: 30px 26px 40px;

        background:
            linear-gradient(
                180deg,
                #fbfaf7 0%,
                #f8f5ef 100%
            );

        border-left: 1px solid rgba(185, 154, 91, .18);

        box-shadow:
            -20px 0 60px rgba(38, 32, 24, .08);
    }


    /* Hilangkan garis penuh pada setiap group */

    nav#mainNav > ul > li {
        border-bottom: 0;
        margin-bottom: 4px;
    }


    /* Main menu */

    nav#mainNav > ul > li > .submenu-toggle {
        position: relative;

        min-height: 54px;
        padding: 17px 16px;

        color: var(--nav-muted);
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 2.5px;

        border-radius: 2px;

        transition:
            background .3s ease,
            color .3s ease,
            padding .3s ease;
    }


    /* Gold vertical accent */

    nav#mainNav > ul > li > .submenu-toggle::before {
        content: "";

        position: absolute;
        left: 0;
        top: 50%;

        width: 2px;
        height: 0;

        background: var(--nav-gold);

        transform: translateY(-50%);

        transition: height .3s ease;
    }


    /* Jangan gunakan garis horizontal */

    nav#mainNav > ul > li > .submenu-toggle::after {
        display: none;
    }


    /* Hover / open */

    nav#mainNav > ul > li:hover > .submenu-toggle,
    nav#mainNav > ul > li:focus-within > .submenu-toggle,
    nav#mainNav > ul > li.has-submenu.open > .submenu-toggle {

        color: var(--nav-text);
        background: var(--nav-surface);
    }


    nav#mainNav > ul > li.has-submenu.open > .submenu-toggle {
        font-weight: 600;
    }


    nav#mainNav > ul > li.has-submenu.open > .submenu-toggle::before {
        height: 22px;
    }


    /* Chevron lebih kecil */

    .submenu-toggle .arrow {
        width: 5px;
        height: 5px;
        opacity: .65;
    }


    /* -----------------------------------------------------
       SUBMENU
    ----------------------------------------------------- */

    nav#mainNav .submenu {
        position: static !important;

        width: 100%;
        max-height: 0;

        padding: 0 0 0 22px;

        background: transparent;
        border: 0;
        box-shadow: none;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        overflow: hidden;

        transition:
            max-height .45s cubic-bezier(.25,1,.5,1),
            opacity .3s ease,
            visibility .3s ease,
            padding .3s ease;
    }


    nav#mainNav .has-submenu.open > .submenu {
        max-height: 1000px;

        padding-top: 5px;
        padding-bottom: 16px;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }


    /* Guide line submenu */

    nav#mainNav .submenu {
        position: relative;
    }

    nav#mainNav .submenu::before {
        content: "";

        position: absolute;
        left: 7px;
        top: 8px;
        bottom: 20px;

        width: 1px;

        background: rgba(185, 154, 91, .22);
    }


    nav#mainNav .submenu li {
        position: relative;
    }


    nav#mainNav .submenu a {
        position: relative;

        min-height: 42px;

        padding: 10px 8px 10px 20px;

        color: var(--nav-muted);

        font-size: 10px;
        font-weight: 400;
        letter-spacing: 1.8px;

        transition:
            color .25s ease,
            padding .25s ease;
    }


    nav#mainNav .submenu a:hover {
        padding-left: 25px;
        color: var(--nav-text);
        background: transparent;
    }


    nav#mainNav .submenu a::before {
        content: "";

        position: absolute;
        left: 3px;
        top: 50%;

        width: 4px;
        height: 4px;

        border-radius: 50%;
        background: #c9b99b;

        transform: translateY(-50%);

        transition:
            background .25s ease,
            transform .25s ease;
    }


    nav#mainNav .submenu a:hover::before {
        background: var(--nav-gold);
        transform: translateY(-50%) scale(1.3);
    }


    nav#mainNav .submenu a span:last-child {
        opacity: 1;
        transform: none;

        color: var(--nav-gold);
        font-size: 12px;
        font-weight: 300;
    }

}
/* =========================================================
   KAU·ASIA — ACTIVE SUBMENU
========================================================= */

/* ---------------------------------------------------------
   DESKTOP
--------------------------------------------------------- */

@media (min-width: 901px) {

    nav#mainNav .submenu li.active a {
        color: var(--nav-text);
        background: var(--nav-gold-soft);
        padding-left: 30px;
    }

    nav#mainNav .submenu li.active a::before {
        content: "";

        position: absolute;
        left: 0;
        top: 50%;

        width: 2px;
        height: 18px;

        background: var(--nav-gold);

        transform: translateY(-50%);
    }

    nav#mainNav .submenu li.active a span:last-child {
        opacity: 1;
        transform: translateX(0);
        color: var(--nav-gold);
    }

}


/* ---------------------------------------------------------
   MOBILE / TABLET
--------------------------------------------------------- */

@media (max-width: 900px) {

    nav#mainNav .submenu li.active a {
        color: var(--nav-text);
        font-weight: 500;
        padding-left: 25px;
    }

    nav#mainNav .submenu li.active a::before {
        background: var(--nav-gold);
        transform: translateY(-50%) scale(1.3);
    }

    nav#mainNav .submenu li.active a span:last-child {
        color: var(--nav-gold);
        opacity: 1;
        transform: none;
    }

}
/* Parent menu yang memiliki halaman aktif */

nav#mainNav > ul > li.has-submenu.active > .submenu-toggle {
    color: var(--nav-text);
}

@media (max-width: 900px) {

    nav#mainNav > ul > li.has-submenu.active > .submenu-toggle {
        color: var(--nav-text);
        background: var(--nav-surface);
        font-weight: 600;
    }

    nav#mainNav > ul > li.has-submenu.active > .submenu-toggle::before {
        height: 22px;
    }

}
/* =========================================================
   KAU·ASIA — ACTIVE SUBMENU FINAL
========================================================= */

@media (min-width: 901px) {

    nav#mainNav .submenu li.active a {
        color: var(--nav-text);
        background: var(--nav-gold-soft);
        padding-left: 30px;
    }

    nav#mainNav .submenu li.active a::before {
        content: "";

        position: absolute;
        left: 0;
        top: 50%;

        width: 2px;
        height: 18px;

        background: var(--nav-gold);

        transform: translateY(-50%);
    }

    nav#mainNav .submenu li.active a span:last-child {
        color: var(--nav-gold);
        opacity: 1;
        transform: translateX(0);
    }

}


@media (max-width: 900px) {

    nav#mainNav .submenu li.active a {
        color: var(--nav-text);
        font-weight: 500;
        padding-left: 25px;
    }

    nav#mainNav .submenu li.active a::before {
        background: var(--nav-gold);
        transform: translateY(-50%) scale(1.3);
    }

    nav#mainNav .submenu li.active a span:last-child {
        color: var(--nav-gold);
    }

}
/* =========================================
   ACTIVE SUBMENU LINK
========================================= */

#mainNav .submenu a.active {

    color: #a88945;

    background: rgba(168, 137, 69, 0.08);

}


/* Garis kecil elegan di kiri */

#mainNav .submenu a.active::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 3px;

    height: 18px;

    background: #a88945;

    transform: translateY(-50%);

    border-radius: 0 3px 3px 0;

}


/* Parent menu juga active */

#mainNav .has-submenu.active > .submenu-toggle {

    color: #a88945;

}
/* --- Header Actions & Cart Button --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    padding-right: 15px;
}

.cart-trigger {
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 8px;
    color: #1a1a1a;
    transition: opacity 0.3s ease;
}

.cart-trigger:hover {
    opacity: 0.7;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 0px;
    background-color: #c5a059; /* Luxury Gold Accent */
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Cart Drawer Overlay & Panel --- */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background-color: #f8f6f1; /* Theme light base */
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-drawer.active {
    transform: translateX(-450px);
}

@media (max-width: 480px) {
    .cart-drawer { right: -100%; }
    .cart-drawer.active { transform: translateX(-100%); }
}

/* --- Cart Header --- */
.cart-header {
    padding: 24px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cart-title h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
    color: #1a1a1a;
}

.cart-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #777;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1a1a1a;
    line-height: 1;
}

/* --- Cart Body & Items --- */
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    position: relative;
}

.cart-item-img img {
    width: 75px;
    height: 95px;
    object-fit: cover;
    border-radius: 2px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #1a1a1a;
}

.cart-item-meta {
    font-size: 11px;
    color: #888;
    margin: 0 0 10px 0;
}

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.15);
}

.qty-btn {
    background: none;
    border: none;
    padding: 2px 8px;
    cursor: pointer;
    font-size: 12px;
}

.qty-val {
    font-size: 12px;
    padding: 0 6px;
}

.cart-item-price {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
}

.cart-item-remove {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 16px;
}

/* --- Cart Footer --- */
.cart-footer {
    padding: 24px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f3efe6;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.cart-note {
    font-size: 11px;
    color: #777;
    margin-bottom: 20px;
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    background-color: #c5a059;
    border-color: #c5a059;
}
/* Mencegah halaman utama di-scroll */
body.cart-open {
    overflow: hidden;
}
#cartDrawer {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Biar smooth scroll di iOS/Safari */
}
.product-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Mengatur opsi ukuran yang stoknya kosong */
.size-option.disabled,
.modal-size-option.disabled,
.editor-size-option.disabled,
.best-seller-size-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
    pointer-events: none;
    background-color: #f5f5f5;
}

/* Mengatur tombol Add to Bag saat disabled */
.add-to-bag:disabled,
#modalAddToBagBtn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}
/* =========================================================
   KAU·ASIA
   SHARED INFORMATION PAGES
   CONTACT / ABOUT / SIZE GUIDE
========================================================= */

.info-page {
    --info-text: #1c1a17;
    --info-muted: #77716a;
    --info-soft: #99928a;
    --info-border: rgba(28, 26, 23, .10);
    --info-border-dark: rgba(28, 26, 23, .15);

    background: var(--bg-main, #f8f6f1);
    color: var(--info-text);

    width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.info-hero {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    padding: 100px 7% 90px;

    border-bottom: 1px solid var(--info-border);
}

.info-hero-inner {
    width: 100%;
    max-width: 900px;

    margin: auto;

    text-align: center;
}

.info-eyebrow {
    display: block;

    margin-bottom: 25px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: .27em;

    color: var(--gold, #b28a4a);
}

.info-hero h1 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(60px, 8vw, 115px);
    font-weight: 400;

    line-height: .88;
    letter-spacing: -.035em;
}

.info-hero h1 span {
    color: var(--gold, #b28a4a);
}

.info-hero p {
    max-width: 580px;

    margin: 30px auto 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;

    line-height: 1.9;

    color: var(--info-muted);
}


/* =========================================================
   STANDARD SECTION
========================================================= */

.info-section {
    width: 100%;
    box-sizing: border-box;

    padding: 120px 7%;
}

.info-grid {
    display: grid;
}

.info-section-label {
    padding-top: 8px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;

    letter-spacing: .19em;

    color: var(--info-muted);
}

.info-section-label span {
    display: block;

    margin-bottom: 14px;

    color: var(--gold, #b28a4a);
}

.info-section-content {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 80px;
}

.info-heading {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 400;

    line-height: .92;
    letter-spacing: -.025em;
}

.info-heading em {
    color: var(--gold, #b28a4a);
}

.info-text {
    max-width: 520px;

    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;

    line-height: 2;

    color: var(--info-muted);
}

.info-text p {
    margin: 0 0 25px;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.info-section-header {
    max-width: 1200px;

    margin: 0 auto 70px;
}

.info-section-header .info-section-label {
    display: block;

    padding: 0;

    margin-bottom: 15px;

    color: var(--gold, #b28a4a);
}

.info-section-header .info-heading {
    margin: 0;
}


/* =========================================================
   ITEM GRID
========================================================= */

.info-values-grid {
    max-width: 1200px;

    margin: auto;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--info-border-dark);
}

.info-item {
    min-height: 180px;

    padding: 35px 35px 20px 0;

    border-right: 1px solid rgba(28, 26, 23, .12);

    box-sizing: border-box;
}

.info-item:not(:first-child) {
    padding-left: 35px;
}

.info-item:last-child {
    border-right: none;
}

.info-number {
    display: block;

    margin-bottom: 42px;

    font-family: "Cormorant Garamond", serif;
    font-size: 18px;

    color: var(--gold, #b28a4a);
}

.info-item h3 {
    margin: 0 0 15px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: .18em;
}

.info-item p {
    max-width: 290px;

    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;

    line-height: 1.9;

    color: var(--info-muted);
}


/* =========================================================
   DARK / FEATURE SECTION
========================================================= */

.info-dark {
    padding: 120px 7%;

    background: #25221e;

    color: #f8f6f1;

    text-align: center;
}

.info-dark-inner {
    max-width: 760px;

    margin: auto;
}

.info-dark .info-eyebrow {
    color: var(--gold, #b28a4a);
}

.info-dark h2 {
    margin: 25px 0 20px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(50px, 6vw, 80px);
    font-weight: 400;

    line-height: .9;
}

.info-dark h2 span {
    color: var(--gold, #b28a4a);
}

.info-dark p {
    max-width: 590px;

    margin: 0 auto 18px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;

    line-height: 1.9;

    color: #bdb7af;
}


/* =========================================================
   LIGHT FEATURE
========================================================= */

.about-philosophy {
    background: #e9e3d8;
    color: var(--info-text);
}

.about-philosophy h2 {
    color: var(--info-text);
}

.about-philosophy p {
    color: #716b63;
}


/* =========================================================
   STATEMENT
========================================================= */

.info-statement {
    padding: 140px 7%;

    border-top: 1px solid var(--info-border);
    border-bottom: 1px solid var(--info-border);

    text-align: center;
}

.info-statement-inner {
    max-width: 850px;

    margin: auto;
}

.info-brand {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: .25em;

    color: var(--info-muted);
}

.info-brand span {
    color: var(--gold, #b28a4a);
}

.info-statement blockquote {
    margin: 35px auto;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 400;

    line-height: 1;

    letter-spacing: -.02em;
}

.info-caption {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 8px;
    font-weight: 600;

    letter-spacing: .25em;

    color: var(--gold, #b28a4a);
}


/* =========================================================
   CTA
========================================================= */

.info-cta {
    padding: 130px 7%;

    text-align: center;
}

.info-cta-inner {
    max-width: 700px;

    margin: auto;
}

.info-cta-inner > span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;

    letter-spacing: .25em;

    color: var(--gold, #b28a4a);
}

.info-cta h2 {
    margin: 22px 0 30px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(50px, 7vw, 90px);
    font-weight: 400;

    line-height: .88;
}

.info-cta h2 em {
    color: var(--gold, #b28a4a);
}

.info-cta p {
    max-width: 540px;

    margin: 0 auto 30px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;

    line-height: 1.9;

    color: var(--info-muted);
}

.info-cta a {
    display: inline-flex;

    align-items: center;
    gap: 18px;

    padding-bottom: 8px;

    border-bottom: 1px solid var(--gold, #b28a4a);

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: .15em;

    color: #25221e;

    text-decoration: none;
}

.info-cta a span {
    font-size: 16px;

    transition: transform .3s ease;
}

.info-cta a:hover span {
    transform: translateX(5px);
}


/* =========================================================
   BUTTON
========================================================= */

.info-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 25px;

    min-width: 210px;

    padding: 17px 24px;

    border: 1px solid #25221e;

    background: #25221e;

    color: #fff;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: .18em;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.info-button span {
    font-size: 16px;

    transition: transform .3s ease;
}

.info-button:hover {
    background: transparent;

    color: #25221e;

    border-color: var(--gold, #b28a4a);
}

.info-button:hover span {
    transform: translateX(5px);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    max-width: 1200px;

    margin: auto;

    grid-template-columns: .85fr 1.15fr;

    gap: 100px;
}

.contact-info .info-heading {
    margin-bottom: 28px;
}

.contact-description {
    max-width: 430px;

    margin-bottom: 55px;
}

.contact-detail {
    margin-bottom: 32px;
}

.detail-label {
    display: block;

    margin-bottom: 9px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;

    letter-spacing: .2em;

    color: var(--info-soft);
}

.contact-detail a,
.contact-detail p {
    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;

    line-height: 1.7;

    color: #25221e;

    text-decoration: none;
}

.contact-detail a {
    position: relative;
}

.contact-detail a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 100%;
    height: 1px;

    background: var(--gold, #b28a4a);

    transform: scaleX(0);

    transform-origin: right;

    transition: transform .3s ease;
}

.contact-detail a:hover::after {
    transform: scaleX(1);

    transform-origin: left;
}

.contact-social {
    margin-top: 45px;
}

.social-links {
    display: flex;

    gap: 25px;

    flex-wrap: wrap;
}

.social-links a {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;

    color: #25221e;

    text-decoration: none;

    transition: color .25s ease;
}

.social-links a:hover {
    color: var(--gold, #b28a4a);
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrapper {
    padding-top: 5px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;

    margin-bottom: 11px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;

    letter-spacing: .18em;

    color: var(--info-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 15px 0;

    border: none;

    border-bottom: 1px solid rgba(28, 26, 23, .18);

    background: transparent;

    outline: none;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;

    color: #25221e;

    transition: border-color .3s ease;
}

.form-group textarea {
    min-height: 150px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa49c;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold, #b28a4a);
}


/* =========================================================
   ABOUT
========================================================= */

.about-story-grid {
    max-width: 1200px;

    margin: auto;

    grid-template-columns: 180px 1fr;

    gap: 80px;
}

.about-values {
    max-width: 1200px;

    margin: auto;
}

.about-values .info-section-header {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;
}

.about-values .info-section-header .info-section-label {
    margin: 0;
}


/* =========================================================
   SIZE GUIDE
========================================================= */

.size-intro-grid {
    max-width: 1200px;

    margin: auto;

    grid-template-columns: 180px 1fr;

    gap: 80px;
}

.size-table-section {
    padding: 100px 7% 120px;

    background: #eee9df;
}

.size-table-wrapper {
    max-width: 1200px;

    margin: auto;

    overflow-x: auto;
}

.size-table {
    width: 100%;

    min-width: 650px;

    border-collapse: collapse;

    font-family: "Plus Jakarta Sans", sans-serif;
}

.size-table th {
    padding: 18px 20px;

    border-bottom: 1px solid rgba(28, 26, 23, .25);

    text-align: left;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .18em;

    color: var(--info-muted);
}

.size-table td {
    padding: 24px 20px;

    border-bottom: 1px solid rgba(28, 26, 23, .10);

    font-size: 12px;

    color: #4e4943;
}

.size-table td:first-child {
    font-family: "Cormorant Garamond", serif;

    font-size: 20px;

    color: #25221e;
}

.size-table tbody tr {
    transition: background .25s ease;
}

.size-table tbody tr:hover {
    background: rgba(255,255,255,.35);
}

.table-note {
    max-width: 1200px;

    margin: 20px auto 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;

    line-height: 1.7;

    color: #8a837b;
}

.measurement-section {
    max-width: 1200px;

    margin: auto;
}

.size-fit {
    background: #25221e;
}

.size-note {
    padding-top: 130px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .info-hero {
        min-height: 480px;

        padding: 90px 6% 70px;
    }

    .info-section {
        padding: 90px 6%;
    }

    .info-section-content {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-story-grid,
    .size-intro-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-description {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .contact-form-wrapper {
        max-width: 650px;

        width: 100%;

        margin: auto;
    }

    .info-values-grid {
        grid-template-columns: 1fr;
    }

    .info-item,
    .info-item:not(:first-child) {
        padding: 30px 0;

        border-right: none;

        border-bottom: 1px solid rgba(28, 26, 23, .12);
    }

    .info-item:last-child {
        border-bottom: none;
    }

    .about-values .info-section-header {
        display: block;
    }

    .about-values .info-heading {
        margin-top: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .info-hero {
        min-height: 430px;

        padding: 70px 22px 55px;
    }

    .info-eyebrow {
        font-size: 9px;
    }

    .info-hero h1 {
        font-size: 58px;

        line-height: .9;
    }

    .info-hero p {
        font-size: 12px;

        line-height: 1.8;
    }

    .info-section {
        padding: 75px 22px;
    }

    .info-heading {
        font-size: 48px;
    }

    .info-text {
        font-size: 12px;

        line-height: 1.9;
    }

    .info-dark {
        padding: 80px 22px;
    }

    .info-dark h2 {
        font-size: 52px;
    }

    .info-cta {
        padding: 85px 22px;
    }

    .info-cta h2 {
        font-size: 58px;
    }

    .info-statement {
        padding: 85px 22px;
    }

    .info-statement blockquote {
        font-size: 40px;
    }


    /* CONTACT */

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .info-button {
        width: 100%;
    }

    .contact-description {
        margin-top: 22px;

        margin-bottom: 45px;
    }


    /* SIZE */

    .size-table-section {
        padding: 75px 22px 85px;
    }

    .size-table-wrapper {
        margin-left: -22px;
        margin-right: -22px;

        padding-left: 22px;
        padding-right: 22px;
    }

    .size-section-header {
        margin-bottom: 45px;
    }

}
/* =========================================================
   OUR STORY
========================================================= */

.info-page--story {
    background: var(--bg-main, #f8f6f1);
}


/* =========================================================
   HERO
========================================================= */

.info-page--story .info-hero {
    min-height: 620px;
}


/* =========================================================
   FEATURE
========================================================= */

.info-feature {
    min-height: 500px;
    padding: 110px 7%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.info-feature-inner {
    max-width: 900px;
}

.info-feature--soft {
    background: #e9e3d8;
}

.info-feature-eyebrow {
    display: block;
    margin-bottom: 28px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;

    color: var(--gold, #b28a4a);
}

.info-feature h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.025em;
}

.info-feature h2 span {
    color: var(--gold, #b28a4a);
}

.info-feature p {
    margin: 28px 0 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    line-height: 1.8;

    color: #77716a;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.info-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;

    margin-bottom: 70px;
}

.info-section-header .info-section-label {
    margin: 0;
}


/* =========================================================
   GRID
========================================================= */

.info-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .info-page--story .info-hero {
        min-height: 520px;
    }

    .info-section-header {
        display: block;
        margin-bottom: 50px;
    }

    .info-section-header .info-heading {
        margin-top: 25px;
    }

    .info-grid--3 {
        grid-template-columns: 1fr;
    }

    .info-feature {
        min-height: 420px;
        padding: 90px 7%;
    }

}


@media (max-width: 600px) {

    .info-page--story .info-hero {
        min-height: 480px;
    }

    .info-feature {
        min-height: 380px;
        padding: 80px 22px;
    }

    .info-feature h2 {
        font-size: 48px;
    }

    .info-feature-eyebrow {
        font-size: 9px;
    }

}
/* =========================================================
   SHIPPING & DELIVERY
========================================================= */

.info-page--shipping {
    background: var(--bg-main, #f8f6f1);
}


/* =========================================================
   HERO
========================================================= */

.info-page--shipping .info-hero {
    min-height: 620px;
}


/* =========================================================
   SOFT FEATURE
========================================================= */

.info-page--shipping .info-feature--soft {
    min-height: 500px;
}


/* =========================================================
   DARK FEATURE
========================================================= */

.info-feature--dark {
    background: #25221e;
    color: #f8f6f1;
}

.info-feature--dark h2 {
    color: #f8f6f1;
}

.info-feature--dark p {
    color: rgba(248, 246, 241, .65);
}

.info-link--light {
    color: #f8f6f1 !important;
    border-bottom-color: var(--gold, #b28a4a) !important;
}

.info-link--light span {
    color: var(--gold, #b28a4a);
}


/* =========================================================
   SHIPPING GRID
========================================================= */

.info-page--shipping .info-grid-item h3 {
    letter-spacing: .18em;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .info-page--shipping .info-hero {
        min-height: 520px;
    }

}


@media (max-width: 600px) {

    .info-page--shipping .info-hero {
        min-height: 480px;
    }

}
.info-grid-item {
    position: relative;
    padding: 42px 45px 45px 0;
    border-top: 1px solid rgba(28, 26, 23, .18);
}

.info-grid-item:not(:last-child) {
    border-right: 1px solid rgba(28, 26, 23, .12);
    padding-right: 45px;
}

.info-grid-item + .info-grid-item {
    padding-left: 45px;
}


/* NUMBER */

.info-number {
    display: block;

    margin-bottom: 42px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .2em;

    color: var(--gold, #b28a4a);
}


/* TITLE */

.info-grid-item h3 {
    margin: 0 0 22px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 400;
    line-height: 1;

    letter-spacing: -.015em;

    color: #1c1a17;
}


/* DESCRIPTION */

.info-grid-item p {
    max-width: 290px;

    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.9;

    color: #77716a;
}

/* =========================================================
   RETURNS
========================================================= */

.info-page--returns {
    background: var(--bg-main, #f8f6f1);
}


/* =========================================================
   HERO
========================================================= */

.info-page--returns .info-hero {
    min-height: 620px;
}


/* =========================================================
   EDITORIAL LIST
========================================================= */

.info-editorial-list {
    width: 100%;
    border-top: 1px solid rgba(28, 26, 23, .18);
}

.info-editorial-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;

    padding: 38px 0;

    border-bottom: 1px solid rgba(28, 26, 23, .12);
}

.info-editorial-row .info-number {
    margin: 0;
}

.info-editorial-row h3 {
    margin: 0 0 12px;

    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;

    letter-spacing: -.01em;
}

.info-editorial-row p {
    max-width: 600px;

    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    line-height: 1.9;

    color: #77716a;
}


/* =========================================================
   PROCESS
========================================================= */

.info-process {
    border-top: 1px solid rgba(28, 26, 23, .18);
}

.info-process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;

    padding: 38px 0;

    border-bottom: 1px solid rgba(28, 26, 23, .12);
}

.info-process-step .info-number {
    margin: 0;
}

.info-process-step h3 {
    margin: 0 0 12px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
}

.info-process-step p {
    max-width: 620px;

    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    line-height: 1.9;

    color: #77716a;
}


/* =========================================================
   DARK SECTION
========================================================= */

.info-page--returns .info-feature--dark {
    background: #25221e;
    color: #f8f6f1;
}

.info-page--returns .info-feature--dark h2 {
    color: #f8f6f1;
}

.info-page--returns .info-feature--dark p {
    color: rgba(248, 246, 241, .65);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .info-page--returns .info-hero {
        min-height: 520px;
    }

    .info-editorial-row,
    .info-process-step {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }

}


@media (max-width: 600px) {

    .info-page--returns .info-hero {
        min-height: 480px;
    }

    .info-editorial-row,
    .info-process-step {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px 0;
    }

}
/* =========================================================
   FAQ
========================================================= */

.info-page--faq {
    background: var(--bg-main, #f8f6f1);
}


/* =========================================================
   HERO
========================================================= */

.info-page--faq .info-hero {
    min-height: 620px;
}


/* =========================================================
   FAQ SECTION
========================================================= */

.info-faq-section {
    padding: 120px 7%;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 90px;

    max-width: 1400px;
    margin: 0 auto;
}

.info-faq-section--soft {
    max-width: none;
    padding-left: max(7%, calc((100vw - 1260px) / 2));
    padding-right: max(7%, calc((100vw - 1260px) / 2));

    background: #eee9df;
}


/* =========================================================
   FAQ HEADING
========================================================= */

.info-faq-heading {
    align-self: start;
}

.info-faq-heading .info-section-label {
    margin-bottom: 28px;
}

.info-faq-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 62px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.025em;
}

.info-faq-heading h2 em {
    color: var(--gold, #b28a4a);
    font-style: italic;
}


/* =========================================================
   FAQ LIST
========================================================= */

.info-faq-list {
    border-top: 1px solid rgba(28, 26, 23, .2);
}


/* =========================================================
   FAQ ITEM
========================================================= */

.info-faq-item {
    border-bottom: 1px solid rgba(28, 26, 23, .14);
}


/* =========================================================
   SUMMARY
========================================================= */

.info-faq-item summary {
    position: relative;

    display: grid;
    grid-template-columns: 55px 1fr 30px;
    align-items: center;
    gap: 20px;

    padding: 28px 0;

    cursor: pointer;
    list-style: none;
}

.info-faq-item summary::-webkit-details-marker {
    display: none;
}


/* =========================================================
   NUMBER
========================================================= */

.info-faq-number {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .2em;

    color: var(--gold, #b28a4a);
}


/* =========================================================
   QUESTION
========================================================= */

.info-faq-question {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(25px, 2.2vw, 34px);
    font-weight: 400;
    line-height: 1.1;

    color: #1c1a17;

    transition: color .3s ease;
}

.info-faq-item summary:hover .info-faq-question {
    color: var(--gold, #b28a4a);
}


/* =========================================================
   ICON
========================================================= */

.info-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;

    color: #1c1a17;

    transition:
        transform .35s ease,
        color .3s ease;
}

.info-faq-item[open] .info-faq-icon {
    transform: rotate(45deg);
    color: var(--gold, #b28a4a);
}


/* =========================================================
   ANSWER
========================================================= */

.info-faq-answer {
    padding:
        0 55px 32px 75px;
}

.info-faq-answer p {
    max-width: 650px;

    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    line-height: 1.95;

    color: #77716a;
}


/* =========================================================
   DARK CUSTOMER CARE
========================================================= */

.info-page--faq .info-feature--dark {
    background: #25221e;
    color: #f8f6f1;
}

.info-page--faq .info-feature--dark h2 {
    color: #f8f6f1;
}

.info-page--faq .info-feature--dark p {
    color: rgba(248, 246, 241, .65);
}

.info-page--faq .info-feature--dark .info-link {
    color: #f8f6f1;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .info-page--faq .info-hero {
        min-height: 520px;
    }

    .info-faq-section {
        grid-template-columns: 1fr;
        gap: 55px;

        padding: 90px 7%;
    }

    .info-faq-heading h2 {
        max-width: 500px;
    }

}


@media (max-width: 600px) {

    .info-page--faq .info-hero {
        min-height: 480px;
    }

    .info-faq-section {
        padding: 75px 22px;
        gap: 45px;
    }

    .info-faq-section--soft {
        padding-left: 22px;
        padding-right: 22px;
    }

    .info-faq-item summary {
        grid-template-columns: 35px 1fr 25px;
        gap: 12px;

        padding: 24px 0;
    }

    .info-faq-question {
        font-size: 25px;
    }

    .info-faq-answer {
        padding:
            0 25px 28px 47px;
    }

    .info-faq-answer p {
        font-size: 11px;
        line-height: 1.85;
    }

}
/* =========================================================
   CRAFTSMANSHIP
========================================================= */

.info-page--craftsmanship {
    background: var(--bg-main, #f8f6f1);
}


/* HERO */

.info-page--craftsmanship .info-hero {
    min-height: 620px;
}


/* SOFT MATERIAL SECTION */

.info-page--craftsmanship .info-feature--soft {
    min-height: 520px;
}


/* DARK CLOSING SECTION */

.info-page--craftsmanship .info-feature--dark {
    min-height: 520px;

    background: #25221e;
    color: #f8f6f1;
}

.info-page--craftsmanship .info-feature--dark h2 {
    color: #f8f6f1;
}

.info-page--craftsmanship .info-feature--dark p {
    color: rgba(248, 246, 241, .65);
}


/* EDITORIAL PROCESS */

.info-page--craftsmanship .info-editorial-row h3 {
    letter-spacing: .03em;
}


/* MOBILE */

@media (max-width: 900px) {

    .info-page--craftsmanship .info-hero {
        min-height: 520px;
    }

    .info-page--craftsmanship .info-feature {
        min-height: 430px;
    }

}


@media (max-width: 600px) {

    .info-page--craftsmanship .info-hero {
        min-height: 480px;
    }

    .info-page--craftsmanship .info-feature {
        min-height: 380px;
    }

}
/* =========================================================
   JOURNAL
========================================================= */

.info-page--journal {
    background: var(--bg-main, #f8f6f1);
}


/* =========================================================
   HERO
========================================================= */

.info-page--journal .info-hero {
    min-height: 560px;
}


/* =========================================================
   FEATURED STORY
========================================================= */

.journal-featured {
    display: grid;
    grid-template-columns: 1.25fr .75fr;

    max-width: 1400px;
    margin: 0 auto;

    padding: 0 7% 130px;
}

.journal-featured-image {
    height: 650px;
    overflow: hidden;
}

.journal-featured-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .8s ease;
}

.journal-featured-image:hover img {
    transform: scale(1.025);
}


.journal-featured-content {
    align-self: center;

    padding: 70px;
}

.journal-category,
.journal-date {
    display: inline-block;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;

    letter-spacing: .18em;
    text-transform: uppercase;
}

.journal-category {
    color: var(--gold, #b28a4a);
}

.journal-date {
    margin-left: 18px;
    color: #99938c;
}

.journal-featured-content h2 {
    margin: 28px 0 25px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 400;
    line-height: .92;

    letter-spacing: -.03em;
}

.journal-featured-content h2 em {
    color: var(--gold, #b28a4a);
}

.journal-featured-content p {
    max-width: 420px;

    margin: 0 0 35px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    line-height: 1.9;

    color: #77716a;
}


/* =========================================================
   JOURNAL SECTION
========================================================= */

.journal-section {
    max-width: 1260px;
    margin: 0 auto;

    padding: 120px 7%;
}

.journal-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 80px;
}

.journal-section-header .info-heading {
    margin-top: 25px;
}

.journal-view-all {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding-bottom: 8px;

    border-bottom: 1px solid var(--gold, #b28a4a);

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .18em;

    color: #1c1a17;
    text-decoration: none;
}

.journal-view-all span {
    color: var(--gold, #b28a4a);

    transition: transform .3s ease;
}

.journal-view-all:hover span {
    transform: translateX(5px);
}


/* =========================================================
   JOURNAL LIST
========================================================= */

.journal-list {
    display: flex;
    flex-direction: column;
    gap: 110px;
}


.journal-item {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;

    gap: 90px;
}

.journal-item--reverse {
    grid-template-columns: .9fr 1.1fr;
}

.journal-item--reverse .journal-image {
    order: 2;
}

.journal-item--reverse .journal-item-content {
    order: 1;
}


/* =========================================================
   IMAGE
========================================================= */

.journal-image {
    display: block;

    height: 470px;

    overflow: hidden;
}

.journal-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .8s ease;
}

.journal-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   STORY CONTENT
========================================================= */

.journal-item-content {
    max-width: 480px;
}

.journal-meta {
    display: flex;
    gap: 20px;

    margin-bottom: 25px;
}

.journal-meta span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .17em;

    color: #99938c;
}

.journal-meta span:first-child {
    color: var(--gold, #b28a4a);
}


.journal-item-content h3 {
    margin: 0 0 22px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: .95;

    letter-spacing: -.025em;
}

.journal-item-content h3 em {
    color: var(--gold, #b28a4a);
}


.journal-item-content p {
    max-width: 400px;

    margin: 0 0 28px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    line-height: 1.9;

    color: #77716a;
}


.journal-read {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;

    letter-spacing: .18em;

    color: #1c1a17;
    text-decoration: none;
}

.journal-read span {
    color: var(--gold, #b28a4a);

    transition: transform .3s ease;
}

.journal-read:hover span {
    transform: translateX(5px);
}


/* =========================================================
   EDITORIAL FEATURE
========================================================= */

.info-page--journal .info-feature--soft {
    min-height: 520px;
}


/* =========================================================
   CATEGORIES
========================================================= */

.journal-categories {
    padding: 130px 7%;
}

.journal-categories-inner {
    max-width: 1260px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.journal-category-heading h2 {
    margin-top: 25px;
}


.journal-category-list {
    border-top: 1px solid rgba(28, 26, 23, .18);
}


.journal-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 0;

    border-bottom: 1px solid rgba(28, 26, 23, .13);

    text-decoration: none;
}


.journal-category-link span {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 400;

    color: #1c1a17;

    transition: color .3s ease;
}


.journal-category-link strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;

    color: var(--gold, #b28a4a);

    transition: transform .3s ease;
}


.journal-category-link:hover span {
    color: var(--gold, #b28a4a);
}

.journal-category-link:hover strong {
    transform: translateX(7px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .journal-featured {
        grid-template-columns: 1fr;
    }

    .journal-featured-image {
        height: 550px;
    }

    .journal-featured-content {
        padding: 60px 0 0;
        max-width: 650px;
    }


    .journal-item,
    .journal-item--reverse {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .journal-item--reverse .journal-image,
    .journal-item--reverse .journal-item-content {
        order: initial;
    }


    .journal-image {
        height: 500px;
    }


    .journal-categories-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

}


@media (max-width: 600px) {

    .info-page--journal .info-hero {
        min-height: 480px;
    }

    .journal-featured {
        padding:
            0 22px 90px;
    }

    .journal-featured-image {
        height: 420px;
    }

    .journal-featured-content {
        padding-top: 45px;
    }

    .journal-featured-content h2 {
        font-size: 52px;
    }


    .journal-section {
        padding: 85px 22px;
    }

    .journal-section-header {
        display: block;
        margin-bottom: 55px;
    }

    .journal-view-all {
        margin-top: 30px;
    }


    .journal-list {
        gap: 80px;
    }

    .journal-image {
        height: 360px;
    }

    .journal-item-content h3 {
        font-size: 42px;
    }


    .journal-categories {
        padding: 90px 22px;
    }

    .journal-category-link span {
        font-size: 28px;
    }

}
/* =========================================================
   STORES
   ========================================================= */

.info-page--stores {
    background: var(--bg-main, #f8f6f1);
}

.info-page--stores .info-hero {
    min-height: 560px;
}


/* =========================================================
   INTRO
   ========================================================= */

.stores-intro {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 90px;
    max-width: 1260px;
    margin: 0 auto;
}

.stores-intro .info-section-content {
    max-width: 760px;
}

.stores-intro .info-text {
    max-width: 500px;
    margin-top: 35px;
}


/* =========================================================
   STORE LIST
   ========================================================= */

.stores-list {
    max-width: 1260px;
    margin: 0 auto;
    padding: 20px 7% 130px;
}

.store-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 35px;
    padding: 80px 0;
    border-top: 1px solid rgba(28, 26, 23, .18);
}

.store-item:last-child {
    border-bottom: 1px solid rgba(28, 26, 23, .18);
}

.store-number {
    padding-top: 5px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .2em;

    color: var(--gold, #b28a4a);
}


.store-content {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center;
}


/* =========================================================
   STORE IMAGE
   ========================================================= */

.store-image {
    height: 540px;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition:
        transform .8s ease;
}

.store-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   STORE DETAILS
   ========================================================= */

.store-details {
    max-width: 430px;
}

.store-country {
    display: block;

    margin-bottom: 20px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .2em;

    color: var(--gold, #b28a4a);
}

.store-details h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(54px, 5vw, 76px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.03em;

    color: #1c1a17;
}

.store-details h3 {
    margin: 25px 0 18px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: #1c1a17;
}

.store-address {
    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    line-height: 1.9;

    color: #77716a;
}


/* =========================================================
   STORE META
   ========================================================= */

.store-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;

    margin: 35px 0;
    padding: 25px 0;

    border-top: 1px solid rgba(28, 26, 23, .12);
    border-bottom: 1px solid rgba(28, 26, 23, .12);
}

.store-meta span {
    display: block;

    margin-bottom: 10px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .18em;

    color: #99938c;
}

.store-meta p {
    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    line-height: 1.8;

    color: #55504a;
}


/* =========================================================
   VISIT
   ========================================================= */

.info-page--stores .stores-visit {
    min-height: 500px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .stores-intro {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .store-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .store-image {
        height: 550px;
    }

    .store-details {
        max-width: 600px;
    }

}


@media (max-width: 600px) {

    .info-page--stores .info-hero {
        min-height: 480px;
    }

    .stores-intro {
        padding-left: 22px;
        padding-right: 22px;
    }

    .stores-list {
        padding: 0 22px 90px;
    }

    .store-item {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 60px 0;
    }

    .store-number {
        padding: 0;
    }

    .store-content {
        gap: 40px;
    }

    .store-image {
        height: 420px;
    }

    .store-details h2 {
        font-size: 56px;
    }

    .store-meta {
        grid-template-columns: 1fr;
        gap: 22px;
    }

}
/* =========================================================
   PAYMENT
   ========================================================= */

.info-page--payment {
    background: var(--bg-main, #f8f6f1);
}

.info-page--payment .info-hero {
    min-height: 560px;
}


/* =========================================================
   INTRO
   ========================================================= */

.payment-intro {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 90px;
    max-width: 1260px;
    margin: 0 auto;
}

.payment-intro .info-section-content {
    max-width: 760px;
}

.payment-intro .info-text {
    max-width: 500px;
    margin-top: 35px;
}


/* =========================================================
   BANKS
   ========================================================= */

.payment-banks {
    max-width: 1260px;
    margin: 0 auto;
    padding: 120px 7% 130px;
}

.payment-banks-header {
    margin-bottom: 70px;
}

.payment-banks-header .info-heading {
    margin-top: 25px;
}


/* =========================================================
   BANK LIST
   ========================================================= */

.payment-bank-list {
    border-top: 1px solid rgba(28, 26, 23, .18);
}

.payment-bank {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 35px;
    align-items: center;

    padding: 48px 0;

    border-bottom: 1px solid rgba(28, 26, 23, .12);
}

.payment-bank-number {
    align-self: start;
    padding-top: 6px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .2em;

    color: var(--gold, #b28a4a);
}


.payment-bank-info {
    display: grid;
    grid-template-columns: 180px 150px 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.payment-bank-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .17em;
    line-height: 1.6;

    color: #99938c;
}

.payment-bank-info h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1;

    color: #1c1a17;
}


/* =========================================================
   ACCOUNT
   ========================================================= */

.payment-account span,
.payment-account-holder span {
    display: block;

    margin-bottom: 8px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .16em;

    color: #99938c;
}

.payment-account strong {
    display: block;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;

    color: #1c1a17;
}

.payment-account-holder p {
    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    line-height: 1.6;

    color: #55504a;
}


/* =========================================================
   COPY BUTTON
   ========================================================= */

.payment-copy {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 0 0 8px;

    border: 0;
    border-bottom: 1px solid var(--gold, #b28a4a);

    background: transparent;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .16em;

    color: #1c1a17;

    cursor: pointer;
}

.payment-copy span {
    font-size: 16px;
    font-weight: 300;
    line-height: 1;

    color: var(--gold, #b28a4a);

    transition: transform .3s ease;
}

.payment-copy:hover span {
    transform: rotate(45deg);
}


/* =========================================================
   QRIS
   ========================================================= */

.payment-qris {
    padding: 130px 7%;

    background: #e9e3d8;
}

.payment-qris-inner {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 100px;

    align-items: center;
}

.payment-qris-content {
    max-width: 500px;
}

.payment-qris-content .info-heading {
    margin-top: 25px;
}

.payment-qris-content > p {
    max-width: 430px;
    margin: 30px 0 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    line-height: 1.9;

    color: #77716a;
}


/* QRIS NOTE */

.payment-qris-note {
    margin-top: 45px;
    padding-top: 20px;

    border-top: 1px solid rgba(28, 26, 23, .15);
}

.payment-qris-note span {
    display: block;

    margin-bottom: 10px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .18em;

    color: var(--gold, #b28a4a);
}

.payment-qris-note p {
    max-width: 400px;
    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    line-height: 1.8;

    color: #77716a;
}


/* =========================================================
   QR FRAME
   ========================================================= */

.payment-qris-code {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qris-frame {
    width: 340px;
    height: 340px;

    padding: 25px;

    background: #fff;

    box-shadow:
        0 25px 70px rgba(28, 26, 23, .08);
}

.qris-frame img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}

.qris-label {
    margin-top: 22px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .2em;

    color: #77716a;
}


/* =========================================================
   NOTES
   ========================================================= */

.payment-notes {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 90px;

    max-width: 1260px;
    margin: 0 auto;
}

.payment-note-list {
    margin-top: 45px;

    border-top: 1px solid rgba(28, 26, 23, .18);
}

.payment-note {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid rgba(28, 26, 23, .12);
}

.payment-note > span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    letter-spacing: .2em;

    color: var(--gold, #b28a4a);
}

.payment-note p {
    max-width: 600px;
    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    line-height: 1.9;

    color: #77716a;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1000px) {

    .payment-intro,
    .payment-notes {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .payment-bank {
        grid-template-columns: 60px 1fr;
    }

    .payment-bank-info {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .payment-copy {
        grid-column: 2;
    }

    .payment-qris-inner {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .payment-qris-content {
        max-width: 650px;
    }

}


@media (max-width: 600px) {

    .info-page--payment .info-hero {
        min-height: 480px;
    }

    .payment-intro,
    .payment-notes {
        padding-left: 22px;
        padding-right: 22px;
    }

    .payment-banks {
        padding: 85px 22px 90px;
    }

    .payment-bank {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 45px 0;
    }

    .payment-bank-number {
        padding: 0;
    }

    .payment-bank-info {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .payment-bank-info h3 {
        font-size: 42px;
    }

    .payment-copy {
        grid-column: auto;
        justify-self: start;
    }

    .payment-qris {
        padding: 90px 22px;
    }

    .payment-qris-inner {
        gap: 55px;
    }

    .qris-frame {
        width: 280px;
        height: 280px;
        padding: 20px;
    }

    .payment-note {
        grid-template-columns: 40px 1fr;
    }

}
.payment-bank-logo {
    display: flex;
    align-items: center;
    height: 45px;
}

.payment-bank-logo img {
    display: block;
    width: 100px;
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    object-position: left center;
}
/* =========================================================
   PRIVACY
   ========================================================= */

.info-page--privacy {
    background: var(--bg-main, #f8f6f1);
}

.info-page--privacy .info-hero {
    min-height: 560px;
}


/* =========================================================
   INTRO
   ========================================================= */

.privacy-intro {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 90px;

    max-width: 1260px;
    margin: 0 auto;
}

.privacy-intro .info-section-content {
    max-width: 760px;
}

.privacy-intro .info-text {
    max-width: 620px;
    margin-top: 35px;
}

.privacy-updated {
    margin-top: 35px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .18em;

    color: #99938c;
}


/* =========================================================
   PRIVACY SECTIONS
   ========================================================= */

.privacy-section {
    padding: 120px 7%;
}

.privacy-section--soft {
    background: #eee9df;
}

.privacy-section-inner {
    max-width: 1260px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 90px;
}

.privacy-section-heading .info-heading {
    margin-top: 25px;
}

.privacy-content {
    max-width: 720px;
}

.privacy-content > p {
    max-width: 650px;
    margin: 0 0 25px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    line-height: 1.95;

    color: #77716a;
}


/* =========================================================
   PRIVACY LIST
   ========================================================= */

.privacy-list {
    margin-top: 55px;

    border-top: 1px solid rgba(28, 26, 23, .18);
}

.privacy-list-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 25px;

    padding: 32px 0;

    border-bottom: 1px solid rgba(28, 26, 23, .12);
}

.privacy-list-item > span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .2em;

    color: var(--gold, #b28a4a);
}

.privacy-list-item h3 {
    margin: 0 0 12px;

    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}

.privacy-list-item p {
    max-width: 570px;
    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    line-height: 1.9;

    color: #77716a;
}


/* =========================================================
   EDITORIAL LIST
   ========================================================= */

.privacy-editorial-list {
    margin-top: 50px;

    border-top: 1px solid rgba(28, 26, 23, .18);
}

.privacy-editorial-row {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 25px;

    padding: 25px 0;

    border-bottom: 1px solid rgba(28, 26, 23, .12);
}

.privacy-editorial-row > span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .2em;

    color: var(--gold, #b28a4a);
}

.privacy-editorial-row p {
    max-width: 600px;
    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    line-height: 1.9;

    color: #77716a;
}


/* =========================================================
   SECURITY
   ========================================================= */

.info-page--privacy .privacy-security {
    min-height: 500px;
}


/* =========================================================
   RIGHTS
   ========================================================= */

.privacy-section--rights {
    padding-bottom: 130px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .privacy-intro,
    .privacy-section-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .privacy-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

}


@media (max-width: 600px) {

    .info-page--privacy .info-hero {
        min-height: 480px;
    }

    .privacy-intro {
        padding-left: 22px;
        padding-right: 22px;
    }

    .privacy-section {
        padding-left: 22px;
        padding-right: 22px;
    }

    .privacy-list {
        margin-top: 40px;
    }

    .privacy-list-item {
        grid-template-columns: 40px 1fr;
        gap: 15px;
        padding: 28px 0;
    }

    .privacy-list-item h3 {
        font-size: 27px;
    }

    .privacy-editorial-list {
        margin-top: 40px;
    }

    .privacy-editorial-row {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

}
/* =========================================
TERMS & CONDITIONS
Additional Classes
========================================= */

/* INTRO */

.terms-intro {
position: relative;
}

.terms-updated {
margin-top: 35px;


font-size: 10px;
letter-spacing: 2px;
font-weight: 500;

color: #9a9287;


}

/* TERMS SECTION */

.terms-section {
width: 100%;
padding: 100px 0;

border-top: 1px solid rgba(0, 0, 0, .07);


}

.terms-section--soft {
background: #f8f6f1;
}

.terms-section-inner {
width: min(1200px, calc(100% - 80px));
margin: 0 auto;


display: grid;
grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);

gap: 100px;

}

/* HEADING */

.terms-section-heading {
position: relative;
}

.terms-section-heading .info-section-label {
display: block;
margin-bottom: 30px;
}

/* CONTENT */

.terms-content {
max-width: 700px;
}

.terms-content > p {
    max-width: 650px;
    margin: 0 0 25px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    line-height: 1.95;
    color: #77716a;
}

.terms-content > p:last-child {
margin-bottom: 0;
}

/* NUMBERED LIST */

.terms-list {
margin-top: 45px;
border-top: 1px solid rgba(0, 0, 0, .09);

}

.terms-list-item {
display: grid;
grid-template-columns: 45px 1fr;

gap: 20px;

padding: 28px 0;

border-bottom: 1px solid rgba(0, 0, 0, .09);

}

.terms-list-item > span {
padding-top: 2px;

font-family: "Cormorant Garamond", serif;
font-size: 20px;

color: #b28a4a;

}

.terms-list-item h3 {
margin: 0 0 8px;

font-family: "Cormorant Garamond", serif;
font-size: 22px;
font-weight: 500;

color: #292620;

}

.terms-list-item p {
margin: 0;

font-size: 13.5px;
line-height: 1.85;

color: #777168;

}

/* EDITORIAL LIST */

.terms-editorial-list {
margin-top: 45px;

border-top: 1px solid rgba(0, 0, 0, .09);

}

.terms-editorial-row {
display: grid;
grid-template-columns: 55px 1fr;

gap: 20px;

padding: 25px 0;

border-bottom: 1px solid rgba(0, 0, 0, .09);

}

.terms-editorial-row > span {
font-family: "Cormorant Garamond", serif;
font-size: 19px;
color: #b28a4a;

}

.terms-editorial-row p {
margin: 0;
font-size: 14px;
line-height: 1.85;

color: #706b63;
}

/* PRICING FEATURE */

.terms-pricing {
position: relative;
}

.terms-pricing .info-feature-inner {
max-width: 850px;
}

/* INTELLECTUAL PROPERTY */

.terms-intellectual-property {
position: relative;
}

.terms-intellectual-property .info-feature-inner {
max-width: 850px;
}

.terms-intellectual-property p + p {
margin-top: 18px;
}

/* =========================================
TABLET
========================================= */

@media (max-width: 900px) {


.terms-section {
    padding: 80px 0;
}

.terms-section-inner {
    width: min(100% - 50px, 720px);

    grid-template-columns: 1fr;

    gap: 45px;
}

.terms-section-heading {
    max-width: 600px;
}

.terms-content {
    max-width: none;
}


}

/* =========================================
MOBILE
========================================= */

@media (max-width: 600px) {

.terms-section {
    padding: 65px 0;
}

.terms-section-inner {
    width: calc(100% - 40px);

    gap: 35px;
}

.terms-section-heading .info-section-label {
    margin-bottom: 20px;
}

.terms-content > p {
    font-size: 14px;
    line-height: 1.85;
}


/* LIST */

.terms-list {
    margin-top: 35px;
}

.terms-list-item {
    grid-template-columns: 35px 1fr;

    gap: 12px;

    padding: 23px 0;
}

.terms-list-item > span {
    font-size: 18px;
}

.terms-list-item h3 {
    font-size: 20px;
}

.terms-list-item p {
    font-size: 13px;
}


/* EDITORIAL */

.terms-editorial-list {
    margin-top: 35px;
}

.terms-editorial-row {
    grid-template-columns: 35px 1fr;

    gap: 12px;

    padding: 22px 0;
}

.terms-editorial-row > span {
    font-size: 17px;
}

.terms-editorial-row p {
    font-size: 13px;
    line-height: 1.8;
}


/* FEATURE */

.terms-pricing .info-feature-inner,
.terms-intellectual-property .info-feature-inner {
    max-width: none;
}

.terms-intellectual-property p + p {
    margin-top: 15px;
}


}
/* =========================================
   TERMS INTRO
========================================= */

.terms-intro .info-section-content {
    max-width: 760px;
}

.terms-intro .info-text {
    max-width: 700px;
}

.terms-updated {
    margin-top: 35px;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #9a9287;
}
.term-content > p {
    max-width: 650px;
    margin: 0 0 25px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    line-height: 1.95;
    color: #77716a;
}
/* ==========================
   NO PRODUCTS — KAU·ASIA
========================== */

.no-products {
    grid-column: 1 / -1;
    min-height: 360px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 70px 30px;

    background: #f8f6f1;
    border: 1px solid rgba(178, 138, 74, 0.18);
}

.no-products-eyebrow {
    margin-bottom: 16px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;

    color: #b28a4a;
}

.no-products h3 {
    margin: 0 0 12px;

    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.1;

    color: #211f1b;
}

.no-products p {
    max-width: 390px;
    margin: 0 0 28px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    line-height: 1.8;

    color: #777168;
}

.no-products-reset {
    display: inline-flex;
    align-items: center;
    gap: 22px;

    padding: 13px 20px;

    border: 1px solid #b28a4a;
    background: transparent;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.8px;

    color: #8d6a32;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        gap .25s ease;
}

.no-products-reset span {
    font-size: 15px;
    line-height: 1;
}

.no-products-reset:hover {
    background: #b28a4a;
    color: #fff;
    gap: 28px;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;

    width: min(440px, 92vw);
    height: 100dvh;

    background: #f8f6f1;

    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);

    z-index: 9999;

    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}


.cart-overlay {
    position: fixed;
    inset: 0;

    background: rgba(30, 25, 18, .25);

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 9998;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}


.cart-header {
    min-height: 82px;

    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(33,31,27,.12);
}


.cart-title h3 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 27px;
    font-weight: 500;

    letter-spacing: 1px;
}


.cart-subtitle {
    margin-left: 8px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 9px;
    letter-spacing: 1px;

    color: #8b8377;
}


.cart-body {
    flex: 1;

    overflow-y: auto;

    padding: 22px 28px;
}


.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr;

    gap: 17px;

    padding-bottom: 22px;
    margin-bottom: 22px;

    border-bottom:
        1px solid
        rgba(33,31,27,.10);
}


.cart-item-img {
    width: 90px;
    height: 115px;

    overflow: hidden;

    background: #ebe7df;
}


.cart-item-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.cart-item-category {
    margin-bottom: 5px;

    font-size: 8px;
    letter-spacing: 2px;

    color: #b28a4a;
}


.cart-item-name {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 21px;
    font-weight: 500;

    color: #211f1b;
}


.cart-item-meta {
    margin-top: 7px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 9px;

    color: #777168;
    text-transform: uppercase;
}


.cart-item-bottom {
    margin-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.qty-selector {
    display: flex;
    align-items: center;

    border: 1px solid
        rgba(33,31,27,.18);
}


.qty-btn {
    width: 28px;
    height: 28px;

    border: 0;
    background: transparent;

    cursor: pointer;

    font-size: 15px;
}


.qty-val {
    min-width: 28px;

    text-align: center;

    font-size: 10px;
}


.cart-item-price {
    font-size: 12px;
    font-weight: 500;
}


.cart-item-remove {
    border: 0;
    background: none;

    font-size: 20px;

    color: #8b8377;

    cursor: pointer;
}


.cart-footer {
    padding: 22px 28px 28px;

    border-top:
        1px solid
        rgba(33,31,27,.12);
}


.cart-summary-line {
    display: flex;
    justify-content: space-between;

    font-size: 11px;
    letter-spacing: .5px;
}


.cart-total-price {
    font-weight: 600;
}


.cart-note {
    margin: 10px 0 18px;

    font-size: 9px;
    line-height: 1.6;

    color: #8b8377;
}


.btn-checkout {
    width: 100%;

    padding: 16px;

    border: 1px solid #b28a4a;

    background: #b28a4a;

    color: #fff;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 9px;
    letter-spacing: 2px;

    cursor: pointer;
}


.btn-checkout:hover {
    background: #8d6a32;
}
/* =========================================
   EMPTY CART
========================================= */

#cartList {
    position: relative;
}

.empty-cart {
    min-height: 100%;
    padding: 70px 30px 80px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* Icon */
.empty-cart::before {
    content: "♡";

    width: 68px;
    height: 68px;
    margin-bottom: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(178, 138, 74, 0.35);
    border-radius: 50%;

    color: #b28a4a;

    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
}

/* Title */
.empty-cart h4 {
    margin: 0 0 10px;

    color: #28251f;

    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* Description */
.empty-cart p {
    max-width: 280px;
    margin: 0;

    color: #8a8378;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

/* Continue Shopping */
.empty-cart .empty-cart-btn {
    margin-top: 28px;
    padding: 13px 28px;

    border: 1px solid #b28a4a;
    background: transparent;

    color: #8d6a32;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.empty-cart .empty-cart-btn:hover {
    background: #b28a4a;
    border-color: #b28a4a;
    color: #fff;
}
.editor-view-product.is-disabled,
.editor-selection-link.is-disabled,
.best-seller-view.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.editor-view-product:disabled,
.editor-selection-link:disabled,
.best-seller-view:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.editor-color-swatch.out-of-stock,
.editor-size-option.out-of-stock,
.best-seller-color-swatch.out-of-stock,
.best-seller-size-option.out-of-stock {
    opacity: 0.35;
    cursor: not-allowed;
    position: relative;
}

.editor-size-option.out-of-stock,
.best-seller-size-option.out-of-stock {
    text-decoration: line-through;
}

.editor-color-swatch.out-of-stock::after,
.best-seller-color-swatch.out-of-stock::after {
    content: "";
    position: absolute;
    width: 130%;
    height: 1px;
    background: currentColor;
    top: 50%;
    left: -15%;
    transform: rotate(-45deg);
    pointer-events: none;
}
/* ==========================================
   KAU·ASIA — LUXURY CART NOTIFICATION
========================================== */

.cart-success-notification {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 99999;

    width: 340px;
    max-width: calc(100vw - 32px);

    padding: 18px 20px 20px;

    background: rgba(248, 246, 241, 0.97);
    border: 1px solid rgba(178, 138, 74, 0.28);

    box-shadow:
        0 18px 45px rgba(45, 41, 36, 0.14);

    display: flex;
    align-items: center;
    gap: 14px;

    overflow: hidden;

    opacity: 0;
    transform: translateX(30px);

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(.22, .61, .36, 1);
}

.cart-success-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   ICON
========================================== */

.cart-success-icon {
    width: 30px;
    height: 30px;

    border: 1px solid #b28a4a;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #8d6a32;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;

    flex-shrink: 0;
}

/* ==========================================
   CONTENT
========================================== */

.cart-success-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cart-success-title {
    font-family: "Cormorant Garamond", serif;

    font-size: 19px;
    line-height: 1.1;

    letter-spacing: 0.05em;

    color: #2d2924;
}

.cart-success-text {
    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 10px;
    line-height: 1.5;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: #8a8379;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================
   GOLD PROGRESS LINE
========================================== */

.cart-success-notification::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: #b28a4a;

    transform-origin: left center;
    transform: scaleX(0);
}

.cart-success-notification.show::after {
    animation: cartSuccessProgress 3s linear forwards;
}

@keyframes cartSuccessProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .cart-success-notification {
        left: 16px;
        right: 16px;
        bottom: 20px;

        width: auto;
        max-width: none;

        padding: 17px 18px 19px;

        transform: translateY(20px);
    }

    .cart-success-notification.show {
        transform: translateY(0);
    }

    .cart-success-title {
        font-size: 18px;
    }

    .cart-success-text {
        font-size: 9px;
    }
}
.payment-qris-merchant {
    margin-top: 22px;
    padding: 15px 18px;
    border: 1px solid rgba(178, 138, 74, 0.22);
    background: rgba(178, 138, 74, 0.035);

    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 340px;
}

.payment-qris-merchant span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #999;
}

.payment-qris-merchant strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #8d6a32;
}
@media (max-width: 600px) {
    .payment-qris-merchant {
        width: 280px;
    }
}
/* =========================================================
   KAU·ASIA CHECKOUT
========================================================= */

.checkout-page {
    --checkout-bg: #f8f6f1;
    --checkout-card: #ffffff;
    --checkout-text: #24211d;
    --checkout-muted: #8b877f;
    --checkout-border: rgba(36, 33, 29, 0.12);
    --checkout-gold: #b28a4a;
    --checkout-gold-dark: #8d6a32;

    min-height: 100vh;
    background: var(--checkout-bg);
    color: var(--checkout-text);
}


/* =========================================================
   HEADER
========================================================= */

.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 28px 6vw;

    border-bottom: 1px solid var(--checkout-border);
}

.checkout-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.checkout-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--checkout-muted);
}


/* =========================================================
   PROGRESS
========================================================= */

.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 6vw 36px;

    gap: 18px;
}

.checkout-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 0;

    border: 0;
    background: transparent;

    cursor: default;

    color: #aaa59c;
}

.checkout-step span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    letter-spacing: 0.12em;
}

.checkout-step strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.checkout-step.is-active {
    color: var(--checkout-gold-dark);
}

.checkout-step.is-complete {
    color: var(--checkout-text);
}

.checkout-progress-line {
    width: 50px;
    height: 1px;
    background: var(--checkout-border);
}


/* =========================================================
   BODY
========================================================= */

.checkout-body {
    width: min(1380px, calc(100% - 12vw));
    margin: 0 auto;
    padding: 20px 0 90px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 70px;

    align-items: start;
}


/* =========================================================
   MAIN
========================================================= */

.checkout-main {
    min-width: 0;
}

.checkout-panel {
    display: none;
}

.checkout-panel.is-active {
    display: block;
}

.checkout-panel[hidden] {
    display: none;
}


/* =========================================================
   PANEL HEADER
========================================================= */

.checkout-panel-header {
    margin-bottom: 50px;
}

.checkout-eyebrow {
    display: block;

    margin-bottom: 18px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;

    color: var(--checkout-gold);
}

.checkout-panel-header h1 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.checkout-panel-header h1 em {
    color: var(--checkout-gold-dark);
    font-style: italic;
    font-weight: 400;
}


/* =========================================================
   CHECKOUT ITEMS
========================================================= */

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.checkout-loading,
.checkout-empty {
    padding: 45px 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--checkout-muted);

    border-top: 1px solid var(--checkout-border);
    border-bottom: 1px solid var(--checkout-border);
}


/* =========================================================
   FORM
========================================================= */

.checkout-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 22px;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-field-full {
    grid-column: 1 / -1;
}

.checkout-field label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #77736c;
}

.checkout-field input,
.checkout-field textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 15px 0;

    border: 0;
    border-bottom: 1px solid var(--checkout-border);

    background: transparent;

    outline: none;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    color: var(--checkout-text);

    transition:
        border-color 0.25s ease;
}

.checkout-field textarea {
    min-height: 105px;
    resize: vertical;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
    border-bottom-color: var(--checkout-gold);
}


/* =========================================================
   PAYMENT
========================================================= */

.checkout-payment-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-payment-option {
    position: relative;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 22px;

    border: 1px solid var(--checkout-border);

    background: rgba(255, 255, 255, 0.45);

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.checkout-payment-option:hover {
    border-color: rgba(178, 138, 74, 0.45);
}

.checkout-payment-option.is-selected {
    border-color: var(--checkout-gold);
    background: rgba(178, 138, 74, 0.04);
}


/* =========================================================
   REVIEW
========================================================= */

.checkout-review {
    border-top: 1px solid var(--checkout-border);
}

.checkout-review-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    padding: 20px 0;

    border-bottom: 1px solid var(--checkout-border);
}

.checkout-review-row span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--checkout-muted);
}

.checkout-review-row strong,
.checkout-review-row p {
    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: right;
}


/* =========================================================
   NAVIGATION
========================================================= */

.checkout-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 55px;
    padding-top: 25px;

    border-top: 1px solid var(--checkout-border);
}

.checkout-back,
.checkout-continue {
    min-height: 48px;

    border: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;

    cursor: pointer;
}

.checkout-back {
    padding: 0;

    background: transparent;
    color: var(--checkout-muted);
}

.checkout-back:hover {
    color: var(--checkout-text);
}

.checkout-continue {
    display: inline-flex;
    align-items: center;
    gap: 22px;

    padding: 0 24px;

    background: var(--checkout-text);
    color: #fff;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.checkout-continue span {
    font-size: 16px;
    line-height: 1;
}

.checkout-continue:hover {
    background: var(--checkout-gold-dark);
    transform: translateY(-1px);
}


/* =========================================================
   ORDER SUMMARY
========================================================= */

.checkout-summary {
    position: sticky;
    top: 30px;

    padding: 28px;

    background: var(--checkout-card);

    border: 1px solid var(--checkout-border);
}

.checkout-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--checkout-border);
}

.checkout-summary-header span,
.checkout-summary-header strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.checkout-summary-header strong {
    color: var(--checkout-muted);
}


.checkout-summary-items {
    display: flex;
    flex-direction: column;

    max-height: 360px;
    overflow-y: auto;
}


/* =========================================================
   SUMMARY ITEM
========================================================= */

.checkout-summary-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;

    padding: 18px 0;

    border-bottom: 1px solid var(--checkout-border);
}

.checkout-summary-item-image {
    width: 64px;
    height: 80px;

    overflow: hidden;

    background: #eeeae2;
}

.checkout-summary-item-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.checkout-summary-item-info {
    min-width: 0;
}

.checkout-summary-item-name {
    display: block;

    margin-bottom: 5px;

    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    line-height: 1.1;
}

.checkout-summary-item-meta {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--checkout-muted);
}

.checkout-summary-item-price {
    margin-top: 8px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
}


/* =========================================================
   SUMMARY TOTALS
========================================================= */

.checkout-summary-divider {
    height: 1px;
    margin: 20px 0;

    background: var(--checkout-border);
}

.checkout-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 13px;
}

.checkout-summary-row span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--checkout-muted);
}

.checkout-summary-row strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
}

.checkout-summary-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
}

.checkout-summary-total span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.checkout-summary-total strong {
    font-family: inherit;
    font-size: 27px;
    font-weight: 600;
    color: var(--checkout-gold-dark);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .checkout-body {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 40px;
    }

    .checkout-summary {
        padding: 22px;
    }

    .checkout-progress-line {
        width: 30px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 800px) {

    .checkout-header {
        padding: 22px 5vw;
    }

    .checkout-brand {
        font-size: 21px;
    }

    .checkout-body {
        width: calc(100% - 10vw);

        grid-template-columns: 1fr;

        gap: 45px;

        padding-bottom: 60px;
    }

    .checkout-progress {
        justify-content: flex-start;

        padding: 24px 5vw 30px;

        gap: 10px;

        overflow-x: auto;
    }

    .checkout-step strong {
        display: none;
    }

    .checkout-progress-line {
        width: 24px;
        flex: 0 0 24px;
    }

    .checkout-panel-header {
        margin-bottom: 35px;
    }

    .checkout-panel-header h1 {
        font-size: clamp(46px, 15vw, 68px);
    }

    .checkout-form-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .checkout-field-full {
        grid-column: auto;
    }

    .checkout-summary {
        position: static;

        order: -1;
    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .checkout-header {
        padding: 20px 5vw;
    }

    .checkout-title {
        font-size: 8px;
    }

    .checkout-progress {
        padding-top: 20px;
        padding-bottom: 24px;
    }

    .checkout-summary {
        padding: 20px;
    }

    .checkout-summary-total strong {
        font-size: 24px;
    }

    .checkout-navigation {
        margin-top: 40px;
    }

    .checkout-continue {
        padding: 0 18px;
    }

}
 /* =========================================================
   CHECKOUT — ITEMS
   ========================================================= */

.checkout-items {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--checkout-border);
}

.checkout-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--checkout-border);
}

.checkout-item-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f1eee8;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.checkout-item-image-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Cormorant Garamond", serif;
    font-size: 14px;
    letter-spacing: 0.12em;
    color: var(--checkout-gold-dark);
}

.checkout-item-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2px 0;
}

.checkout-item-info h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--checkout-text);
}

.checkout-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 9px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--checkout-muted);
}

.checkout-item-stock {
    margin-top: 12px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--checkout-gold-dark);
}

.checkout-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
}

.checkout-item-price {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--checkout-text);
}


/* =========================================================
   CHECKOUT — QUANTITY
   ========================================================= */

.checkout-quantity {
    display: inline-flex;
    align-items: center;

    height: 38px;

    border: 1px solid var(--checkout-border);
    background: var(--checkout-card);
}

.checkout-qty-btn {
    width: 36px;
    height: 36px;

    border: 0;
    background: transparent;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;

    color: var(--checkout-text);

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.checkout-qty-btn:hover:not(:disabled) {
    background: rgba(178, 138, 74, 0.08);
    color: var(--checkout-gold-dark);
}

.checkout-qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.checkout-quantity > span {
    min-width: 34px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-align: center;

    color: var(--checkout-text);
}


/* =========================================================
   CHECKOUT — UNAVAILABLE
   ========================================================= */

.checkout-item.is-unavailable {
    opacity: 0.58;
}

.checkout-item.is-unavailable .checkout-item-stock {
    color: #a44f45;
}

.checkout-item.is-unavailable .checkout-item-image {
    position: relative;
}

.checkout-item.is-unavailable .checkout-item-image::after {
    content: "UNAVAILABLE";

    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(248, 246, 241, 0.58);

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;

    color: #6f6a63;
}


/* =========================================================
   CHECKOUT — EMPTY / LOADING
   ========================================================= */

.checkout-loading {
    min-height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: var(--checkout-muted);
}

.checkout-empty {
    min-height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px;

    border-bottom: 1px solid var(--checkout-border);

    text-align: center;
}

.checkout-empty span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;

    color: var(--checkout-gold-dark);
}

.checkout-empty p {
    max-width: 300px;
    margin: 10px 0 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    line-height: 1.7;

    color: var(--checkout-muted);
}


/* =========================================================
   CHECKOUT — SUMMARY ITEM
   ========================================================= */

.checkout-summary-items {
    display: flex;
    flex-direction: column;
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;

    padding: 12px 0;
}

.checkout-summary-item-image {
    width: 52px;
    height: 66px;

    overflow: hidden;

    background: #f1eee8;
}

.checkout-summary-item-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.checkout-summary-item-info {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.checkout-summary-item-name {
    overflow: hidden;

    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.15;

    color: var(--checkout-text);

    white-space: nowrap;
    text-overflow: ellipsis;
}

.checkout-summary-item-meta {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--checkout-muted);
}

.checkout-summary-item-price {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;

    white-space: nowrap;

    color: var(--checkout-text);
}


/* =========================================================
   CHECKOUT — DISABLED CONTINUE
   ========================================================= */

.checkout-continue:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}


/* =========================================================
   CHECKOUT — RESPONSIVE
   ========================================================= */

@media (max-width: 800px) {

    .checkout-item {
        grid-template-columns: 105px minmax(0, 1fr);
        gap: 18px;
    }

    .checkout-item-info h3 {
        font-size: 22px;
    }

    .checkout-item-bottom {
        margin-top: 16px;
    }

}


@media (max-width: 480px) {

    .checkout-item {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 14px;
        padding: 18px 0;
    }

    .checkout-item-info h3 {
        font-size: 19px;
    }

    .checkout-item-meta {
        gap: 5px 10px;
        font-size: 8px;
    }

    .checkout-item-stock {
        margin-top: 8px;
        font-size: 7px;
    }

    .checkout-item-bottom {
        align-items: flex-end;
        flex-direction: column;
        gap: 12px;
        margin-top: 14px;
    }

    .checkout-item-price {
        font-size: 11px;
    }

    .checkout-summary-item {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .checkout-summary-item-price {
        grid-column: 2;
        margin-top: -4px;
    }

}
body.checkout-mode #tabBar .tab-btn {
    display: none;
}

body.checkout-mode #tabBar .tab-btn.active {
    display: flex;
}

/* =====================================================
   CHECKOUT — PAYMENT
===================================================== */

.checkout-payment-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-top: 32px;
}


/* =====================================================
   PAYMENT OPTION
===================================================== */

.checkout-payment-option {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid #e5e0d7;
    background: #fff;
    cursor: pointer;
    transition:
        border-color .25s ease,
        background-color .25s ease,
        box-shadow .25s ease;
}

.checkout-payment-option:hover {
    border-color: rgba(178, 138, 74, .55);
}


/* SELECTED */

.checkout-payment-option:has(input:checked) {
    border-color: var(--gold, #b28a4a);
    background: #fcfaf6;
    box-shadow: 0 8px 28px rgba(55, 43, 25, .06);
}


/* =====================================================
   HIDDEN RADIO
===================================================== */

.checkout-payment-option > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}


/* =====================================================
   PAYMENT CONTENT
===================================================== */

.checkout-payment-content {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 86px;
    padding: 18px 20px;
    box-sizing: border-box;
}


/* =====================================================
   BANK LOGO
===================================================== */

.checkout-payment-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 76px;

    width: 76px;
    height: 50px;

    margin-right: 20px;

    border: 1px solid #eeeae2;
    background: #fff;
}

.checkout-payment-logo {
    display: block;

    width: 58px;
    height: 36px;

    object-fit: contain;
    object-position: center;
}


/* =====================================================
   PAYMENT INFO
===================================================== */

.checkout-payment-info {
    display: flex;
    flex-direction: column;
    justify-content: center;

    flex: 1;
    min-width: 0;

    gap: 4px;
}

.checkout-payment-info strong {
    display: block;

    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;

    letter-spacing: .08em;
    text-transform: uppercase;

    color: #292722;
}

.checkout-payment-info small {
    display: block;

    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;

    color: #817a70;
}

.checkout-payment-info small:last-child {
    margin-top: 1px;
}


/* =====================================================
   RADIO INDICATOR
===================================================== */

.checkout-payment-radio {
    position: relative;

    flex: 0 0 20px;

    width: 20px;
    height: 20px;

    margin-left: 20px;

    border: 1px solid #bdb6aa;
    border-radius: 50%;

    background: #fff;

    box-sizing: border-box;

    transition:
        border-color .25s ease,
        background-color .25s ease;
}

.checkout-payment-radio span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--gold, #b28a4a);

    transform: translate(-50%, -50%) scale(0);

    transition: transform .2s ease;
}

.checkout-payment-option input:checked
~ .checkout-payment-content
.checkout-payment-radio {
    border-color: var(--gold, #b28a4a);
}

.checkout-payment-option input:checked
~ .checkout-payment-content
.checkout-payment-radio span {
    transform: translate(-50%, -50%) scale(1);
}


/* =====================================================
   QRIS
===================================================== */

/*
   QRIS tidak menggunakan logo,
   jadi info langsung berada di sebelah kiri
*/

.checkout-payment-option
.checkout-payment-content:not(:has(.checkout-payment-logo-wrap)) {
    min-height: 76px;
}

.checkout-payment-option
.checkout-payment-content:not(:has(.checkout-payment-logo-wrap))
.checkout-payment-info {
    padding-left: 2px;
}


/* =====================================================
   PAYMENT LOADING
===================================================== */

.checkout-payment-list .checkout-loading {
    padding: 35px 20px;

    text-align: center;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #8a8378;
}


/* =====================================================
   EMPTY / ERROR
===================================================== */

.checkout-payment-empty,
.checkout-payment-error {
    width: 100%;
    padding: 24px;

    box-sizing: border-box;

    border: 1px solid #e5e0d7;
    background: #fff;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    line-height: 1.7;

    color: #817a70;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .checkout-payment-list {
        gap: 10px;
        margin-top: 24px;
    }

    .checkout-payment-content {
        min-height: 76px;
        padding: 14px;
    }

    .checkout-payment-logo-wrap {
        flex-basis: 62px;

        width: 62px;
        height: 44px;

        margin-right: 14px;
    }

    .checkout-payment-logo {
        width: 48px;
        height: 30px;
    }

    .checkout-payment-info strong {
        font-size: 11px;
    }

    .checkout-payment-info small {
        font-size: 9px;
    }

    .checkout-payment-radio {
        flex-basis: 18px;

        width: 18px;
        height: 18px;

        margin-left: 12px;
    }

    .checkout-payment-radio span {
        width: 7px;
        height: 7px;
    }
}
/* =====================================================
   CHECKOUT — STEP 4 REVIEW
===================================================== */

.checkout-review {
    width: 100%;
    margin-top: 32px;
    padding-bottom: 40px;
}


/* =====================================================
   REVIEW SECTION
===================================================== */

.checkout-review-section {
    width: 100%;
    margin-bottom: 28px;
}

.checkout-review-section:last-child {
    margin-bottom: 0;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.checkout-review-heading {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 12px;
    margin-top: 12px;
}

.checkout-review-heading span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    border: 1px solid rgba(178, 138, 74, .35);

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;

    letter-spacing: .08em;

    color: var(--gold, #b28a4a);
}

.checkout-review-heading strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: .16em;
    text-transform: uppercase;

    color: #403c35;
}


/* =====================================================
   REVIEW CARD
===================================================== */

.checkout-review-card {
    width: 100%;
    box-sizing: border-box;

    padding: 4px 20px;

    border: 1px solid #e5e0d7;
    background: #fff;
}


/* =====================================================
   REVIEW ROW
===================================================== */

.checkout-review-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;

    padding: 15px 0;

    border-bottom: 1px solid #eeeae3;
}

.checkout-review-row:last-child {
    border-bottom: none;
}

.checkout-review-row > span {
    flex: 0 0 120px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;

    letter-spacing: .12em;
    text-transform: uppercase;

    color: #938c80;
}

.checkout-review-row > strong {
    flex: 1;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.6;

    text-align: right;

    color: #292722;

    overflow-wrap: anywhere;
}


/* =====================================================
   PAYMENT DETAIL
===================================================== */

.checkout-review-payment-detail {
    padding: 14px 0;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    line-height: 1.7;

    color: #817a70;
}


/* =====================================================
   ORDER ITEMS
===================================================== */

.checkout-review-order {
    display: flex;
    flex-direction: column;

    width: 100%;

    border: 1px solid #e5e0d7;
    background: #fff;
}

.checkout-review-order-item {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 16px 20px;

    border-bottom: 1px solid #eeeae3;
}

.checkout-review-order-item:last-child {
    border-bottom: none;
}

.checkout-review-order-image {
    flex: 0 0 64px;

    width: 64px;
    height: 78px;

    object-fit: cover;

    background: #f5f2ec;
}

.checkout-review-order-info {
    flex: 1;
    min-width: 0;
}

.checkout-review-order-name {
    display: block;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;

    color: #292722;
}

.checkout-review-order-variant {
    display: block;

    margin-top: 5px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 9px;

    color: #8b8479;
}

.checkout-review-order-qty {
    display: block;

    margin-top: 4px;

    font-size: 9px;
    letter-spacing: .06em;

    color: #9a9287;
}

.checkout-review-order-price {
    flex: 0 0 auto;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;

    color: #292722;
}


/* =====================================================
   CONFIRMATION
===================================================== */

.checkout-review-confirm {
    margin-top: 28px;

    padding: 18px 20px;

    border: 1px solid rgba(178, 138, 74, .25);

    background: #fbf9f4;
}

.checkout-confirm-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    cursor: pointer;
}

.checkout-confirm-checkbox input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}

.checkout-confirm-box {
    position: relative;

    flex: 0 0 17px;

    width: 17px;
    height: 17px;

    margin-top: 1px;

    border: 1px solid #bdb6aa;
    background: #fff;

    box-sizing: border-box;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.checkout-confirm-checkbox input:checked
~ .checkout-confirm-box {
    border-color: var(--gold, #b28a4a);
    background: var(--gold, #b28a4a);
}

.checkout-confirm-checkbox input:checked
~ .checkout-confirm-box::after {
    content: "";

    position: absolute;

    left: 5px;
    top: 2px;

    width: 4px;
    height: 8px;

    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;

    transform: rotate(45deg);
}

.checkout-confirm-text {
    flex: 1;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    line-height: 1.7;

    color: #6f685e;
}


/* =====================================================
   CONTINUE BUTTON — REVIEW
===================================================== */

.checkout-review-confirm
+ .checkout-navigation {
    margin-top: 20px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .checkout-review {
        margin-top: 24px;
        padding-bottom: 30px;
    }

    .checkout-review-section {
        margin-bottom: 22px;
    }

    .checkout-review-card {
        padding: 2px 15px;
    }

    .checkout-review-row {
        gap: 15px;
        padding: 13px 0;
    }

    .checkout-review-row > span {
        flex-basis: 95px;
        font-size: 8px;
    }

    .checkout-review-row > strong {
        font-size: 10px;
    }

    .checkout-review-order-item {
        padding: 14px 15px;
        gap: 12px;
    }

    .checkout-review-order-image {
        flex-basis: 54px;
        width: 54px;
        height: 68px;
    }

    .checkout-review-order-name {
        font-size: 10px;
    }

    .checkout-review-order-price {
        font-size: 10px;
    }

    .checkout-review-confirm {
        padding: 16px;
        margin-top: 22px;
    }

    .checkout-confirm-text {
        font-size: 9px;
    }
}