:root {
    --bg: #f9f9f9;
    --surface: #ffffff;
    --surface-soft: #f5f5f5;
    --primary: #1f1f1f;
    --primary-dark: #0f0f0f;
    --secondary: #111111;
    --ink: #111111;
    --muted: #545454;
    --success: #585858;
    --warning: #626262;
    --danger: #4b4b4b;
    --border: #dcdcdc;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 6px 18px rgba(17, 17, 17, 0.08);
    --shadow-lg: 0 18px 45px rgba(17, 17, 17, 0.12);
    --section-gap: clamp(3.8rem, 7.6vw, 6rem);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #a9a9a9 transparent;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: transparent;
    box-shadow: none;
}

html::-webkit-scrollbar-track-piece,
body::-webkit-scrollbar-track-piece {
    background: transparent;
    box-shadow: none;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: rgba(140, 140, 140, 0.78);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: rgba(112, 112, 112, 0.88);
}

body {
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    color: var(--ink);
    background: #f8f8f8;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.has-fixed-header {
    padding-top: var(--header-fixed-height, 0px);
}

main.page-wrap {
    flex: 1 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-wrap {
    width: min(1280px, calc(100% - 2rem));
    margin-inline: auto;
}

.top-strip {
    border-bottom: 1px solid #d9d9d9;
    background: #f7f7f7;
}

.top-strip-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-strip-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: #545454;
    font-size: 0.95rem;
}

.top-strip-left span {
    position: relative;
}

.top-strip-left span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.52rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 0.85rem;
    background: #dadada;
}

.top-strip-right {
    color: #545454;
    font-size: 0.95rem;
}

.top-strip-right strong {
    color: #909090;
}

.site-header {
    z-index: 20;
    background: #eceff2;
    border-bottom: none;
    position: sticky;
    top: 0;
    transition: box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
    will-change: transform;
    padding: 0.5rem 0 0.52rem;
}

@media (min-width: 641px) {
    .site-header {
        background: #ffffff;
        border-bottom: none;
        padding: 0;
    }

    .site-header.is-sticky {
        background: #ffffff;
        box-shadow: none;
        backdrop-filter: none;
    }

    .site-header > .site-header-inner {
        width: 100%;
        max-width: none;
        margin-inline: 0;
        border: none;
        border-radius: 0;
        background: #ffffff;
        box-shadow: none;
        padding: 0.44rem 0.52rem 0.4rem;
    }

    .site-header-inner {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 0.42rem 0.62rem;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0.44rem 0.52rem 0.4rem;
    }

    .mobile-nav-toggle {
        width: 1.92rem;
        height: 1.92rem;
        border-color: #d8d8d8;
        background: #fafafa;
    }

    .brand {
        font-size: 1.02rem;
        letter-spacing: 0.02em;
        text-transform: none;
        gap: 0.3rem;
    }

    .brand-dot {
        display: none;
    }

    .header-top-right {
        gap: 0.56rem;
    }

    .header-top-links {
        gap: 0.92rem;
    }

    .header-top-links a {
        font-size: 0.79rem;
        font-weight: 500;
    }

    .header-actions {
        gap: 0.24rem;
    }

    .header-actions a,
    .header-actions button {
        width: 1.82rem;
        height: 1.82rem;
        font-size: 0.82rem;
    }

    .header-actions .badge-cart {
        top: -0.28rem;
        right: -0.22rem;
    }

    .main-nav {
        gap: 0.34rem;
        padding-top: 0.4rem;
        border-top: 1px solid #ececec;
    }

    .main-nav a,
    .main-nav button,
    .main-nav .header-search-inline-form {
        min-height: 1.78rem;
        padding: 0 0.74rem;
        font-size: 0.75rem;
        font-weight: 500;
    }

    .header-chip-category {
        min-width: 120px;
    }

    .header-search-pill {
        min-width: 215px;
        max-width: 260px;
        background: #f3f3f3;
        color: #575757;
    }

    .header-search-pill .header-icon {
        width: 0.9rem;
        height: 0.9rem;
    }
}

.site-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 90;
}

.site-header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
        "menu brand right"
        "nav nav nav";
    align-items: center;
    gap: 0.72rem 0.95rem;
    min-height: 0;
    padding: 0.72rem 0.82rem 0.76rem;
    border: 1px solid #dfdfdf;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(18, 18, 18, 0.06);
}

.site-header.is-sticky {
    background: #ffffff;
    box-shadow: none;
    backdrop-filter: none;
}

.brand {
    grid-area: brand;
    justify-self: center;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.brand-vip-crown {
    position: relative;
    width: 0.98rem;
    height: 0.98rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.06rem;
    border: 1px solid rgba(220, 179, 84, 0.38);
    background: radial-gradient(circle at 30% 30%, #fff8de 0%, #f7dc8d 48%, #e4bb53 100%);
    box-shadow: 0 0 0 0 rgba(232, 186, 78, 0.4);
    animation: vipPulse 2s ease-out infinite, vipCrownFloat 3.2s ease-in-out infinite;
}

.brand-vip-crown::before,
.brand-vip-crown::after {
    content: "";
    position: absolute;
    width: 0.24rem;
    height: 0.24rem;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, #fff8e4 0%, #f2cf77 100%);
    opacity: 0;
    pointer-events: none;
}

.brand-vip-crown::before {
    top: -0.14rem;
    right: -0.12rem;
    animation: vipCrownSparkle 2.9s ease-in-out infinite;
}

.brand-vip-crown::after {
    bottom: -0.12rem;
    left: -0.12rem;
    width: 0.2rem;
    height: 0.2rem;
    animation: vipCrownSparkle 2.9s ease-in-out 1.1s infinite;
}

.brand-vip-crown svg {
    width: 0.6rem;
    height: 0.6rem;
    fill: #6d4a09;
    display: block;
}

.brand-logo-image {
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(187, 187, 187, 0.55);
    background: #ffffff;
}

.brand-logo-image-admin {
    width: 1.72rem;
    height: 1.72rem;
    border-radius: 7px;
}

.brand-dot {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #909090, #bfbfbf);
    box-shadow: 0 0 0 5px rgba(146, 146, 146, 0.14);
}

.main-nav {
    grid-area: nav;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    min-width: 0;
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.main-nav a,
.main-nav button,
.main-nav .header-search-inline-form {
    flex-shrink: 0;
    min-height: 2rem;
    padding: 0 0.86rem;
    border: 1px solid #e4e4e4;
    border-radius: 999px;
    background: #f8f8f8;
    color: #2d2d2d;
    font-size: 0.83rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.34rem;
    white-space: nowrap;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0;
}

.main-nav button {
    cursor: pointer;
    font-family: inherit;
}

.main-nav a:hover,
.main-nav button:hover {
    border-color: #d5d5d5;
    background: #f1f1f1;
    color: #121212;
}

.header-chip-category {
    min-width: 122px;
    justify-content: space-between;
    background: #f3f3f3;
}

.header-category-menu {
    position: relative;
    flex-shrink: 0;
}

.header-category-toggle {
    width: 100%;
}

.header-category-toggle[aria-expanded="true"] {
    border-color: #d0d0d0;
    background: #eeeeee;
}

.header-category-menu.is-open .header-category-toggle .header-icon {
    transform: rotate(180deg);
}

.header-category-toggle .header-icon {
    transition: transform 0.2s ease;
}

.header-category-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 220px;
    max-height: min(320px, 56vh);
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(24, 24, 24, 0.14);
    padding: 0.45rem;
    display: grid;
    gap: 0.28rem;
    z-index: 140;
}

.header-category-dropdown a {
    width: 100%;
    min-height: 2.1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    background: #f8f8f8;
    color: #303030;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0.72rem;
    font-size: 0.83rem;
    font-weight: 600;
    line-height: 1;
    transition: all 0.2s ease;
}

.header-category-dropdown a:hover {
    border-color: #e1e1e1;
    background: #f1f1f1;
}

.header-chip-category .header-icon {
    width: 0.95rem;
    height: 0.95rem;
    stroke-width: 2.2;
}

.header-search-pill {
    flex: 1 1 240px;
    min-width: 195px;
    max-width: 320px;
    color: #6b6b6b;
}

.main-nav.no-header-brand-options .header-search-pill,
.main-nav.no-header-brand-options .header-search-inline-form {
    flex: 1 1 420px;
    min-width: 240px;
    max-width: none;
}

.main-nav.brand-chip-count-1 .header-search-pill,
.main-nav.brand-chip-count-1 .header-search-inline-form {
    flex: 1 1 400px;
    max-width: none;
}

.main-nav.brand-chip-count-2 .header-search-pill,
.main-nav.brand-chip-count-2 .header-search-inline-form {
    flex: 1 1 380px;
    max-width: none;
}

.main-nav.brand-chip-count-3 .header-search-pill,
.main-nav.brand-chip-count-3 .header-search-inline-form,
.main-nav.brand-chip-count-4 .header-search-pill,
.main-nav.brand-chip-count-4 .header-search-inline-form {
    flex: 1 1 340px;
    max-width: none;
}

.main-nav .header-search-inline-form {
    margin: 0;
    justify-content: space-between;
    gap: 0.34rem;
    padding-inline: 0.9rem 0.68rem;
    background: #f3f3f3;
}

.main-nav .header-search-inline-form:hover {
    border-color: #d5d5d5;
    background: #f1f1f1;
    color: #121212;
}

.main-nav .header-search-inline-form:focus-within {
    border-color: #cfcfcf;
    background: #ffffff;
    color: #121212;
}

.header-search-inline-form input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1;
    padding: 0;
    font-family: inherit;
}

.header-search-inline-form input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
    border: 0 !important;
    border-radius: 0;
    box-shadow: none !important;
    background-color: transparent !important;
}

.header-search-inline-form input[type="search"]::-webkit-search-decoration,
.header-search-inline-form input[type="search"]::-webkit-search-cancel-button,
.header-search-inline-form input[type="search"]::-webkit-search-results-button,
.header-search-inline-form input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.header-search-inline-form input::placeholder {
    color: #858585;
    opacity: 1;
}

.header-search-inline-form .header-icon {
    width: 0.95rem;
    height: 0.95rem;
    stroke-width: 2.2;
    flex-shrink: 0;
    pointer-events: none;
}

.header-search-inline-submit {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: inherit;
    line-height: 0;
}

.header-search-inline-submit:hover {
    color: #121212;
}

.header-search-inline-submit:focus-visible {
    outline: 2px solid #8c8c8c;
    outline-offset: 2px;
    border-radius: 6px;
}

.header-top-right {
    grid-area: right;
    justify-self: end;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
}

.header-top-links {
    display: inline-flex;
    align-items: center;
    gap: 1.15rem;
}

.header-top-links a {
    font-size: 0.86rem;
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.2s ease;
}

.header-top-links a:hover {
    color: #161616;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.header-actions a,
.header-actions button {
    width: 2.12rem;
    height: 2.12rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    line-height: 0;
    font-size: 1rem;
    color: #404040;
    border: 1px solid #dedede;
    background: #ffffff;
    transition: all 0.2s ease;
    position: relative;
}

.header-actions a:hover {
    border-color: #cfcfcf;
    background: #f5f5f5;
    color: #1a1a1a;
}

.header-actions button:hover {
    border-color: #cfcfcf;
    background: #f5f5f5;
    color: #1a1a1a;
}

.header-theme-toggle {
    display: none;
}

.mobile-nav-toggle {
    grid-area: menu;
    display: inline-flex;
    width: 2.15rem;
    height: 2.15rem;
    border: 1px solid #dddddd;
    border-radius: 999px;
    background: #f9f9f9;
    color: #2b2b2b;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 0;
    flex-shrink: 0;
}

.mobile-nav-toggle:hover {
    border-color: #d4d4d4;
    background: #f9f9f9;
    color: #1a1a1a;
}

.mobile-nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

.mobile-nav-drawer.is-open {
    pointer-events: auto;
}

.mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(12, 12, 12, 0.52);
    opacity: 0;
    transition: opacity 0.22s ease;
    cursor: pointer;
}

.mobile-nav-drawer.is-open .mobile-nav-backdrop {
    opacity: 1;
}

.mobile-nav-panel {
    position: relative;
    width: min(360px, 86vw);
    height: 100%;
    background: #f9f9f9;
    border-left: 1px solid #dcdcdc;
    box-shadow: -16px 0 32px rgba(24, 24, 24, 0.2);
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
    transform: translateX(100%);
    transition: transform 0.22s ease;
}

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

.mobile-nav-head {
    min-height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.mobile-nav-head strong {
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.mobile-nav-close {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    border: 1px solid #e1e1e1;
    background: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    color: #2b2b2b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-nav-links {
    display: grid;
    gap: 0.45rem;
}

.mobile-nav-quickactions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
}

.mobile-nav-icon-link,
.mobile-nav-icon-btn {
    min-height: 2.7rem;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
    background: #ffffff;
    color: #1b1b1b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
}

.mobile-nav-icon-btn {
    width: 100%;
    cursor: pointer;
    padding: 0;
}

.mobile-nav-icon-link:hover,
.mobile-nav-icon-btn:hover {
    border-color: #d6d6d6;
    background: #f8f8f8;
    color: #1a1a1a;
}

.mobile-nav-icon-link .header-icon,
.mobile-nav-icon-btn .header-icon {
    width: 1.14rem;
    height: 1.14rem;
}

.mobile-nav-link {
    width: 100%;
    min-height: 2.55rem;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
    background: #ffffff;
    color: #1b1b1b;
    padding: 0.65rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.93rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    border-color: #d6d6d6;
    background: #f8f8f8;
    color: #1a1a1a;
}

.mobile-nav-divider {
    height: 1px;
    background: #e2e2e2;
    margin: 0.12rem 0;
}

.mobile-nav-count {
    min-width: 1.3rem;
    height: 1.3rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: #909090;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.67rem;
    font-weight: 700;
}

.mobile-nav-icon-link .mobile-nav-count {
    position: absolute;
    top: 0.26rem;
    right: 0.26rem;
    min-width: 1.08rem;
    height: 1.08rem;
    font-size: 0.62rem;
    padding-inline: 0.18rem;
}

.mobile-nav-account {
    display: grid;
    gap: 0.45rem;
}

.mobile-nav-profile-toggle {
    width: 100%;
    min-height: 3rem;
    border-radius: 11px;
    border: 1px solid #e1e1e1;
    background: #ffffff;
    color: #1b1b1b;
    padding: 0.5rem 0.62rem;
    display: flex;
    align-items: center;
    gap: 0.58rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-nav-profile-toggle:hover {
    border-color: #d6d6d6;
    background: #f8f8f8;
}

.mobile-nav-avatar {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid #dbdbdb;
    background: #f4f4f4;
    flex-shrink: 0;
}

.mobile-nav-profile-meta {
    min-width: 0;
    display: grid;
    gap: 0.02rem;
    text-align: left;
}

.mobile-nav-profile-meta strong {
    color: #1b1b1b;
    font-size: 0.9rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-nav-profile-meta small {
    color: #6d6d6d;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.mobile-nav-profile-caret {
    margin-left: auto;
    color: #5f5f5f;
    font-size: 0.74rem;
    transition: transform 0.2s ease;
}

.mobile-nav-profile-toggle[aria-expanded="true"] .mobile-nav-profile-caret {
    transform: rotate(180deg);
}

.mobile-nav-profile-menu {
    display: grid;
    gap: 0.45rem;
    padding-top: 0.1rem;
}

.mobile-nav-user {
    margin: 0;
    padding: 0.58rem 0.68rem;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background: #ffffff;
    color: #414141;
    font-size: 0.82rem;
    line-height: 1.45;
}

.mobile-nav-user strong {
    color: #1b1b1b;
}

.mobile-nav-role {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.4rem;
    margin-left: 0.35rem;
    border-radius: 999px;
    font-size: 0.65rem;
    letter-spacing: 0.03em;
    font-weight: 700;
    background: #f0f0f0;
    color: #484848;
}

.mobile-nav-profile-meta .mobile-nav-role {
    margin-left: 0;
    margin-top: 0.14rem;
}

.mobile-nav-auth-btn,
.mobile-nav-logout-btn {
    width: 100%;
    min-height: 2.6rem;
    border-radius: 10px;
    border: 1px solid transparent;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.mobile-nav-auth-btn {
    background: #949494;
    color: #ffffff;
}

.mobile-nav-auth-btn:hover {
    background: #707070;
}

.mobile-nav-logout-form {
    margin: 0;
}

.mobile-nav-logout-btn {
    border-color: #cfcfcf;
    background: #f8f8f8;
    color: #717171;
}

.mobile-nav-logout-btn:hover {
    background: #f4f4f4;
}

.header-account-menu {
    position: relative;
}

.header-account-toggle {
    width: 2.35rem;
    height: 2.35rem;
}

.header-account-toggle--vip {
    position: relative;
}

.vip-sparkle-dot {
    position: absolute;
    top: -0.14rem;
    right: -0.14rem;
    width: 0.66rem;
    height: 0.66rem;
    border-radius: 999px;
    border: 1px solid #ebc668;
    background: radial-gradient(circle at 30% 30%, #fff9df 0%, #f8dc80 45%, #e5bc53 100%);
    box-shadow: 0 0 0 0 rgba(232, 186, 78, 0.45);
    pointer-events: none;
    animation: vipPulse 1.9s ease-out infinite;
}

.header-account-dropdown {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(24, 24, 24, 0.14);
    padding: 0.7rem;
    display: grid;
    gap: 0.35rem;
    z-index: 40;
}

.header-account-user {
    margin: 0;
    font-size: 0.8rem;
    color: #707070;
    padding: 0.22rem 0.25rem 0.4rem;
    border-bottom: 1px solid #ebebeb;
}

.header-account-user strong {
    color: #1b1b1b;
}

.header-account-role {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.45rem;
    margin-left: 0.35rem;
    border-radius: 999px;
    font-size: 0.66rem;
    letter-spacing: 0.03em;
    font-weight: 700;
    color: #484848;
    background: #f0f0f0;
}

.vip-badge-icon {
    width: 0.74rem;
    height: 0.74rem;
    display: block;
    fill: currentColor;
    flex-shrink: 0;
}

.header-account-role-vip,
.mobile-nav-role-vip {
    position: relative;
    gap: 0.24rem;
    overflow: hidden;
    color: #654508;
    border: 1px solid #ebcb73;
    background: linear-gradient(135deg, #fff6c7 0%, #f7dd83 44%, #e9bf58 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 8px 14px rgba(190, 142, 40, 0.18);
}

.header-account-role-vip::after,
.mobile-nav-role-vip::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, 0.62) 48%, transparent 72%);
    transform: translateX(-130%);
    animation: vipShimmer 2.9s ease-in-out infinite;
}

.header-account-role-vip > span,
.mobile-nav-role-vip > span,
.header-account-role-vip .vip-badge-icon,
.mobile-nav-role-vip .vip-badge-icon {
    position: relative;
    z-index: 1;
}

.vip-product-kicker {
    margin: 0 0 0.32rem;
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    width: fit-content;
    max-width: 100%;
    padding: 0.2rem 0.56rem 0.22rem;
    border-radius: 999px;
    border: 1px solid #ebcb73;
    background: linear-gradient(135deg, #fff6c7 0%, #f7dd83 44%, #e9bf58 100%);
    color: #5a3d06;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 8px 14px rgba(190, 142, 40, 0.18);
}

.vip-product-kicker::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, 0.62) 48%, transparent 72%);
    transform: translateX(-130%);
    animation: vipShimmer 2.9s ease-in-out infinite;
}

.vip-product-kicker > span,
.vip-product-kicker .vip-product-kicker-icon {
    position: relative;
    z-index: 1;
}

.vip-product-kicker-icon {
    width: 0.7rem;
    height: 0.7rem;
    display: block;
    fill: currentColor;
    flex-shrink: 0;
    animation: vipCrownFloat 3.1s ease-in-out infinite;
}

.deal-info-inline .vip-product-kicker {
    margin-bottom: 0.28rem;
}

.shop-list-content .vip-product-kicker {
    margin-bottom: 0.14rem;
}

.vip-board-shell {
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
}

.vip-board-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid #dcdde4;
    border-radius: 24px;
    padding: clamp(1.2rem, 2.8vw, 1.9rem);
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, 1fr);
    gap: 1rem;
    background:
        radial-gradient(120% 140% at 2% -10%, rgba(247, 221, 131, 0.36) 0%, rgba(247, 221, 131, 0) 56%),
        linear-gradient(135deg, #fcfcff 0%, #f5f6fa 52%, #eceff7 100%);
    box-shadow: 0 14px 34px rgba(20, 24, 37, 0.08);
}

.vip-board-hero::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    top: -120px;
    right: -70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 194, 93, 0.42) 0%, rgba(234, 194, 93, 0) 72%);
    pointer-events: none;
}

.vip-board-hero-copy {
    position: relative;
    z-index: 1;
}

.vip-board-kicker {
    margin: 0;
    display: inline-flex;
    align-items: center;
    padding: 0.26rem 0.62rem;
    border-radius: 999px;
    border: 1px solid #ebcb73;
    background: linear-gradient(135deg, #fff6c7 0%, #f7dd83 44%, #e9bf58 100%);
    color: #5a3d06;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vip-board-hero h1 {
    margin: 0.62rem 0 0.56rem;
    font-size: clamp(1.5rem, 3.6vw, 2.2rem);
    line-height: 1.12;
}

.vip-board-hero p {
    margin: 0;
    color: #4b4d56;
    max-width: 62ch;
    line-height: 1.72;
}

.vip-board-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.vip-board-metrics {
    display: grid;
    gap: 0.64rem;
    align-content: center;
}

.vip-board-metric {
    border: 1px solid #dbdbe2;
    border-radius: 14px;
    padding: 0.76rem 0.86rem;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(4px);
}

.vip-board-metric span {
    display: block;
    font-size: 0.75rem;
    color: #626572;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.vip-board-metric strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 1.34rem;
    letter-spacing: -0.01em;
}

.vip-board-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.95rem;
    align-items: start;
}

.vip-board-feature-card,
.vip-board-mini-card,
.vip-board-card,
.vip-article-main,
.vip-article-aside {
    border: 1px solid #dddee4;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(18, 25, 40, 0.06);
}

.vip-board-feature-card {
    padding: 1.1rem 1.15rem 1.18rem;
    align-self: start;
}

.vip-board-date {
    margin: 0;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6a6d78;
    font-weight: 700;
}

.vip-board-feature-card h2 {
    margin: 0.52rem 0 0.6rem;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    line-height: 1.2;
}

.vip-board-feature-card p {
    margin: 0;
    color: #4f5160;
    line-height: 1.72;
}

.vip-board-feature-list {
    display: grid;
    gap: 0.8rem;
    align-content: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vip-board-mini-card {
    padding: 0.9rem 0.92rem 0.95rem;
}

.vip-board-mini-card h3 {
    margin: 0.45rem 0 0.46rem;
    font-size: 1rem;
    line-height: 1.35;
}

.vip-board-mini-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.62;
    color: #5b5d6b;
}

.vip-board-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.92rem;
}

.vip-board-card {
    padding: 0.92rem 0.94rem 1rem;
    display: grid;
    gap: 0.66rem;
    align-content: start;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.vip-board-card:hover,
.vip-board-card:focus-within {
    transform: translateY(-3px);
    border-color: #cfcfda;
    box-shadow: 0 16px 28px rgba(17, 24, 39, 0.12);
}

.vip-board-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
}

.vip-board-card-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.45rem;
    padding: 0 0.52rem;
    border-radius: 999px;
    border: 1px solid #ebcb73;
    background: linear-gradient(135deg, #fff6c7 0%, #f7dd83 44%, #e9bf58 100%);
    color: #5a3d06;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vip-board-card-head time {
    font-size: 0.75rem;
    color: #686b76;
}

.vip-board-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
}

.vip-board-card p {
    margin: 0;
    color: #5b5d6b;
    line-height: 1.64;
    font-size: 0.92rem;
}

.vip-board-read-link {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    width: fit-content;
    margin-top: 0.16rem;
    color: #23242b;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.86rem;
    border-bottom: 1px solid rgba(35, 36, 43, 0.38);
}

.vip-board-read-link:hover {
    border-bottom-color: #23242b;
}

.vip-board-card-empty {
    grid-column: 1 / -1;
    gap: 0.48rem;
}

.vip-board-pagination {
    margin-top: 0.2rem;
}

.vip-article-shell {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(260px, 1fr);
    gap: 1rem;
    align-items: start;
}

.vip-article-main {
    padding: clamp(1rem, 2.5vw, 1.5rem);
}

.vip-article-main h1 {
    margin: 0.66rem 0 0.58rem;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    line-height: 1.14;
}

.vip-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.55rem;
    margin-bottom: 0.78rem;
}

.vip-article-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 1.7rem;
    padding: 0.16rem 0.62rem;
    border-radius: 999px;
    background: #f4f5f9;
    border: 1px solid #e1e2e8;
    color: #5f6270;
    font-size: 0.78rem;
    font-weight: 600;
}

.vip-article-lead {
    margin: 0 0 0.9rem;
    color: #505360;
    font-size: 1rem;
    line-height: 1.72;
}

.vip-article-content {
    white-space: pre-line;
    line-height: 1.84;
    color: #1f2026;
    font-size: 0.99rem;
}

.vip-article-aside {
    padding: 1rem;
}

.vip-article-aside h3 {
    margin: 0 0 0.75rem;
    font-size: 1.08rem;
}

.vip-article-side-list {
    display: grid;
    gap: 0.62rem;
}

.vip-article-side-link {
    display: grid;
    gap: 0.26rem;
    padding: 0.72rem 0.78rem;
    border: 1px solid #e2e4ea;
    border-radius: 12px;
    text-decoration: none;
    color: #1f2026;
    background: #fafbff;
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.vip-article-side-link:hover {
    transform: translateY(-1px);
    border-color: #cfd2dc;
    background: #ffffff;
}

.vip-article-side-date {
    font-size: 0.74rem;
    color: #666977;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 1080px) {
    .vip-board-hero {
        grid-template-columns: 1fr;
    }

    .vip-board-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vip-board-feature {
        grid-template-columns: 1fr;
    }

    .vip-board-feature-list {
        grid-template-columns: 1fr;
    }

    .vip-board-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vip-article-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .vip-board-metrics {
        grid-template-columns: 1fr;
    }

    .vip-board-grid {
        grid-template-columns: 1fr;
    }

    .vip-board-card,
    .vip-board-feature-card,
    .vip-board-mini-card,
    .vip-article-main,
    .vip-article-aside {
        border-radius: 16px;
    }
}

@keyframes vipShimmer {
    0%,
    28% {
        transform: translateX(-130%);
    }

    68%,
    100% {
        transform: translateX(140%);
    }
}

@keyframes vipPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 186, 78, 0.45);
    }

    72% {
        box-shadow: 0 0 0 0.48rem rgba(232, 186, 78, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(232, 186, 78, 0);
    }
}

@keyframes vipCrownFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-1px);
    }
}

@keyframes vipCrownSparkle {
    0%,
    22%,
    100% {
        opacity: 0;
        transform: scale(0.35);
    }

    40% {
        opacity: 0.9;
        transform: scale(1);
    }

    64% {
        opacity: 0;
        transform: scale(1.22);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vip-sparkle-dot,
    .header-account-role-vip::after,
    .mobile-nav-role-vip::after,
    .brand-vip-crown,
    .brand-vip-crown::before,
    .brand-vip-crown::after,
    .vip-product-kicker::after,
    .vip-product-kicker-icon,
    .product-detail-category-vip::after,
    .product-detail-category-vip-icon {
        animation: none;
    }

    .portrait-gallery-track.is-animated {
        animation: none;
    }

    .portrait-gallery-item[aria-hidden="true"] {
        display: none;
    }
}

.header-account-dropdown a,
.header-account-logout-form button {
    width: 100%;
    height: auto;
    min-height: 2.3rem;
    border-radius: 8px;
    border: 1px solid transparent;
    background: #f8f8f8;
    color: #303030;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0.75rem;
    font-family: inherit;
    font-size: 0.87rem;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-account-dropdown a:hover,
.header-account-logout-form button:hover {
    border-color: #e1e1e1;
    background: #f1f1f1;
}

.header-account-logout-form {
    margin: 0;
}

.header-account-logout-form button {
    background: #f8f8f8;
    color: #717171;
}

.header-account-logout-form button:hover {
    border-color: #cecece;
    background: #f4f4f4;
}

.header-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.05;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.badge-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
    height: 1.4rem;
    padding: 0 0.3rem;
    margin-left: 0.3rem;
    border-radius: 999px;
    background: #909090;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
}

.header-actions .badge-cart {
    position: absolute;
    top: -0.45rem;
    right: -0.45rem;
    margin-left: 0;
    min-width: 1.2rem;
    height: 1.2rem;
    font-size: 0.66rem;
    padding-inline: 0.2rem;
}

body.is-cart-drawer-open {
    overflow: hidden;
}

body.is-mobile-nav-open {
    overflow: hidden;
}

body.is-search-modal-open {
    overflow: hidden;
}

body.is-admin-login-modal-open {
    overflow: hidden;
}

body.is-shop-filter-open {
    overflow: hidden;
}

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

.cart-drawer.is-open {
    pointer-events: auto;
}

.cart-drawer-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(12, 12, 12, 0.58);
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.cart-drawer.is-open .cart-drawer-backdrop {
    opacity: 1;
}

.cart-drawer-panel {
    position: relative;
    width: min(390px, 92vw);
    height: 100%;
    background: #f8f8f8;
    border-left: 1px solid #dcdcdc;
    box-shadow: -18px 0 45px rgba(12, 12, 12, 0.28);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.is-open .cart-drawer-panel {
    transform: translateX(0);
}

.cart-drawer-head {
    min-height: 78px;
    padding: 1.15rem 1.15rem 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    border-bottom: 1px solid #e4e4e4;
    background: #ffffff;
}

.cart-drawer-head h3 {
    margin: 0;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 1.68rem;
    color: #222222;
}

.cart-drawer-close {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    color: #393939;
    font-size: 1.6rem;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-drawer-close:hover {
    border-color: #949494;
    color: #949494;
}

.cart-drawer-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 0.75rem 1.15rem 0.8rem;
}

.cart-drawer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
}

.cart-drawer-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.95rem 0;
    border-bottom: 1px solid #e4e4e4;
}

.cart-drawer-thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.cart-drawer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-drawer-thumb span {
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #404040, #737373);
}

.cart-drawer-meta h4 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
    color: #373737;
}

.cart-drawer-meta p {
    margin: 0.35rem 0 0;
    color: #737373;
    font-size: 0.9rem;
}

.cart-drawer-item-price {
    color: inherit;
}

.cart-drawer-item-price-old {
    text-decoration: line-through;
    opacity: 0.62;
    margin-right: 0.22rem;
    font-size: 0.82rem;
}

.cart-drawer-remove-form {
    margin: 0;
}

.cart-drawer-remove {
    width: 1.9rem;
    height: 1.9rem;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    color: #868686;
    border-radius: 8px;
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.cart-drawer-remove svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-drawer-remove:hover {
    border-color: #949494;
    color: #949494;
}

.cart-drawer-empty {
    border: 1px dashed #dbdbdb;
    border-radius: 12px;
    background: #ffffff;
    padding: 1rem;
    display: grid;
    gap: 0.7rem;
}

.cart-drawer-empty p {
    margin: 0;
    color: #555555;
}

.cart-drawer-foot {
    border-top: 1px solid #e4e4e4;
    background: #ffffff;
    padding: 0.95rem 1.15rem 1.15rem;
    display: grid;
    gap: 0.85rem;
}

.cart-drawer-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.cart-drawer-subtotal span {
    color: #616161;
    font-size: 0.95rem;
}

.cart-drawer-subtotal strong {
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 1.05rem;
    color: #2a2a2a;
}

.cart-drawer-actions {
    display: grid;
    gap: 0.55rem;
}

.cart-drawer-btn {
    width: 100%;
    min-height: 2.6rem;
    border-radius: 8px;
    border: 1px solid #1f1f1f;
    background: #1f1f1f;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.98rem;
    transition: all 0.2s ease;
}

.cart-drawer-btn:hover {
    background: #141414;
    border-color: #141414;
}

.search-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.search-modal.is-open {
    pointer-events: auto;
}

.search-modal-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(251, 251, 251, 0.9);
    backdrop-filter: blur(1px);
    opacity: 0;
    transition: opacity 0.22s ease;
    cursor: pointer;
}

.search-modal.is-open .search-modal-backdrop {
    opacity: 1;
}

.search-modal-close {
    position: absolute;
    top: clamp(0.7rem, 2.2vw, 1.3rem);
    right: clamp(0.75rem, 2.2vw, 1.35rem);
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    background: transparent;
    color: #191919;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease, color 0.2s ease;
}

.search-modal.is-open .search-modal-close {
    opacity: 1;
    transform: none;
}

.search-modal-close:hover {
    color: #949494;
}

.search-modal-dialog {
    position: relative;
    width: min(680px, calc(100% - 2rem));
    padding: clamp(1.7rem, 4vw, 2.9rem) clamp(0.5rem, 2vw, 1rem);
    text-align: center;
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.search-modal.is-open .search-modal-dialog {
    transform: none;
    opacity: 1;
}

.search-modal-hint {
    margin: 0;
    color: #363636;
    font-size: clamp(1rem, 1.8vw, 2rem);
    line-height: 1.5;
}

.search-modal-form {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border-bottom: 1px solid #363636;
    gap: 0.6rem;
}

.search-modal-form input {
    border: none;
    border-radius: 0;
    min-height: clamp(3rem, 6vw, 4rem);
    font-size: clamp(1.35rem, 3.2vw, 2.1rem);
    color: #2a2a2a;
    text-align: center;
    background: transparent;
    padding: 0 0.3rem 0.3rem;
}

.search-modal-form input::placeholder {
    color: #5b5b5b;
}

.search-modal-form input:focus {
    box-shadow: none;
}

.search-modal-form button {
    width: 2.6rem;
    height: 2.6rem;
    border: none;
    background: transparent;
    color: #474747;
    display: grid;
    place-items: center;
    cursor: pointer;
    margin-bottom: 0.18rem;
}

.search-modal-form button:hover {
    color: #949494;
}

.search-modal-form svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.admin-login-modal {
    position: fixed;
    inset: 0;
    z-index: 135;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.admin-login-modal.is-open {
    pointer-events: auto;
}

.admin-login-modal-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(16, 16, 16, 0.62);
    opacity: 0;
    transition: opacity 0.22s ease;
    cursor: pointer;
}

.admin-login-modal.is-open .admin-login-modal-backdrop {
    opacity: 1;
}

.admin-login-modal-dialog {
    position: relative;
    width: min(430px, calc(100% - 1.6rem));
    background: #ffffff;
    border: 1px solid #dfdfdf;
    border-radius: 16px;
    padding: 1.2rem 1.05rem 1rem;
    box-shadow: 0 24px 45px rgba(12, 12, 12, 0.28);
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.admin-login-modal.is-open .admin-login-modal-dialog {
    transform: none;
    opacity: 1;
}

.admin-login-modal-close {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    width: 2rem;
    height: 2rem;
    border: 1px solid #dddddd;
    border-radius: 999px;
    background: #ffffff;
    color: #404040;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
}

.admin-login-modal-close:hover {
    border-color: #949494;
    color: #949494;
}

.admin-login-modal-kicker {
    margin: 0;
    color: #777777;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
}

.admin-login-modal-dialog h3 {
    margin: 0.35rem 0 0;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 1.7rem;
    color: #282828;
}

.admin-login-modal-desc {
    margin: 0.55rem 0 0;
    color: #676767;
    font-size: 0.92rem;
    line-height: 1.6;
}

.admin-login-modal-form {
    margin-top: 0.95rem;
    display: grid;
    gap: 0.82rem;
}

.admin-login-modal-form .btn {
    min-height: 2.9rem;
    width: 100%;
}

.admin-login-modal-form .btn:disabled {
    opacity: 0.56;
    cursor: not-allowed;
    transform: none;
    background: #d0d0d0;
}

.account-auth-tabs {
    margin-top: 0.88rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
}

.account-auth-tab {
    border: 1px solid #e1e1e1;
    background: #ffffff;
    color: #454545;
    min-height: 2.35rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0 0.3rem;
    text-align: center;
}

.account-auth-tab:hover {
    border-color: #c5c5c5;
}

.account-auth-tab.is-active {
    border-color: #949494;
    background: #f8f8f8;
    color: #717171;
}

.account-auth-panel {
    margin-top: 0.2rem;
}

.admin-login-modal.is-otp-step .account-auth-tabs {
    display: none;
}

.field-note {
    font-size: 0.8rem;
    color: #717171;
}

.field-note.is-loading {
    color: #4e4e4e;
}

.field-note.is-ok {
    color: #484848;
}

.field-note.is-error {
    color: #4b4b4b;
}

.flash-stack {
    margin-top: 1rem;
    display: grid;
    gap: 0.7rem;
}

.flash {
    border-radius: var(--radius-md);
    padding: 0.95rem 1rem;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.92rem;
}

.flash-success {
    background: #f7f7f7;
    border-color: #e1e1e1;
    color: #484848;
}

.flash-error {
    background: #f6f6f6;
    border-color: #dadada;
    color: #414141;
}

.member-dashboard-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.member-dashboard-page .section-title {
    margin-top: 1.35rem;
}

.member-dashboard-page .section-title h2 {
    overflow-wrap: anywhere;
}

.member-dashboard-head > :first-child {
    min-width: 0;
    flex: 1 1 280px;
}

.member-kicker {
    margin: 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #737373;
    font-weight: 700;
}

.member-dashboard-head h3 {
    margin: 0.32rem 0 0;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.26rem, 2.2vw, 1.72rem);
    color: #1f1f1f;
}

.member-dashboard-quick {
    display: grid;
    gap: 0.45rem;
    justify-items: start;
    min-width: 220px;
}

.member-dashboard-quick span {
    color: #686868;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.member-dashboard-quick strong {
    color: #1b1b1b;
}

.member-dashboard-quick form {
    margin: 0;
}

.member-dashboard-quick .btn {
    min-height: 2.5rem;
    width: auto;
}

.member-dashboard-vip-form {
    display: flex;
    align-items: flex-end;
    gap: 0.55rem;
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
}

.member-dashboard-vip-field {
    margin: 0;
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 460px;
}

.member-dashboard-vip-form .btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.member-dashboard-quick-overview {
    display: grid;
    gap: 0.55rem;
    flex: 1 1 360px;
    min-width: 280px;
    max-width: 620px;
}

.member-dashboard-quick-overview-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    min-width: 0;
}

.member-dashboard-quick-overview-meta span {
    flex: 0 0 auto;
    min-width: 0;
    white-space: nowrap;
}

.member-dashboard-quick-overview-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    min-width: 0;
}

.member-dashboard-quick-overview-actions .btn {
    flex: 0 0 auto;
    min-width: 0;
    min-height: 2.35rem;
    padding: 0.56rem 0.95rem;
    font-size: 0.95rem;
    justify-content: center;
    white-space: nowrap;
}

.member-dashboard-quick-vip-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.member-dashboard-quick-vip-actions .btn {
    flex: 0 0 auto;
    min-width: 220px;
    justify-content: center;
    white-space: nowrap;
}

.member-stat-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}

.member-stat-card p {
    margin: 0;
    color: #6b6b6b;
    font-size: 0.83rem;
    font-weight: 600;
}

.member-stat-card h3 {
    margin: 0.35rem 0 0;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    color: #202020;
}

.member-order-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.member-order-actions .btn {
    min-height: 2.05rem;
    width: auto;
    font-size: 0.78rem;
    padding: 0.52rem 0.72rem;
    border-radius: 9px;
}

@media (max-width: 920px) {
    .member-dashboard-head {
        flex-direction: column;
    }

    .member-dashboard-head > :first-child,
    .member-dashboard-quick-overview {
        width: 100%;
        max-width: none;
    }
}

.showcase-wrap {
    margin-top: 0;
}

.showcase-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.showcase-carousel {
    position: relative;
    overflow: hidden;
    height: clamp(400px, 70vh, 700px);
    background: #0d0d0d;
}

.showcase-track {
    display: flex;
    height: 100%;
}

.showcase-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0.5) 44%, rgba(12, 12, 12, 0.12) 100%),
        var(--slide-bg);
    background-size: cover;
    background-position: center;
}

.showcase-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.08), rgba(9, 9, 9, 0.58));
}

.showcase-content-shell {
    position: relative;
    z-index: 3;
    height: 100%;
    width: min(1280px, calc(100% - 2rem));
    margin-inline: auto;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.showcase-content {
    max-width: 630px;
    padding: 1rem 0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    transform: translateX(34px);
    opacity: 0;
    transition: transform 500ms ease 100ms, opacity 500ms ease 100ms;
}

.showcase-slide.is-active .showcase-content {
    transform: translateX(0);
    opacity: 1;
}

.showcase-tag {
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: clamp(1.05rem, 1.45vw, 1.75rem);
}

.showcase-content h1 {
    margin: 0.5rem 0 0;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2.2rem, 6.2vw, 5.2rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.showcase-subtitle {
    margin: 0.9rem 0 0;
    font-size: clamp(0.95rem, 1.6vw, 1.95rem);
    max-width: 30ch;
    line-height: 1.28;
    text-transform: none;
}

.showcase-content .btn {
    pointer-events: auto;
    margin-top: 1rem;
    align-self: flex-start;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.93rem;
    background: #909090;
    padding-inline: 1.6rem;
}

.showcase-nav {
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(12, 12, 12, 0.24);
    color: #ffffff;
    font-size: 2.05rem;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.showcase-nav:hover {
    background: rgba(146, 146, 146, 0.85);
    border-color: rgba(146, 146, 146, 0.9);
}

.showcase-nav.prev {
    left: 1.2rem;
}

.showcase-nav.next {
    right: 1.2rem;
}

.showcase-scroll {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(12, 12, 12, 0.42);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    animation: bob 1.6s ease-in-out infinite;
}

.showcase-scroll:hover {
    background: rgba(146, 146, 146, 0.88);
    border-color: rgba(146, 146, 146, 1);
}

@keyframes bob {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-4px);
    }
}

.showcase-dots {
    position: absolute;
    left: 50%;
    bottom: 0.7rem;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0;
}

.showcase-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    border: none;
    background: #cdcdcd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.showcase-dot.is-active {
    width: 1.7rem;
    background: #909090;
}

.showcase-images-only .showcase-slide {
    background-image: var(--slide-bg);
}

.showcase-images-only .showcase-slide::after {
    content: none;
}

.showcase-images-only .showcase-content-shell,
.showcase-images-only .showcase-content,
.showcase-images-only .showcase-nav,
.showcase-images-only .showcase-scroll,
.showcase-images-only .showcase-dots {
    display: none !important;
}

.showcase-slide-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
}

.showcase-slide-link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: -6px;
}

.hero-cta {
    margin-top: 1.3rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.content-two {
    --content-two-margin-top: clamp(0.18rem, 0.7vw, 0.45rem);
    --content-two-pad-top: clamp(0.45rem, 1.2vw, 0.9rem);
    --content-two-overlay-top: rgba(246, 246, 246, 0.92);
    --content-two-overlay-bottom: rgba(242, 242, 242, 0.94);
    --content-two-accent-tint: rgba(191, 191, 191, 0.62);
    --content-two-shadow-tint: rgba(139, 139, 139, 0.38);
    position: relative;
    margin-top: var(--content-two-margin-top);
    margin-bottom: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-top: var(--content-two-pad-top);
    padding-bottom: calc(var(--content-two-pad-top) + var(--content-two-margin-top));
    background-color: #f2f2f2;
    background-image:
        linear-gradient(180deg, var(--content-two-overlay-top) 0%, var(--content-two-overlay-bottom) 100%),
        linear-gradient(135deg, var(--content-two-accent-tint) 0%, var(--content-two-shadow-tint) 100%),
        url("sports-content-background.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto, auto, cover;
    background-blend-mode: normal, color, normal;
    display: grid;
    gap: 1.2rem;
    overflow: hidden;
}

.content-two::before,
.content-two::after {
    content: none;
}

.content-two > * {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - 2rem));
    margin-inline: auto;
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.portrait-gallery-section {
    --portrait-gallery-gap: 0.8rem;
    --portrait-gallery-edge-pad: 0.8rem;
    position: relative;
    border-radius: 12px;
    border: 1px solid #d9d9d9;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.88) 0%, rgba(243, 243, 243, 0.82) 46%, rgba(231, 231, 231, 0.84) 100%),
        linear-gradient(140deg, rgba(236, 236, 236, 0.94) 0%, rgba(214, 214, 214, 0.88) 100%);
    box-shadow: 0 18px 30px rgba(66, 66, 66, 0.16);
    overflow: hidden;
    padding: 0.9rem 0;
}

.content-two > .portrait-gallery-section {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.portrait-gallery-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.portrait-gallery-heading {
    margin: 0 0 0.7rem;
    padding: 0 1rem;
    text-align: center;
    font-size: clamp(0.92rem, 1.45vw, 1.08rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #2a2a2a;
}

.portrait-gallery-track {
    display: flex;
    align-items: stretch;
    gap: var(--portrait-gallery-gap);
    width: max-content;
    will-change: transform;
    padding-inline: var(--portrait-gallery-edge-pad);
}

.portrait-gallery-track.is-animated {
    animation: portrait-gallery-scroll var(--portrait-gallery-duration, 38s) linear infinite;
}

.portrait-gallery-marquee:hover .portrait-gallery-track.is-animated {
    animation-play-state: paused;
}

.portrait-gallery-item {
    margin: 0;
    flex: 0 0 auto;
    width: clamp(150px, 17vw, 238px);
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: #f3f3f3;
    box-shadow: 0 9px 20px rgba(49, 49, 49, 0.14);
}

.portrait-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.home-secondary-image-section {
    padding-top: 0.3rem;
}

.home-secondary-image-card {
    margin: 0;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    overflow: hidden;
    background: #ededed;
    box-shadow: 0 20px 30px rgba(71, 71, 71, 0.16);
}

.home-secondary-image-card img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

@keyframes portrait-gallery-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - (var(--portrait-gallery-gap) / 2)));
    }
}

.catalog-image-slider {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d9d9d9;
    background: #ededed;
    box-shadow: 0 22px 34px rgba(83, 83, 83, 0.18);
}

.catalog-image-track {
    display: flex;
    width: 100%;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.catalog-image-slide {
    position: relative;
    display: block;
    flex: 0 0 100%;
    min-width: 100%;
    aspect-ratio: 16 / 6;
    overflow: hidden;
    pointer-events: none;
}

.catalog-image-slide.is-active {
    pointer-events: auto;
}

.catalog-image-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 23, 23, 0.06) 0%, rgba(23, 23, 23, 0.26) 100%);
    pointer-events: none;
}

.catalog-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

.catalog-image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: rgba(18, 18, 18, 0.56);
    color: #f8f8f8;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, transform 0.2s ease;
}

.catalog-image-nav:hover {
    background: rgba(18, 18, 18, 0.78);
}

.catalog-image-nav.prev {
    left: 0.85rem;
}

.catalog-image-nav.next {
    right: 0.85rem;
}

.catalog-image-dots {
    position: absolute;
    left: 50%;
    bottom: 0.9rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    z-index: 2;
}

.catalog-image-dot {
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 999px;
    border: none;
    background: rgba(229, 229, 229, 0.86);
    cursor: pointer;
    transition: all 0.2s ease;
}

.catalog-image-dot.is-active {
    width: 1.6rem;
    background: #ffffff;
}

.trend-card {
    position: relative;
    min-height: 255px;
    border-radius: 8px;
    overflow: hidden;
    background-image: var(--trend-bg);
    background-size: cover;
    background-position: center;
}

.trend-card::after {
    content: none;
}

.trend-overlay {
    position: relative;
    z-index: 2;
    color: #ffffff;
    height: 100%;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.trend-meta {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.86);
}

.trend-overlay h3 {
    margin: 0.45rem 0 0;
    font-size: 2rem;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    line-height: 1.05;
    text-transform: uppercase;
}

.trend-price {
    margin: 0.55rem 0 0;
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.92);
}

.trend-overlay .btn {
    margin-top: auto;
    width: auto;
    border-radius: 0;
    font-size: 0.86rem;
    padding: 0.62rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.service-strip {
    position: relative;
    background: rgba(250, 250, 250, 0.94);
    border: 1px solid #e5e5e5;
    border-radius: 0;
    padding: 1.15rem 1.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    border: 2px solid #9c9c9c;
    color: #727272;
    display: grid;
    place-items: center;
    font-size: 1.28rem;
    flex-shrink: 0;
}

.service-item h4 {
    margin: 0;
    font-size: 1.05rem;
}

.service-item p {
    margin: 0.4rem 0 0;
    color: #494949;
    font-size: 0.95rem;
    line-height: 1.45;
}

.deal-section {
    --deal-margin-top: calc(var(--section-gap) / 2);
    --deal-pad-top: 0px;
    margin-top: var(--deal-margin-top);
    margin-bottom: 0;
    padding-top: var(--deal-pad-top);
    padding-bottom: calc(var(--deal-pad-top) + var(--deal-margin-top));
    width: min(1120px, 100%);
    margin-inline: auto;
}

.deal-header {
    margin-bottom: 1rem;
}

.deal-header h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    letter-spacing: 0.02em;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.deal-header p {
    margin: 0.45rem 0 0;
    color: #575757;
}

.deal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 255px;
    gap: 1rem;
    min-width: 0;
}

.deal-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    min-width: 0;
    align-items: start;
}

.deal-card {
    border: 1px solid #e4e4e4;
    background: #ffffff;
    min-width: 0;
    overflow: hidden;
    align-self: start;
}

.deal-card-featured {
    grid-column: span 2;
    min-width: 0;
}

.deal-card-top-match {
    align-self: stretch;
}

.deal-card-top-match .deal-image-wrap {
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
}

.deal-card-top-match .deal-image {
    height: 100%;
    object-fit: cover;
}

.deal-image-wrap {
    position: relative;
    background: #f7f7f7;
    overflow: hidden;
}

.deal-promo-badge {
    position: absolute;
    top: 0.72rem;
    left: 0.72rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.7rem;
    padding: 0 0.62rem;
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.88);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.deal-image-wrap:not(.deal-image-featured) {
    aspect-ratio: 1 / 1;
}

.deal-image-featured {
    aspect-ratio: 16 / 10;
}

.deal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 420ms ease, filter 420ms ease;
}

.deal-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.08) 30%, rgba(13, 13, 13, 0.68) 100%);
    opacity: 1;
    transition: opacity 320ms ease;
    pointer-events: none;
    z-index: 1;
}

.deal-image-fallback {
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: grid;
    place-items: center;
    font-family: "Sora", sans-serif;
    font-size: 2.4rem;
    color: #ffffff;
    background: linear-gradient(135deg, #333333, #878787);
}

.deal-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 0.92rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.45rem;
}

.deal-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.deal-info-inline,
.deal-actions {
    position: relative;
    z-index: 2;
}

.deal-info-inline h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.2;
    max-width: 20ch;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.deal-card-featured .deal-info-inline h3 {
    font-size: clamp(1.15rem, 2.1vw, 1.42rem);
}

.deal-price-inline {
    margin: 0.16rem 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.89rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
    max-height: 2rem;
    opacity: 1;
    overflow: hidden;
    transition: max-height 240ms ease, opacity 200ms ease, margin 240ms ease;
}

.deal-price-inline-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.deal-price-inline span {
    color: var(--primary);
    font-weight: 800;
}

.deal-price-inline .price-old {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: line-through;
    font-weight: 600;
}

.deal-price-inline .price-current {
    color: var(--primary);
    font-weight: 800;
}

.deal-overlay .deal-price-inline {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.deal-overlay .deal-price-inline span:not(.price-old),
.deal-overlay .deal-price-inline .price-current {
    color: #ffffff;
}

.deal-sold-out-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(6, 6, 6, 0.22), rgba(6, 6, 6, 0.58));
}

.deal-sold-out-overlay span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.44rem 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.96);
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.02rem, 2.4vw, 1.48rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 5px 18px rgba(0, 0, 0, 0.58);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
}

.deal-price-inline-unavailable {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.deal-card-sold-out .deal-image {
    filter: grayscale(0.32) brightness(0.78);
}

.deal-card-sold-out .deal-actions {
    display: none;
}

.deal-card.deal-card-sold-out:hover .deal-price-inline,
.deal-card.deal-card-sold-out:focus-within .deal-price-inline,
.deal-card.deal-card-sold-out.is-touch-actions .deal-price-inline {
    max-height: 2rem;
    opacity: 1;
    margin-top: 0.16rem;
}

.deal-card.deal-card-sold-out.is-touch-actions .deal-price-inline {
    display: block;
}

.deal-card.deal-card-sold-out:hover .deal-image,
.deal-card.deal-card-sold-out:focus-within .deal-image {
    transform: scale(1);
    filter: grayscale(0.32) brightness(0.78);
}

.deal-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: opacity 260ms ease, transform 260ms ease, max-height 260ms ease;
}

.deal-action-form {
    margin: 0;
}

.deal-action-btn {
    width: 2rem;
    height: 2rem;
    border: 1px solid #dbdbdb;
    background: rgba(255, 255, 255, 0.97);
    color: #424242;
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.deal-action-btn svg {
    width: 1.02rem;
    height: 1.02rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.deal-action-btn:hover {
    border-color: #909090;
    color: #909090;
    background: #ffffff;
}

.deal-card:hover .deal-image,
.deal-card:focus-within .deal-image {
    transform: scale(1.08);
    filter: brightness(1.06);
}

.deal-card:hover .deal-image-wrap::after,
.deal-card:focus-within .deal-image-wrap::after {
    opacity: 0.86;
}

.deal-card:hover .deal-price-inline,
.deal-card:focus-within .deal-price-inline {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.deal-card:hover .deal-actions,
.deal-card:focus-within .deal-actions {
    opacity: 1;
    max-height: 3rem;
    transform: translateY(0);
}

.deal-card.is-touch-actions .deal-price-inline {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    display: none;
}

.deal-card.is-touch-actions .deal-actions {
    opacity: 1;
    max-height: 3rem;
    transform: translateY(0);
}

.deal-card.is-touch-actions .deal-overlay {
    gap: 0.08rem;
}

.deal-card.is-touch-actions .deal-info-inline h3 {
    margin-bottom: 0.04rem;
}

.deal-banner {
    background:
        linear-gradient(170deg, rgba(9, 9, 9, 0.95), rgba(23, 23, 23, 0.86)),
        url("https://images.unsplash.com/photo-1539185441755-769473a23570?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 1.4rem 1.25rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.deal-banner-tag {
    margin: 0;
    font-size: 0.84rem;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.85);
}

.deal-banner h3 {
    margin: 0.5rem 0 0;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 2rem;
    line-height: 1.08;
}

.deal-banner p {
    margin: 0.8rem 0 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.deal-banner .btn {
    margin-top: auto;
    width: auto;
    align-self: flex-start;
    border-radius: 0;
}

.newsletter-section {
    --newsletter-gap: calc(var(--section-gap) / 2);
    --newsletter-gap-bottom: calc((var(--newsletter-gap) + 0.9rem) * 1.5);
    margin-top: var(--newsletter-gap);
    margin-bottom: var(--newsletter-gap-bottom);
    padding-top: 0;
    padding-bottom: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-inline: max(1rem, calc((100vw - 1280px) / 2));
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    border-left: none;
    border-right: none;
    background: #efefef;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
}

.newsletter-media {
    position: relative;
    min-height: 320px;
    background: linear-gradient(140deg, #f5f5f5, #ececec);
    display: grid;
    place-items: center;
}

.newsletter-media-shape {
    position: absolute;
    inset: auto auto 1.2rem -2.4rem;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(146, 146, 146, 0.18), rgba(146, 146, 146, 0));
}

.newsletter-media::after {
    content: "";
    position: absolute;
    top: -3rem;
    right: 3rem;
    width: 6px;
    height: 180px;
    transform: rotate(36deg);
    background: linear-gradient(180deg, #909090, rgba(144, 144, 144, 0.12));
}

.newsletter-media img {
    width: min(100%, 560px);
    height: 100%;
    max-height: 360px;
    object-fit: contain;
    display: block;
    z-index: 1;
    filter: drop-shadow(0 20px 35px rgba(25, 25, 25, 0.2));
}

.newsletter-content {
    padding: 2.2rem 2rem;
}

.newsletter-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #797979;
    font-weight: 800;
    font-size: 0.8rem;
}

.newsletter-content h2 {
    margin: 0.5rem 0 0;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.2rem, 2.35vw, 1.95rem);
    line-height: 1.16;
    text-transform: uppercase;
    color: #323232;
    max-width: 16.8ch;
}

.newsletter-content > p {
    margin: 0.9rem 0 0;
    color: #4f4f4f;
    max-width: 48ch;
    line-height: 1.55;
}

.newsletter-form {
    margin-top: 1.25rem;
    max-width: 560px;
    display: flex;
    align-items: stretch;
}

.newsletter-form input {
    border-radius: 0;
    border: 1px solid #d8d8d8;
    border-right: none;
    background: #f8f8f8;
    min-height: 52px;
    padding-inline: 0.95rem;
}

.newsletter-form .btn {
    border-radius: 0;
    min-width: 170px;
    width: auto;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.86rem;
    padding-inline: 1.25rem;
}

.newsletter-error {
    margin: 0.65rem 0 0;
    color: #4b4b4b;
    font-size: 0.86rem;
    font-weight: 600;
}

.newsletter-note {
    margin-top: 0.65rem;
    font-size: 0.83rem;
    color: #636363;
}

.popular-items-section {
    --popular-margin-top: calc(var(--section-gap) / 2);
    --popular-pad-top: 1.6rem;
    position: relative;
    margin-top: var(--popular-margin-top);
    margin-bottom: 0;
    padding: var(--popular-pad-top) 1rem calc(var(--popular-pad-top) + var(--popular-margin-top));
    border: 1px solid #e1e1e1;
    background: #efefef;
    overflow: hidden;
}

.popular-items-section::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -95px;
    bottom: -95px;
    border-radius: 999px;
    border: 6px solid rgba(113, 113, 113, 0.14);
}

.popular-header {
    position: relative;
    z-index: 1;
    margin-bottom: 1.1rem;
}

.popular-header h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    letter-spacing: 0.02em;
}

.popular-header p {
    margin: 0.5rem 0 0;
    color: #555555;
    max-width: 64ch;
}

.popular-products-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.popular-deal-card .deal-image-wrap {
    aspect-ratio: 1 / 1;
}

.popular-deal-card .deal-info-inline h3 {
    font-size: 1.03rem;
}

.final-cta-section {
    --final-cta-margin-top: calc(var(--section-gap) / 2);
    --final-cta-pad-top: 0px;
    margin-top: var(--final-cta-margin-top);
    margin-bottom: 0;
    padding-top: var(--final-cta-pad-top);
    padding-bottom: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-inline: max(1rem, calc((100vw - 1280px) / 2));
    border: 1px solid #e1e1e1;
    background:
        radial-gradient(circle at 7% 78%, rgba(64, 64, 64, 0.14) 0 82px, transparent 83px),
        radial-gradient(circle at 93% 22%, rgba(64, 64, 64, 0.14) 0 82px, transparent 83px),
        linear-gradient(180deg, #f1f1f1 0%, #ececec 100%);
    overflow: hidden;
}

.final-cta-inner {
    min-height: 260px;
    padding: 2rem 1rem;
    display: grid;
    place-items: center;
    text-align: center;
    position: relative;
}

.final-cta-inner::before,
.final-cta-inner::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 6px solid rgba(107, 107, 107, 0.18);
    border-radius: 999px;
}

.final-cta-inner::before {
    left: -95px;
    top: 45px;
}

.final-cta-inner::after {
    right: -95px;
    bottom: 45px;
}

.final-cta-tag {
    margin: 0;
    color: #616161;
    font-size: clamp(0.95rem, 1.6vw, 1.3rem);
}

.final-cta-inner h2 {
    margin: 0.45rem 0 0;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.65rem, 4.4vw, 3.15rem);
    line-height: 1.15;
    text-transform: uppercase;
    color: #333333;
    max-width: 18ch;
}

.final-cta-button {
    margin-top: 1.1rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    width: auto;
    min-width: 170px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-title {
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.section-title-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.section-title h2 {
    margin: 0;
    font-size: 1.35rem;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.text-muted {
    color: var(--muted);
    line-height: 1.6;
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(94, 94, 94, 0.9), rgba(166, 166, 166, 0.84)),
        #787878;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.95rem;
}

.product-card h3 {
    margin: 0;
    font-size: 1.07rem;
}

.price {
    margin: 0.65rem 0 0;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 1.2rem;
}

.stock {
    margin: 0.42rem 0 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.product-card form {
    margin-top: auto;
    padding-top: 0.9rem;
}

.btn {
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.72rem 1rem;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: var(--primary-dark);
}

.btn-outline {
    background: #ffffff;
    color: var(--ink);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: #f8f8f8;
}

.btn-secondary {
    background: var(--primary);
    color: #ffffff;
}

.btn-secondary:hover {
    background: var(--primary-dark);
}

.btn-danger {
    background: #ededed;
    color: #717171;
}

.btn-danger:hover {
    background: #dcdcdc;
}

.btn-sm {
    font-size: 0.78rem;
    padding: 0.45rem 0.72rem;
    border-radius: 10px;
}

.stack {
    display: grid;
    gap: 1rem;
}

.panel {
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.two-col {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1rem;
}

.checkout-layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.95fr);
    align-items: start;
    margin-bottom: clamp(1rem, 2.4vw, 1.8rem);
}

.checkout-main-panel,
.checkout-summary-panel {
    min-width: 0;
}

.checkout-summary-panel {
    align-self: start;
    position: sticky;
    top: calc(var(--header-fixed-height, 0px) + 1rem);
}

.payment-upload-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: start;
    margin-bottom: clamp(1.25rem, 3vw, 2.25rem);
}

.payment-upload-main,
.payment-upload-aside {
    min-width: 0;
}

.payment-upload-aside {
    align-self: start;
    position: sticky;
    top: calc(var(--header-fixed-height, 0px) + 1rem);
}

.contact-page-title h2 {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.contact-page-title h2 i {
    font-size: 1rem;
    color: #727272;
}

.contact-page-title .btn {
    gap: 0.45rem;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 1rem;
    align-items: start;
    margin-bottom: 1rem;
}

.contact-card {
    padding: 1.05rem;
}

.contact-card-head {
    margin-bottom: 0.22rem;
}

.contact-card-head h3 {
    margin: 0;
    font-size: 1.66rem;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.contact-card-head h3 i {
    font-size: 0.92rem;
    color: #727272;
}

.contact-overview-copy {
    margin: 0;
}

.contact-highlight-list {
    margin-top: 0.25rem;
    display: grid;
    gap: 0.7rem;
}

.contact-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    background: #f8f8f8;
    padding: 0.8rem 0.9rem;
}

.contact-highlight-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    border: 1px solid #dfdfdf;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5a5a5a;
    flex-shrink: 0;
}

.contact-highlight-content {
    display: grid;
    gap: 0.18rem;
}

.contact-highlight-content p {
    margin: 0;
    color: var(--muted);
}

.contact-highlight-content a,
.contact-highlight-content span {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.5;
}

.contact-highlight-content a:hover {
    text-decoration: underline;
}

.contact-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.22rem;
}

.contact-action-btn {
    gap: 0.44rem;
}

.contact-copy-feedback {
    min-height: 1.05rem;
    margin: 0;
}

.contact-form-card > .text-muted {
    margin: 0;
}

.contact-form-stack {
    gap: 0.8rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.contact-required {
    color: #6f6f6f;
    font-weight: 700;
}

.contact-input-wrap {
    position: relative;
}

.contact-input-wrap i {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #848484;
    font-size: 0.92rem;
    pointer-events: none;
}

.contact-input-wrap.is-textarea i {
    top: 0.95rem;
    transform: none;
}

.contact-input-wrap input,
.contact-input-wrap textarea {
    padding-left: 2.5rem;
    margin: 0;
}

.contact-input-wrap textarea {
    min-height: 126px;
}

.contact-submit-btn {
    width: 100%;
    gap: 0.45rem;
}

.contact-map-card {
    padding: 1.05rem;
}

.contact-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-bottom: 0.72rem;
}

.contact-map-head h3 {
    margin: 0;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.contact-map-head h3 i {
    color: #727272;
}

.contact-map-head .btn {
    gap: 0.42rem;
}

.contact-map-frame {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    min-height: 280px;
    background: #f5f5f5;
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.checkout-contact-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.payment-method-preview {
    margin-top: 0.65rem;
    border: 1px solid #dfdfdf;
    border-radius: 12px;
    background: #f9f9f9;
    padding: 0.7rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-method-logo {
    width: 52px;
    height: 34px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 0.2rem 0.3rem;
    flex-shrink: 0;
}

.payment-method-logo-fallback {
    width: 52px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    background: #f8f8f8;
    color: #2f2f2f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.payment-method-logo.is-hidden,
.payment-method-logo-fallback.is-hidden {
    display: none;
}

.payment-method-preview-text {
    display: grid;
    gap: 0.15rem;
}

.payment-method-preview-text strong {
    color: #1f1f1f;
    font-size: 0.95rem;
}

.payment-method-preview-text small {
    font-size: 0.78rem;
}

.payment-method-logo-list {
    margin-top: 0.55rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.payment-method-logo-item {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    border: 1px solid #dcdcdc;
    border-radius: 999px;
    background: #ffffff;
    padding: 0.24rem 0.5rem 0.24rem 0.26rem;
    transition: all 0.2s ease;
}

.payment-method-logo-item img,
.payment-method-logo-item .payment-method-logo-fallback {
    width: 28px;
    height: 20px;
    border-radius: 6px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 0.1rem 0.16rem;
    font-size: 0.62rem;
}

.payment-method-logo-item .payment-method-logo-fallback {
    background: #f8f8f8;
}

.payment-method-logo-item small {
    color: #404040;
    font-size: 0.73rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.payment-method-logo-item.is-active {
    border-color: #949494;
    background: #f8f8f8;
}

.midtrans-channel-showcase {
    margin-top: 0.65rem;
    border: 1px solid #dedede;
    border-radius: 12px;
    background: #fbfbfb;
    padding: 0.72rem;
    display: grid;
    gap: 0.6rem;
}

.is-hidden {
    display: none !important;
}

.midtrans-channel-showcase.is-hidden {
    display: none;
}

.midtrans-channel-title {
    margin: 0;
    color: #2b2b2b;
    font-size: 0.82rem;
    font-weight: 700;
}

.midtrans-channel-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
}

.midtrans-channel-card {
    border: 1px solid #dadada;
    border-radius: 11px;
    background: #ffffff;
    min-height: 52px;
    padding: 0.36rem 0.46rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
}

.midtrans-channel-card input[type="radio"] {
    width: 0.95rem;
    height: 0.95rem;
    accent-color: #949494;
    margin: 0;
    flex-shrink: 0;
}

.midtrans-channel-card.is-selected {
    border-color: #949494;
    background: #f5f5f5;
}

.midtrans-channel-card:has(input[type="radio"]:checked) {
    border-color: #949494;
    background: #f5f5f5;
}

.midtrans-channel-card img {
    width: 34px;
    height: 24px;
    border-radius: 6px;
    border: 1px solid #dddddd;
    object-fit: contain;
    background: #ffffff;
    padding: 0.1rem 0.14rem;
    flex-shrink: 0;
}

.midtrans-channel-card span {
    color: #2f2f2f;
    font-size: 0.77rem;
    font-weight: 700;
    line-height: 1.25;
}

.shipping-method-preview {
    margin-top: 0.65rem;
    border: 1px solid #dfdfdf;
    border-radius: 12px;
    background: #f9f9f9;
    padding: 0.7rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shipping-method-logo {
    width: 52px;
    height: 34px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 0.2rem 0.3rem;
    flex-shrink: 0;
}

.shipping-method-logo-fallback {
    width: 52px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    background: #f8f8f8;
    color: #2f2f2f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.shipping-method-logo.is-hidden,
.shipping-method-logo-fallback.is-hidden {
    display: none;
}

.shipping-method-preview-text {
    display: grid;
    gap: 0.15rem;
}

.shipping-method-preview-text strong {
    color: #1f1f1f;
    font-size: 0.95rem;
}

.shipping-method-preview-text small {
    font-size: 0.78rem;
}

.shipping-method-logo-list {
    margin-top: 0.55rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.shipping-method-logo-item {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    border: 1px solid #dcdcdc;
    border-radius: 11px;
    background: #ffffff;
    min-height: 52px;
    padding: 0.36rem 0.46rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.shipping-method-logo-item input[type="radio"] {
    width: 0.95rem;
    height: 0.95rem;
    accent-color: #949494;
    margin: 0;
    flex-shrink: 0;
}

.shipping-method-logo-item img,
.shipping-method-logo-item .shipping-method-logo-fallback {
    width: 28px;
    height: 20px;
    border-radius: 6px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 0.1rem 0.16rem;
    font-size: 0.62rem;
}

.shipping-method-logo-item .shipping-method-logo-fallback {
    background: #f8f8f8;
}

.shipping-method-logo-item small {
    color: #404040;
    font-size: 0.73rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.shipping-method-logo-item.is-active {
    border-color: #949494;
    background: #f8f8f8;
}

.shipping-method-logo-item:has(input[type="radio"]:checked) {
    border-color: #949494;
    background: #f8f8f8;
}

.shipping-method-preview.is-loading {
    opacity: 0.82;
}

[data-shipping-method-cost].is-loading,
[data-summary-shipping-amount].is-loading {
    opacity: 0.72;
}

[data-shipping-estimate-label].is-loading {
    opacity: 0.72;
}

.shipping-quote-status {
    margin: 0.42rem 0 0;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    font-size: 0.8rem;
    color: #4e4e4e;
    font-weight: 600;
}

.shipping-quote-status-dot {
    width: 0.82rem;
    height: 0.82rem;
    border-radius: 999px;
    border: 2px solid #d8d8d8;
    border-top-color: #4e4e4e;
    animation: shipping-quote-spin 0.75s linear infinite;
    flex-shrink: 0;
}

.shipping-quote-status.is-error {
    color: #4b4b4b;
}

.shipping-quote-status.is-error .shipping-quote-status-dot {
    border-color: #c7c7c7;
    border-top-color: #4b4b4b;
    animation-duration: 1.25s;
}

.checkout-submit-btn:disabled {
    opacity: 0.64;
    cursor: not-allowed;
    pointer-events: none;
}

@keyframes shipping-quote-spin {
    to {
        transform: rotate(360deg);
    }
}

.cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.85rem 0;
    border-bottom: 1px dashed var(--border);
}

.cart-row:last-child {
    border-bottom: none;
}

.cart-item-main {
    display: grid;
    gap: 0.2rem;
}

.cart-item-main h4 {
    margin: 0;
}

.field {
    display: grid;
    gap: 0.35rem;
}

.field label {
    font-weight: 700;
    font-size: 0.9rem;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    font: inherit;
    padding: 0.66rem 0.75rem;
    background: #ffffff;
    color: var(--ink);
}

textarea {
    min-height: 110px;
    resize: vertical;
}

.checkout-address-textarea {
    min-height: 82px;
    resize: both;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(94, 94, 94, 0.15);
}

.error {
    color: #4b4b4b;
    font-size: 0.82rem;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.45rem;
}

.summary-price-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.06rem;
}

.summary-price-stack .price-old {
    text-decoration: line-through;
    color: #828282;
    font-size: 0.78rem;
    font-weight: 500;
}

.summary-price-stack .price-current {
    color: inherit;
}

.summary-total {
    margin-top: 0.9rem;
    padding-top: 0.8rem;
    border-top: 1px dashed var(--border);
    font-weight: 800;
    font-size: 1.1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
}

.status-pending {
    color: #535353;
    background: #f1f1f1;
}

.status-paid {
    color: #484848;
    background: #f0f0f0;
}

.status-rejected,
.status-cancelled {
    color: #414141;
    background: #eaeaea;
}

.status-shipped {
    color: #3c3c3c;
    background: #e9e9e9;
}

.status-completed {
    color: #3c3c3c;
    background: #f0f0f0;
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.timeline li {
    border-left: 2px solid #d2d2d2;
    padding-left: 0.8rem;
}

.timeline li strong {
    display: block;
}

.tracking-submit-btn {
    min-height: 42px;
}

.tracking-submit-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.tracking-submit-loading[hidden] {
    display: none !important;
}

.tracking-submit-spinner {
    width: 0.95rem;
    height: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #ffffff;
    border-radius: 999px;
    animation: tracking-submit-spin 0.75s linear infinite;
}

.tracking-form.is-submitting .tracking-submit-btn {
    opacity: 0.92;
    cursor: wait;
}

.tracking-live-summary {
    display: grid;
    gap: 0.4rem;
}

.tracking-live-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
}

.tracking-live-summary-row span {
    color: var(--muted);
}

.tracking-live-summary-row strong {
    text-align: right;
}

.tracking-live-timeline li.is-latest {
    border-left-color: var(--secondary);
}

.tracking-live-diagnostics {
    margin: 0.6rem 0 0;
    padding-left: 1.15rem;
    color: var(--muted);
    font-size: 0.86rem;
    display: grid;
    gap: 0.38rem;
}

.tracking-live-manual-link {
    font-size: 0.88rem;
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.tracking-manual-card {
    margin-top: 0.7rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    background: #fafafa;
}

.tracking-manual-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.tracking-manual-steps {
    margin: 0.55rem 0 0;
    padding-left: 1.15rem;
    color: var(--muted);
    font-size: 0.86rem;
    display: grid;
    gap: 0.28rem;
}

.tracking-manual-actions {
    margin-top: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}

.tracking-manual-recheck-btn {
    min-height: 34px;
}

@keyframes tracking-submit-spin {
    to {
        transform: rotate(360deg);
    }
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    text-align: left;
    padding: 0.72rem 0.55rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}

th {
    color: #464646;
    font-weight: 700;
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.auth-card {
    width: min(440px, 100%);
    margin: 4.5rem auto;
}

.auth-card h1 {
    margin-top: 0;
}

.admin-auth-shell {
    position: relative;
    padding: clamp(1rem, 3.4vw, 2rem) 0 clamp(2rem, 4.8vw, 3rem);
}

.admin-auth-card {
    border-radius: 20px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 16px 42px rgba(21, 21, 21, 0.09);
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.admin-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 700;
    color: #717171;
}

.admin-auth-hint {
    margin: 0.2rem 0 0.1rem;
    border-radius: 12px;
    border: 1px solid #e1e1e1;
    background: #f9f9f9;
    padding: 0.65rem 0.8rem;
    display: grid;
    gap: 0.2rem;
    font-size: 0.88rem;
    color: #4e4e4e;
}

.admin-auth-hint strong {
    color: #393939;
}

.admin-auth-hint code {
    border-radius: 6px;
    padding: 0.09rem 0.34rem;
    background: #f2f2f2;
    border: 1px solid #dddddd;
    color: #303030;
    font-size: 0.8rem;
}

.admin-shell {
    margin: 1.15rem 0 2rem;
    display: grid;
    gap: 1rem;
}

.admin-page-head {
    padding: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.95rem;
    flex-wrap: wrap;
}

.admin-page-head-main h1 {
    margin: 0.22rem 0 0;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
}

.admin-page-head-main p {
    margin: 0.35rem 0 0;
    max-width: 72ch;
}

.admin-page-head-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.admin-page-head-actions .btn {
    min-height: 2.65rem;
}

.admin-page-head-actions form {
    margin: 0;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.admin-user-stat-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.admin-stat-card {
    display: grid;
    gap: 0.18rem;
    border-radius: 14px;
}

.admin-stat-label {
    color: #6b6b6b;
    font-size: 0.82rem;
    font-weight: 600;
}

.admin-stat-number {
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    color: #252525;
    font-size: clamp(1.2rem, 2.3vw, 1.7rem);
}

.admin-stat-card-highlight {
    background: linear-gradient(135deg, #949494 0%, #bfbfbf 100%);
    border-color: #8a8a8a;
}

.admin-stat-card-highlight .admin-stat-label,
.admin-stat-card-highlight .admin-stat-number {
    color: #ffffff;
}

.admin-dashboard-chart-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.admin-chart-card {
    display: grid;
    gap: 0.28rem;
}

.admin-chart-card .text-muted {
    margin: 0;
}

.admin-chart-wrap {
    position: relative;
    min-height: 280px;
    margin-top: 0.35rem;
}

.admin-chart-wrap canvas {
    width: 100% !important;
    height: 100% !important;
}

.admin-quick-action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.admin-quick-action-card {
    border: 1px solid #dfdfdf;
    border-radius: 14px;
    background: linear-gradient(180deg, #fefefe 0%, #f8f8f8 100%);
    padding: 0.85rem;
    display: grid;
    gap: 0.4rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.admin-quick-action-card h4 {
    margin: 0;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    color: #333333;
}

.admin-quick-action-card p {
    margin: 0;
    color: #5a5a5a;
    font-size: 0.86rem;
    line-height: 1.55;
}

.admin-quick-action-card span {
    color: #949494;
    font-size: 0.8rem;
    font-weight: 700;
}

.admin-quick-action-card:hover {
    border-color: #949494;
    box-shadow: 0 10px 18px rgba(54, 54, 54, 0.1);
    transform: translateY(-2px);
}

.admin-filter-panel {
    padding: 0.9rem 1rem;
}

.admin-filter-form {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.admin-filter-form .field {
    min-width: 230px;
    flex: 1 1 230px;
}

.admin-pagination-wrap {
    margin-top: 0.45rem;
}

.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.admin-pagination-summary {
    margin: 0;
    color: #5b5b5b;
    font-size: 0.82rem;
    font-weight: 600;
}

.admin-pagination-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.34rem;
}

.admin-pagination-link,
.admin-pagination-ellipsis {
    min-width: 1.92rem;
    height: 1.92rem;
    padding: 0 0.58rem;
    border-radius: 10px;
    border: 1px solid #d8d8d8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #3f3f3f;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.admin-pagination-link:hover {
    border-color: #afafaf;
    background: #f1f1f1;
}

.admin-pagination-link.is-active {
    background: #232323;
    border-color: #232323;
    color: #ffffff;
}

.admin-pagination-link.is-disabled {
    opacity: 0.48;
    cursor: not-allowed;
    pointer-events: none;
}

.admin-pagination-ellipsis {
    min-width: 1.64rem;
    border-style: dashed;
    color: #7a7a7a;
    font-weight: 600;
}

.admin-pagination-wrap svg {
    width: 1rem;
    height: 1rem;
    max-width: 1rem;
    max-height: 1rem;
}

.admin-back-row {
    display: flex;
    align-items: center;
}

.admin-two-col {
    gap: 1rem;
}

.admin-card-title {
    margin: 0 0 0.55rem;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 1.06rem;
}

.admin-block-text {
    margin: 0;
}

.admin-status-row {
    margin: 0.2rem 0 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
}

.admin-sub-panel {
    background: var(--surface-soft);
    margin-top: 1rem;
}

.admin-summary-row {
    margin-top: 0.8rem;
}

.admin-settings-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1rem;
}

.admin-settings-note {
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    background: #fbfbfb;
}

.admin-settings-note h4 {
    margin: 0;
    font-size: 0.96rem;
}

.admin-settings-note ul {
    margin: 0.55rem 0 0;
    padding-left: 1rem;
    color: #575757;
    line-height: 1.55;
    display: grid;
    gap: 0.35rem;
}

.admin-body {
    background: linear-gradient(180deg, #f5f5f5 0%, #f9f9f9 100%);
    color: #202020;
}

.admin-layout {
    min-height: 100dvh;
    height: 100dvh;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
    overflow: hidden;
}

.admin-sidebar {
    background: linear-gradient(180deg, #141414 0%, #151515 100%);
    border-right: 1px solid rgba(201, 201, 201, 0.16);
    position: sticky;
    top: 0;
    height: 100dvh;
    align-self: start;
}

.admin-sidebar-inner {
    height: 100%;
    padding: 1rem 0.9rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

body.is-admin-nav-open {
    overflow: hidden;
}

.admin-mobile-header {
    display: none;
}

.admin-mobile-brand {
    color: #1c1c1c;
}

.admin-mobile-menu-btn {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    background: #ffffff;
    color: #202020;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.24rem;
    cursor: pointer;
    padding: 0;
}

.admin-mobile-menu-btn span {
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.admin-sidebar-close {
    display: none;
}

.admin-sidebar-backdrop {
    display: none;
}

.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.02rem, 1.8vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.admin-sidebar-brand {
    color: #f9f9f9;
}

.admin-sidebar-subtitle {
    margin: 0.38rem 0 0;
    color: #a2a2a2;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.admin-sidebar-nav {
    margin-top: 1rem;
    display: grid;
    gap: 0.4rem;
}

.admin-sidebar-nav a {
    color: #d7d7d7;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 0.62rem 0.72rem;
    font-size: 0.86rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.admin-sidebar-nav a:hover {
    color: #ffffff;
    border-color: rgba(203, 203, 203, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.admin-sidebar-nav a.is-active {
    color: #ffffff;
    border-color: rgba(156, 156, 156, 0.6);
    background: rgba(156, 156, 156, 0.22);
}

.admin-sidebar-bottom {
    margin-top: auto;
    display: grid;
    gap: 0.6rem;
}

.admin-user-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    border-radius: 999px;
    border: 1px solid rgba(200, 200, 200, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #e5e5e5;
    padding: 0.38rem 0.68rem;
    font-size: 0.78rem;
}

.admin-user-label {
    color: #b6b6b6;
}

.admin-sidebar-logout {
    width: 100%;
}

.admin-content-shell {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100dvh;
    height: 100dvh;
    overflow-y: auto;
}

.admin-main-content {
    flex: 1 0 auto;
    width: min(1600px, 100%);
    margin-inline: auto;
    padding: 0 1.1rem 1.4rem;
}

.admin-main-content-auth {
    padding-top: 1rem;
}

.admin-auth-header {
    border-bottom: 1px solid #e1e1e1;
    background: #ffffff;
}

.admin-auth-header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.admin-auth-header .admin-brand {
    color: #1c1c1c;
}

.admin-shell {
    margin: 0 0 2rem;
    display: grid;
    gap: 1rem;
}

.admin-page-head {
    width: calc(100% + 2.2rem);
    margin: 0 -1.1rem 0;
    border-radius: 0 0 16px 16px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-color: #e1e1e1;
    box-shadow: none;
    background: #ffffff;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.admin-page-head-main {
    min-width: 0;
}

.admin-page-head-main h1 {
    margin: 0.22rem 0 0;
}

.admin-page-head-main p {
    margin: 0.32rem 0 0;
    white-space: normal;
    overflow-wrap: anywhere;
}

.admin-page-head-actions {
    display: flex;
    align-items: center;
}

.admin-head-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dddddd;
    background: #f9f9f9;
    border-radius: 999px;
    color: #474747;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.72rem;
}

.admin-site-footer {
    margin-top: auto;
    border-top: 1px solid #dbdbdb;
    background: #ededed;
    padding-inline: 1.1rem;
}

.admin-site-footer-auth {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.admin-site-footer-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
}

.admin-site-footer-inner p {
    margin: 0;
    color: #606060;
    font-size: 0.84rem;
}

.admin-product-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: end;
}

.admin-user-filter-grid {
    grid-template-columns: minmax(0, 2.2fr) minmax(220px, 1fr) auto;
}

.admin-user-filter-grid .admin-filter-button-row {
    grid-column: auto;
    align-self: end;
    justify-content: flex-start;
}

.admin-user-filter-grid .admin-filter-button-group {
    flex-wrap: nowrap;
}

.admin-filter-button-row {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.admin-filter-button-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.admin-filter-button-group.is-primary {
    margin-left: auto;
}

.admin-product-cell {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.admin-product-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #e1e1e1;
    background: #f9f9f9;
    flex-shrink: 0;
}

.admin-product-thumb-fallback {
    display: grid;
    place-items: center;
    color: #ffffff;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4e4e4e, #7e7e7e);
}

.admin-table-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.admin-table-actions form {
    margin: 0;
}

.admin-review-rating {
    display: grid;
    gap: 0.25rem;
}

.admin-review-rating strong {
    color: #262626;
}

.admin-review-rating span {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
}

.admin-review-rating .is-active {
    color: #949494;
}

.admin-review-rating .is-muted {
    color: #cecece;
}

.admin-review-snippet {
    display: grid;
    gap: 0.18rem;
}

.admin-form-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.admin-form-three-col {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.admin-repeater-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.admin-repeater-list {
    display: grid;
    gap: 0.8rem;
}

.admin-repeater-item {
    border: 1px dashed #dbdbdb;
    border-radius: 14px;
    background: #fbfbfb;
    padding: 0.85rem;
    display: grid;
    gap: 0.72rem;
}

.admin-repeater-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.admin-repeater-item-head strong {
    font-size: 0.93rem;
    font-weight: 800;
    color: #262626;
}

.admin-inline-check {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #4b4b4b;
    font-weight: 600;
    font-size: 0.92rem;
}

.admin-inline-check input[type="checkbox"] {
    width: 1.06rem;
    height: 1.06rem;
    accent-color: #949494;
}

.admin-form-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.admin-payment-preview {
    margin-top: 0.55rem;
    padding: 0.5rem;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    background: #f8f8f8;
    width: fit-content;
    max-width: 100%;
}

.admin-payment-preview img {
    width: 100%;
    max-width: 180px;
    max-height: 180px;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.admin-current-image-preview {
    margin-top: 0.7rem;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    background: #fbfbfb;
    padding: 0.6rem;
    display: grid;
    gap: 0.45rem;
}

.admin-current-image-preview span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #4e4e4e;
}

.admin-current-image-preview img {
    width: 100%;
    max-width: 230px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #f6f6f6;
}

.admin-product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.admin-uploaded-image-card {
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    display: grid;
    gap: 0;
    cursor: pointer;
}

.admin-uploaded-image-card.is-marked {
    border-color: rgba(75, 75, 75, 0.45);
    box-shadow: 0 0 0 2px rgba(75, 75, 75, 0.12);
}

.admin-uploaded-image-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: #f6f6f6;
}

.admin-uploaded-image-check {
    padding: 0.55rem 0.6rem;
    border-top: 1px solid #e8e8e8;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #444444;
}

.admin-uploaded-image-check input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #4b4b4b;
}

.admin-legacy-image-list {
    border: 1px dashed #e1e1e1;
    border-radius: 12px;
    background: #fbfbfb;
    padding: 0.55rem 0.65rem;
    display: grid;
    gap: 0.38rem;
}

.admin-legacy-image-list a {
    font-size: 0.8rem;
    color: #484848;
    text-decoration: underline;
    word-break: break-all;
}

.admin-logo-preview {
    min-height: 96px;
    border: 1px dashed #d8d8d8;
    border-radius: 12px;
    background: #fbfbfb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem;
}

.admin-logo-preview img {
    width: auto;
    max-width: 100%;
    max-height: 74px;
    object-fit: contain;
    border-radius: 8px;
}

.admin-logo-preview span {
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #323232;
}

.site-footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: auto;
    background: linear-gradient(180deg, #161616 0%, #141414 100%);
    color: #e4e4e4;
    border-top: 1px solid #292929;
    flex-shrink: 0;
}

.site-footer-top {
    padding: clamp(2.2rem, 4.5vw, 3.2rem) 0;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.3vw, 2.1rem);
    align-items: start;
}

.footer-brand {
    font-size: clamp(1.3rem, 2.3vw, 1.65rem);
    letter-spacing: 0.03em;
}

.footer-brand-block p {
    margin: 0.9rem 0 0;
    max-width: 38ch;
    color: #b6b6b6;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-social h4 {
    margin: 0 0 0.75rem;
    font-size: 0.92rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #f9f9f9;
}

.footer-links a {
    display: block;
    color: #cbcbcb;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.8;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-social {
    display: grid;
    gap: 1rem;
}

.footer-address p {
    margin: 0;
    color: #cbcbcb;
    line-height: 1.75;
    font-size: 0.95rem;
    white-space: pre-line;
}

.social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.social-link {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 999px;
    border: 1px solid #454545;
    background: rgba(255, 255, 255, 0.03);
    color: #e3e3e3;
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
}

.social-link:hover {
    color: #ffffff;
    border-color: #aeaeae;
    background: rgba(156, 156, 156, 0.16);
    transform: translateY(-2px);
}

.social-link svg {
    width: 1.12rem;
    height: 1.12rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-link svg.is-fill,
.social-link .is-fill {
    fill: currentColor;
    stroke: none;
}

.site-footer-bottom {
    border-top: 1px solid #313131;
    background: rgba(13, 13, 13, 0.35);
}

.site-footer-bottom-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.55rem 0;
}

.site-footer-bottom-inner p {
    margin: 0;
    color: #b6b6b6;
    font-size: 0.86rem;
    text-align: center;
}

.product-detail-page {
    margin-top: 1.35rem;
}

.product-detail-card {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(27, 27, 27, 0.08);
    padding: clamp(1rem, 2.4vw, 1.8rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(1rem, 2.2vw, 1.8rem);
    align-items: start;
}

.product-gallery {
    display: grid;
    gap: 0.65rem;
}

.product-gallery-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid #ececec;
    background: #f8f8f8;
    border-radius: 14px;
    padding: clamp(0.7rem, 1.7vw, 1rem);
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.product-gallery-main:hover img {
    transform: scale(1.03);
}

.product-gallery-main.is-fallback {
    display: grid;
    place-items: center;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 5vw, 4.2rem);
    color: #ffffff;
    background: linear-gradient(140deg, #353535, #878787);
}

.product-gallery-main.is-fallback span {
    line-height: 1;
}

.product-gallery-zoom {
    position: absolute;
    left: 0.65rem;
    bottom: 0.65rem;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(14, 14, 14, 0.72);
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.48rem;
}

.product-gallery-thumb {
    border: 1px solid #dedede;
    border-radius: 10px;
    background: #ffffff;
    padding: 0.2rem;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-gallery-thumb:hover {
    transform: translateY(-2px);
    border-color: #949494;
}

.product-gallery-thumb.is-active {
    border-color: #949494;
    box-shadow: 0 0 0 2px rgba(156, 156, 156, 0.2);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 7px;
}

.product-detail-breadcrumb {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    font-size: 0.83rem;
    color: #737373;
}

.product-detail-breadcrumb strong {
    color: #383838;
    font-weight: 700;
}

.product-detail-category {
    margin: 0.75rem 0 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 1.85rem;
    border-radius: 999px;
    padding: 0 0.8rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #414141;
    background: #e9e9e9;
}

.product-detail-category-vip {
    position: relative;
    overflow: hidden;
    border: 1px solid #ebcb73;
    color: #5a3d06;
    background: linear-gradient(135deg, #fff7ce 0%, #f7dd83 46%, #e9bf58 100%);
    box-shadow: 0 10px 20px rgba(233, 191, 88, 0.34);
}

.product-detail-category-vip::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.76) 52%, transparent 82%);
    transform: translateX(-135%);
    animation: vipShimmer 2.8s ease-in-out infinite;
    pointer-events: none;
}

.product-detail-category-vip > span {
    position: relative;
    z-index: 1;
}

.product-detail-category-vip-icon {
    display: inline-flex;
    width: 0.86rem;
    height: 0.86rem;
    animation: vipCrownFloat 3s ease-in-out infinite;
}

.product-detail-category-vip-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.product-detail-category-separator {
    opacity: 0.64;
}

.product-detail-category-vip-text {
    font-weight: 800;
}

.product-detail-info h1 {
    margin: 0.7rem 0 0;
    font-size: clamp(1.35rem, 3.1vw, 2.2rem);
    line-height: 1.15;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.product-detail-rating {
    margin-top: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 1rem;
}

.product-detail-rating .is-active {
    color: #949494;
}

.product-detail-rating .is-muted {
    color: #c4c4c4;
}

.product-rating-text {
    margin-left: 0.6rem;
    font-size: 0.86rem;
    color: #727272;
}

.product-detail-price {
    margin: 0.85rem 0 0;
    font-size: clamp(1.45rem, 2.8vw, 2.2rem);
    line-height: 1.1;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    color: #2b2b2b;
}

.product-detail-price-wrap {
    margin-top: 0.85rem;
    display: inline-flex;
    flex-direction: column;
    gap: 0.32rem;
}

.product-detail-price-wrap .product-detail-price {
    margin: 0;
}

.detail-promo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.72rem;
    width: max-content;
    border-radius: 999px;
    padding: 0 0.66rem;
    background: #2b2b2b;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.product-detail-price-promo {
    margin: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 0.58rem;
    flex-wrap: wrap;
}

.product-detail-price .price-old {
    color: #797979;
    text-decoration: line-through;
    font-size: clamp(0.94rem, 1.5vw, 1.15rem);
    font-weight: 600;
}

.product-detail-price .price-current {
    color: #2b2b2b;
    font-size: clamp(1.45rem, 2.8vw, 2.2rem);
    font-weight: 800;
}

.product-detail-stock {
    margin: 0.65rem 0 0;
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.product-detail-stock.is-available {
    background: #f2f2f2;
    color: #535353;
}

.product-detail-stock.is-empty {
    background: #f3f3f3;
    color: #4d4d4d;
}

.product-detail-description {
    margin: 0.95rem 0 0;
    color: #444444;
    line-height: 1.76;
    font-size: 0.98rem;
    white-space: pre-line;
}

.product-detail-actions {
    margin-top: 1rem;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.product-detail-cart-form {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-detail-variant-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.7rem;
}

.product-detail-variant-grid .field {
    margin: 0;
}

.product-detail-variant-grid select {
    min-height: 2.8rem;
}

.product-detail-qty {
    display: grid;
    gap: 0.25rem;
}

.product-detail-qty label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #6f6f6f;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-detail-qty input {
    width: 86px;
    min-height: 2.8rem;
    padding: 0 0.65rem;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.product-detail-cta-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.product-btn-cart,
.product-btn-direct {
    min-height: 2.8rem;
    border-radius: 12px;
    font-weight: 700;
    padding-inline: 1.15rem;
}

.product-btn-cart {
    border-color: #dcdcdc;
    color: #313131;
    background: #ffffff;
}

.product-btn-cart:hover {
    border-color: #c3c3c3;
    background: #fbfbfb;
}

.product-btn-direct {
    box-shadow: 0 10px 24px rgba(156, 156, 156, 0.26);
    padding-inline: 1.35rem;
}

.product-btn-direct:hover {
    box-shadow: 0 12px 28px rgba(100, 100, 100, 0.34);
}

.product-back-link {
    display: inline-flex;
    margin-top: 0.55rem;
    color: #6a6a6a;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.product-review-section {
    margin-top: 1.4rem;
    display: grid;
    gap: 1rem;
}

.product-review-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.product-review-kicker {
    margin: 0 0 0.3rem;
    color: #949494;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-review-head h2 {
    margin: 0;
    font-size: clamp(1.18rem, 2.6vw, 1.72rem);
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.product-review-head-copy {
    margin: 0;
    max-width: 580px;
    color: #727272;
    line-height: 1.68;
    text-align: right;
}

.product-review-overview {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1rem;
    align-items: start;
}

.product-review-summary-card,
.product-review-form-card,
.product-review-card,
.product-review-empty {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(27, 27, 27, 0.08);
}

.product-review-summary-card,
.product-review-form-card {
    padding: clamp(1rem, 2.2vw, 1.35rem);
}

.product-review-summary-score {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.product-review-summary-score strong {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.95;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.product-review-summary-score span {
    color: #7f7f7f;
    font-weight: 700;
}

.product-review-summary-stars,
.product-review-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.14rem;
}

.product-review-summary-stars {
    margin-top: 0.55rem;
    font-size: 1.1rem;
}

.product-review-stars {
    font-size: 0.95rem;
}

.product-review-summary-stars .is-active,
.product-review-stars .is-active {
    color: #949494;
}

.product-review-summary-stars .is-muted,
.product-review-stars .is-muted {
    color: #d0d0d0;
}

.product-review-summary-note {
    margin: 0.7rem 0 0;
    color: #727272;
}

.product-review-breakdown {
    margin-top: 1rem;
    display: grid;
    gap: 0.6rem;
}

.product-review-breakdown-row {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
}

.product-review-breakdown-row > span {
    color: #616161;
    font-weight: 700;
}

.product-review-breakdown-row > strong {
    color: #262626;
    text-align: right;
}

.product-review-breakdown-bar {
    height: 0.48rem;
    border-radius: 999px;
    background: #f9f9f9;
    overflow: hidden;
}

.product-review-breakdown-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #949494 0%, #d0d0d0 100%);
}

.product-review-form-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
}

.product-review-form-head h3 {
    margin: 0;
    font-size: 1.08rem;
}

.product-review-form-head p {
    margin: 0.35rem 0 0;
    color: #727272;
    line-height: 1.65;
    font-size: 0.92rem;
}

.product-review-user-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(156, 156, 156, 0.12);
    color: #787878;
    font-weight: 700;
    white-space: nowrap;
}

.product-review-inline-note {
    margin-top: 0.95rem;
    border-radius: 12px;
    background: #f8f8f8;
    border: 1px solid #d6d6d6;
    color: #565656;
    padding: 0.8rem 0.95rem;
    line-height: 1.6;
    font-size: 0.92rem;
}

.product-review-form {
    margin-top: 1rem;
    display: grid;
    gap: 0.95rem;
}

.product-review-form input:focus,
.product-review-form textarea:focus {
    border-color: #949494;
    box-shadow: 0 0 0 3px rgba(156, 156, 156, 0.16);
}

.product-review-rating-input {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.16rem;
}

.product-review-rating-input input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-review-rating-input label {
    color: #d2d2d2;
    cursor: pointer;
    font-size: 1.9rem;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.product-review-rating-input label:hover,
.product-review-rating-input label:hover ~ label,
.product-review-rating-input input:checked ~ label {
    color: #949494;
}

.product-review-rating-input label:hover {
    transform: translateY(-1px);
}

.product-review-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.product-review-form-meta {
    color: #727272;
    font-size: 0.85rem;
}

.product-review-login-card {
    margin-top: 1rem;
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8f8f8 0%, #fbfbfb 100%);
    border: 1px solid #dddddd;
}

.product-review-login-card p {
    margin: 0;
    color: #555555;
    line-height: 1.65;
}

.product-review-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.product-review-card {
    padding: 1.05rem 1.1rem;
}

.product-review-card-head {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.product-review-avatar {
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 2.8rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, #949494 0%, #dcdcdc 100%);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
}

.product-review-meta {
    min-width: 0;
    flex: 1 1 auto;
}

.product-review-meta-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-review-meta-top strong {
    color: #262626;
}

.product-review-meta p {
    margin: 0.26rem 0 0;
    color: #727272;
    font-size: 0.86rem;
}

.product-review-own-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.24rem 0.55rem;
    border-radius: 999px;
    background: rgba(156, 156, 156, 0.12);
    color: #787878;
    font-size: 0.74rem;
    font-weight: 800;
}

.product-review-card h3 {
    margin: 0.95rem 0 0;
    font-size: 1rem;
    line-height: 1.45;
}

.product-review-card > p {
    margin: 0.75rem 0 0;
    color: #515151;
    line-height: 1.78;
}

.product-review-empty {
    grid-column: 1 / -1;
    padding: 1.35rem;
    text-align: center;
}

.product-review-empty strong {
    display: block;
    font-size: 1rem;
}

.product-review-empty p {
    margin: 0.45rem 0 0;
    color: #727272;
}

.product-related-section {
    margin-top: 1.45rem;
    margin-bottom: 1rem;
}

.product-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.product-related-header h2 {
    margin: 0;
    font-size: clamp(1.18rem, 2.6vw, 1.72rem);
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.product-related-header a {
    color: #949494;
    font-weight: 700;
    font-size: 0.9rem;
}

.product-related-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.product-related-nav {
    display: none;
    align-items: center;
    gap: 0.35rem;
}

.product-related-nav-btn {
    width: 1.92rem;
    height: 1.92rem;
    border-radius: 999px;
    border: 1px solid #dbdbdb;
    background: #ffffff;
    color: #383838;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.02rem;
    line-height: 1;
}

.product-related-nav-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.product-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.product-related-carousel {
    --related-visible: 3;
    --related-gap: 0.9rem;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
}

.product-related-track {
    display: flex;
    margin-right: calc(var(--related-gap) * -1);
    will-change: transform;
}

.product-related-slide {
    flex: 0 0 calc(100% / var(--related-visible));
    min-width: 0;
    padding-right: var(--related-gap);
}

.product-related-carousel:active {
    cursor: grabbing;
}

.product-related-link {
    display: block;
    width: 100%;
    height: 100%;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-items: center;
}

.image-lightbox[hidden] {
    display: none !important;
}

.image-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
}

.image-lightbox-dialog {
    position: relative;
    z-index: 2;
    margin: 0;
    width: min(980px, calc(100% - 1.6rem));
    min-height: 260px;
    max-height: calc(100vh - 2rem);
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 2.2rem 1rem 1rem;
    overflow: hidden;
}

.image-lightbox-dialog img {
    width: 100%;
    max-height: calc(100vh - 6rem);
    object-fit: contain;
    display: block;
    margin-inline: auto;
}

.image-lightbox.is-loading .image-lightbox-dialog::after {
    content: "Memuat gambar...";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
}

.image-lightbox-error {
    margin: 0.85rem 0 0;
    color: #e0e0e0;
    font-size: 0.9rem;
    text-align: center;
}

.image-lightbox-error a {
    color: #ffffff;
    text-decoration: underline;
}

.image-lightbox-close {
    position: absolute;
    top: 0.45rem;
    right: 0.55rem;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
    font-size: 1.45rem;
    line-height: 1;
}

body.is-lightbox-open {
    overflow: hidden;
}

.shop-hero {
    margin-top: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border: 1px solid #e5e5e5;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 243, 243, 0.95)),
        var(--shop-hero-bg-image, url("https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=1600&q=80")) center / cover no-repeat;
    overflow: hidden;
}

.shop-hero-inner {
    width: min(1280px, calc(100% - 2rem));
    margin-inline: auto;
    min-height: 164px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1.4rem clamp(1.1rem, 2.3vw, 2.2rem);
}

.shop-hero-copy {
    max-width: 35ch;
}

.shop-hero-kicker {
    margin: 0;
    color: #737373;
    font-size: 0.79rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.shop-hero h1 {
    margin: 0.25rem 0 0;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    text-transform: uppercase;
    color: #202020;
}

.shop-hero-breadcrumb {
    margin: 0.45rem 0 0;
    color: #696969;
    font-size: 0.85rem;
}

.shop-hero-car {
    width: clamp(190px, 27vw, 330px);
    max-width: 42%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    filter: drop-shadow(0 10px 22px rgba(23, 23, 23, 0.23));
}

.shop-hero-mode-badge {
    margin: 0 0 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.55rem;
    padding: 0.2rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 113, 42, 0.36);
    background: linear-gradient(135deg, #fff4d8 0%, #f5d18b 52%, #e9be63 100%);
    color: #5d3f07;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    line-height: 1;
}

.shop-hero.shop-hero-vip {
    border-color: rgba(178, 143, 71, 0.34);
    background:
        radial-gradient(circle at 85% 18%, rgba(226, 184, 93, 0.24), transparent 46%),
        linear-gradient(135deg, rgba(255, 245, 226, 0.93) 0%, rgba(247, 233, 205, 0.94) 100%),
        var(--shop-hero-bg-image, url("https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=1600&q=80")) center / cover no-repeat;
}

.shop-hero.shop-hero-vip .shop-hero-kicker {
    color: #7a5920;
}

.shop-hero.shop-hero-vip h1 {
    color: #231807;
}

.shop-hero.shop-hero-vip .shop-hero-breadcrumb {
    color: #6f5527;
}

.shop-hero.shop-hero-vip .shop-hero-car {
    filter: drop-shadow(0 14px 28px rgba(55, 36, 7, 0.3));
}

.shop-page {
    margin-top: 1.2rem;
    margin-bottom: clamp(1.2rem, 2.6vw, 1.9rem);
    display: grid;
    grid-template-columns: 268px minmax(0, 1fr);
    gap: 1.1rem;
    align-items: start;
}

.shop-sidebar {
    position: sticky;
    top: 0.8rem;
}

.shop-filter-fab,
.shop-filter-backdrop,
.shop-filter-mobile-head {
    display: none;
}

.shop-filter-fab {
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #313131;
    border-radius: 999px;
    min-height: 2.5rem;
    padding: 0 0.9rem;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(24, 24, 24, 0.2);
}

.shop-filter-fab svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shop-filter-form {
    display: grid;
    gap: 1.25rem;
}

.shop-filter-card {
    background: #f4f4f4;
    border: 1px solid #eaeaea;
    border-radius: 0;
    padding: 1.5rem 1.2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.shop-search-card {
    padding: 1.75rem 1.2rem;
}

.shop-search-field {
    width: 100%;
    display: flex;
    align-items: stretch;
    border: 1px solid #d7d7d7;
    border-radius: 999px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(24, 24, 24, 0.04);
}

.shop-search-field input {
    border: none;
    border-radius: 0;
    min-height: 3.35rem;
    padding: 0 1.05rem;
    background: transparent;
    font-size: 1.02rem;
    color: #4c4c4c;
}

.shop-search-field input:focus {
    box-shadow: none;
}

.shop-search-field button {
    width: 3.1rem;
    border: none;
    border-left: 1px solid #e2e2e2;
    background: #ffffff;
    color: #696969;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.shop-search-field button:hover {
    color: #949494;
    background: #f8f8f8;
}

.shop-search-field svg {
    width: 1.03rem;
    height: 1.03rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shop-filter-card h3 {
    margin: 0 0 0.95rem;
    font-size: 1.06rem;
    text-transform: none;
    letter-spacing: 0;
    color: #2d2d2d;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
}

.shop-filter-card h3::before {
    content: "";
    width: 8px;
    height: 0.88rem;
    background: #949494;
    border-radius: 0;
}

.shop-filter-option {
    display: flex;
    align-items: center;
    gap: 0.56rem;
    padding: 0.25rem 0;
    color: #6a6a6a;
    font-size: 0.97rem;
    cursor: pointer;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.shop-filter-option:hover {
    color: #2d2d2d;
}

.shop-filter-option input[type="radio"],
.shop-filter-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 0.95rem;
    height: 0.95rem;
    margin: 0;
    border: 1.8px solid #c1c1c1;
    border-radius: 999px;
    background: #ffffff;
    display: inline-block;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.shop-filter-option input[type="radio"]:checked {
    border-color: #949494;
    background: #949494;
    box-shadow: inset 0 0 0 3px #ffffff;
}

.shop-price-slider {
    position: relative;
    height: 3.1rem;
    margin-top: 0.25rem;
}

.shop-price-track,
.shop-price-track-fill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    border-radius: 999px;
    pointer-events: none;
}

.shop-price-track {
    left: 0;
    right: 0;
    background: #dadada;
}

.shop-price-track-fill {
    left: 0;
    width: 100%;
    background: #949494;
}

.shop-price-range {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1.4rem;
    margin: 0;
    background: transparent;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
}

.shop-price-range::-webkit-slider-runnable-track {
    background: transparent;
    height: 4px;
}

.shop-price-range::-moz-range-track {
    background: transparent;
    height: 4px;
}

.shop-price-range::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    margin-top: -6.5px;
    border-radius: 999px;
    border: 2px solid #949494;
    background: #ffffff;
    box-shadow: 0 0 0 2px #ffffff;
    pointer-events: auto;
    cursor: pointer;
}

.shop-price-range::-moz-range-thumb {
    width: 17px;
    height: 17px;
    border-radius: 999px;
    border: 2px solid #949494;
    background: #ffffff;
    box-shadow: 0 0 0 2px #ffffff;
    pointer-events: auto;
    cursor: pointer;
}

.shop-price-badge {
    position: absolute;
    top: 0.08rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.55rem;
    min-height: 1.28rem;
    padding: 0 0.36rem;
    border-radius: 6px;
    background: #949494;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    z-index: 3;
}

.shop-filter-hint {
    margin: 0.72rem 0 0;
    color: #787878;
    font-size: 0.79rem;
    line-height: 1.5;
}

.shop-filter-hint strong {
    color: #2b2b2b;
}

.shop-filter-check {
    display: flex;
    align-items: flex-start;
    gap: 0.58rem;
    color: #585858;
    font-size: 0.95rem;
    line-height: 1.4;
    cursor: pointer;
}

.shop-filter-check input[type="checkbox"] {
    margin-top: 0.18rem;
    border-radius: 4px;
}

.shop-filter-check input[type="checkbox"]:checked {
    border-color: #949494;
    background: #949494;
    box-shadow: inset 0 0 0 2px #ffffff;
}

.shop-filter-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.shop-filter-actions .btn {
    min-height: 3.1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 12px;
}

.shop-main {
    min-width: 0;
    display: grid;
    gap: 1rem;
}

.shop-toolbar {
    display: block;
}

.shop-toolbar-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.shop-found {
    margin: 0;
    color: #555555;
    font-size: 0.95rem;
    border: 1px solid #dbdbdb;
    border-radius: 999px;
    background: #ffffff;
    padding: 0.82rem 1.35rem;
    white-space: nowrap;
}

.shop-found strong {
    color: #949494;
}

.shop-found > span {
    color: #2b2b2b;
}

.shop-view-toggle {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dbdbdb;
    border-radius: 999px;
    overflow: hidden;
    background: #ffffff;
    padding: 0.15rem;
}

.shop-view-btn {
    width: 2rem;
    height: 2rem;
    border: none;
    border-right: none;
    border-radius: 999px;
    background: #ffffff;
    color: #5a5a5a;
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
}

.shop-view-btn:last-child {
    border-right: none;
}

.shop-view-btn svg {
    width: 0.92rem;
    height: 0.92rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shop-view-btn.is-active {
    background: #efefef;
    color: #949494;
}

.shop-view-btn:hover {
    color: #949494;
}

.shop-sort-form {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #ffffff;
    border: 1px solid #dbdbdb;
    border-radius: 999px;
    padding: 0.22rem 0.6rem 0.22rem 0.82rem;
}

.shop-sort-form label {
    color: #656565;
    font-size: 0.78rem;
    font-weight: 600;
}

.shop-sort-form select {
    border: none;
    border-radius: 999px;
    min-height: 1.9rem;
    padding: 0 0.85rem 0 0.2rem;
    font-size: 0.82rem;
    background: transparent;
    width: auto;
    min-width: 128px;
}

.shop-sort-form select:focus {
    box-shadow: none;
}

.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.shop-deal-card {
    border: none;
    background: transparent;
    border-bottom: 2px solid #e4e4e4;
    padding-bottom: 0.85rem;
}

.shop-deal-card .deal-image-wrap {
    border: 1px solid #e6e6e6;
    background: #ffffff;
}

.shop-deal-card .deal-info-inline h3 {
    font-size: 1rem;
}

.shop-card-badges {
    position: absolute;
    top: 0.72rem;
    left: 0.72rem;
    right: 0.72rem;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.34rem;
    pointer-events: none;
}

.shop-card-badges .deal-promo-badge,
.shop-card-badges .shop-sold-badge {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    z-index: auto;
    min-width: 0;
    max-width: 100%;
}

.shop-card-badges .deal-promo-badge {
    flex: 0 1 auto;
    justify-content: flex-start;
    white-space: nowrap;
    width: fit-content;
}

.shop-card-badges .shop-sold-badge {
    margin-left: auto;
    flex: 0 1 auto;
    justify-content: flex-end;
    white-space: nowrap;
    width: fit-content;
}

.shop-card-badges .deal-promo-badge.shop-badge-tight,
.shop-card-badges .shop-sold-badge.shop-badge-tight {
    letter-spacing: 0;
    padding-left: 0.34rem;
    padding-right: 0.34rem;
}

.shop-sold-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.7rem;
    padding: 0 0.62rem;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.78);
    color: #ffffff;
    font-size: 0.73rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.38);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.26);
    white-space: nowrap;
    pointer-events: none;
}

.shop-review-badge {
    margin: 0.3rem 0 0;
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
}

.deal-info-inline .shop-review-badge {
    color: rgba(255, 255, 255, 0.92);
}

.shop-review-icon {
    color: #d0d0d0;
    font-size: 0.96rem;
}

.shop-products-grid:not(.is-list) .shop-deal-card .shop-card-badges {
    top: 0.72rem;
    left: 0.72rem;
    right: 0.72rem;
}

.shop-products-grid:not(.is-list) .shop-deal-card .deal-info-inline {
    position: static;
}

.shop-products-grid:not(.is-list) .shop-deal-card .shop-review-badge {
    position: absolute;
    right: 0.72rem;
    bottom: 0.72rem;
    z-index: 3;
    margin: 0;
    padding: 0.2rem 0.4rem;
    gap: 0.14rem;
    font-size: 0.68rem;
    line-height: 1;
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.58);
    backdrop-filter: blur(4px);
    white-space: nowrap;
    pointer-events: none;
}

.shop-products-grid:not(.is-list) .shop-deal-card .shop-review-icon {
    font-size: 0.62rem;
}

.shop-products-grid:not(.is-list) .shop-deal-card .deal-price-inline {
    padding-right: 2.45rem;
}

.shop-products-grid:not(.is-list) .shop-deal-card .deal-info-inline h3 {
    max-width: 100%;
}

.shop-products-grid:not(.is-list) .shop-deal-card:hover .deal-overlay,
.shop-products-grid:not(.is-list) .shop-deal-card:focus-within .deal-overlay,
.shop-products-grid:not(.is-list) .shop-deal-card.is-touch-actions .deal-overlay {
    gap: 0.08rem;
}

.shop-products-grid:not(.is-list) .shop-deal-card:hover .deal-info-inline h3,
.shop-products-grid:not(.is-list) .shop-deal-card:focus-within .deal-info-inline h3,
.shop-products-grid:not(.is-list) .shop-deal-card.is-touch-actions .deal-info-inline h3 {
    margin: 0 0 0.04rem;
}

.shop-products-grid:not(.is-list) .shop-deal-card:hover .deal-price-inline,
.shop-products-grid:not(.is-list) .shop-deal-card:focus-within .deal-price-inline,
.shop-products-grid:not(.is-list) .shop-deal-card.is-touch-actions .deal-price-inline {
    display: none;
}

.shop-products-grid:not(.is-list) .shop-deal-card.deal-card-sold-out:hover .deal-price-inline,
.shop-products-grid:not(.is-list) .shop-deal-card.deal-card-sold-out:focus-within .deal-price-inline,
.shop-products-grid:not(.is-list) .shop-deal-card.deal-card-sold-out.is-touch-actions .deal-price-inline {
    display: block;
}

.shop-products-grid:not(.is-list) .shop-deal-card:hover .deal-actions,
.shop-products-grid:not(.is-list) .shop-deal-card:focus-within .deal-actions,
.shop-products-grid:not(.is-list) .shop-deal-card.is-touch-actions .deal-actions {
    margin-top: 0;
}

.shop-products-grid:not(.is-list) .shop-list-content {
    display: none;
}

.shop-products-grid.is-list .shop-card-badges {
    display: none;
}

.shop-products-grid.is-list {
    grid-template-columns: 1fr;
    gap: 1.35rem;
}

.shop-products-grid.is-list .shop-deal-card {
    display: grid;
    grid-template-columns: clamp(170px, 24vw, 255px) minmax(0, 1fr);
    gap: 1.35rem;
    align-items: center;
    border-bottom: 2px solid #e4e4e4;
    padding: 0 0 1.25rem;
    background: transparent;
}

.shop-products-grid.is-list .shop-deal-card .deal-image-wrap {
    border: none;
    background: transparent;
    aspect-ratio: 1 / 1;
}

.shop-products-grid.is-list .shop-deal-card .deal-image {
    object-fit: contain;
    transform: none;
    filter: none;
    padding: 0.35rem;
}

.shop-products-grid.is-list .shop-deal-card .deal-image-wrap::after,
.shop-products-grid.is-list .shop-deal-card .deal-overlay {
    display: none;
}

.shop-products-grid.is-list .shop-deal-card:hover .deal-image,
.shop-products-grid.is-list .shop-deal-card:focus-within .deal-image {
    transform: none;
    filter: none;
}

.shop-products-grid.is-list .shop-list-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.shop-list-content h3 {
    margin: 0;
    color: #1f1f1f;
    font-size: clamp(1.14rem, 2vw, 1.65rem);
    line-height: 1.2;
    font-weight: 700;
}

.shop-list-price {
    margin: 0;
    color: #252525;
    font-size: clamp(1rem, 1.5vw, 1.32rem);
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
}

.shop-list-price-promo {
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.shop-list-price .price-old {
    color: #868686;
    text-decoration: line-through;
    font-size: 0.88rem;
    font-weight: 600;
}

.shop-list-price .price-current {
    color: #252525;
    font-size: clamp(1rem, 1.5vw, 1.32rem);
    font-weight: 700;
}

.shop-list-promo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.5rem;
    border-radius: 999px;
    padding: 0 0.5rem;
    background: rgba(23, 23, 23, 0.88);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.shop-review-badge-list {
    margin-top: -0.05rem;
    color: #252525;
}

.shop-list-desc {
    margin: 0.1rem 0 0;
    color: #424242;
    font-size: 0.98rem;
    line-height: 1.72;
    max-width: 66ch;
}

.shop-list-actions {
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    opacity: 1;
    max-height: none;
    transform: none;
}

.shop-list-actions .deal-action-btn {
    width: 2.45rem;
    height: 2.45rem;
    border: 1px solid #d6d6d6;
    background: #ffffff;
    color: #727272;
    border-radius: 0;
}

.shop-list-actions .deal-action-btn:hover {
    border-color: #949494;
    color: #949494;
}

.shop-list-actions .deal-action-form {
    margin: 0;
}

.shop-product-card {
    background: transparent;
    border: none;
    border-bottom: 2px solid #e4e4e4;
    padding: 0.4rem 0.15rem 0.92rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.25s ease;
}

.shop-product-card:hover {
    transform: translateY(-3px);
}

.shop-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    display: grid;
    place-items: center;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.shop-product-image img {
    width: 86%;
    height: 86%;
    object-fit: contain;
    display: block;
}

.shop-product-fallback {
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #4b4b4b;
}

.shop-product-meta {
    min-height: 74px;
}

.shop-product-card h3 {
    margin: 0;
    font-size: 1rem;
    color: #292929;
    line-height: 1.35;
    font-weight: 700;
}

.shop-product-category {
    margin: 0.32rem 0 0;
    font-size: 0.78rem;
    color: #737373;
}

.shop-product-price {
    margin: 0.3rem 0 0;
    color: #484848;
    font-size: 0.92rem;
    max-height: 1.4rem;
    opacity: 1;
    transition: all 0.2s ease;
}

.shop-product-price span {
    color: #949494;
    font-weight: 700;
}

.shop-product-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(6px);
    transition: all 0.2s ease;
}

.shop-product-card:hover .shop-product-actions {
    opacity: 1;
    max-height: 3rem;
    transform: none;
}

.shop-product-card:hover .shop-product-price {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.shop-action-form {
    margin: 0;
}

.shop-action-btn {
    width: 2.05rem;
    height: 2.05rem;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    color: #6e6e6e;
    display: grid;
    place-items: center;
    padding: 0;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.shop-action-btn:hover {
    color: #949494;
    border-color: #949494;
}

.shop-action-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.shop-action-btn svg {
    width: 0.95rem;
    height: 0.95rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    margin-top: 0.1rem;
}

.shop-page-link {
    width: 1.95rem;
    height: 1.95rem;
    border: 1px solid #dadada;
    display: grid;
    place-items: center;
    color: #464646;
    background: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
}

.shop-page-link.is-active {
    background: #949494;
    border-color: #949494;
    color: #ffffff;
}

.shop-page-link.is-disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

.wishlist-page {
    margin-top: 1.2rem;
    margin-bottom: clamp(1.2rem, 2.6vw, 2rem);
}

.wishlist-empty-panel {
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 0.7rem;
    padding: clamp(1.4rem, 3vw, 2rem);
}

.wishlist-empty-panel h2 {
    margin: 0;
    font-size: clamp(1.3rem, 2.7vw, 1.9rem);
    color: #2a2a2a;
}

.wishlist-empty-panel p {
    margin: 0;
    max-width: 60ch;
    color: #6e6e6e;
}

.wishlist-empty-panel .btn {
    width: auto;
    min-width: 180px;
}

.wishlist-table-wrap {
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid #e6e6e6;
}

.wishlist-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.wishlist-table th,
.wishlist-table td {
    border-bottom: 1px solid #ececec;
    text-align: center;
    padding: 0.95rem 0.75rem;
    vertical-align: middle;
}

.wishlist-table th {
    color: #2d2d2d;
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    white-space: nowrap;
}

.wishlist-remove-form,
.wishlist-cart-form {
    margin: 0;
}

.wishlist-remove-btn {
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    color: #6e6e6e;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wishlist-remove-btn svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wishlist-remove-btn:hover {
    color: #949494;
    border-color: #949494;
}

.wishlist-image-link {
    width: 86px;
    height: 86px;
    display: inline-grid;
    place-items: center;
    background: #f7f7f7;
    border: 1px solid #e7e7e7;
    overflow: hidden;
}

.wishlist-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wishlist-image-fallback {
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #5e5e5e;
}

.wishlist-product-name {
    color: #1c1c1c;
    font-size: 1.03rem;
    font-weight: 700;
}

.wishlist-product-name:hover {
    color: #949494;
}

.wishlist-product-category {
    margin: 0.2rem 0 0;
    color: #737373;
    font-size: 0.82rem;
}

.wishlist-price-cell {
    color: #949494;
    display: grid;
    gap: 0.16rem;
    white-space: nowrap;
}

.wishlist-price-old {
    color: #868686;
    text-decoration: line-through;
    font-size: 0.8rem;
    font-weight: 500;
}

.wishlist-price-current {
    color: #949494;
    font-weight: 700;
}

.wishlist-promo-chip {
    display: inline-flex;
    width: max-content;
    align-items: center;
    justify-content: center;
    min-height: 1.45rem;
    border-radius: 999px;
    padding: 0 0.48rem;
    background: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.wishlist-stock {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.26rem 0.6rem;
    border-radius: 999px;
}

.wishlist-stock.is-in-stock {
    background: rgba(122, 122, 122, 0.13);
    color: #5c5c5c;
}

.wishlist-stock.is-out-stock {
    background: rgba(127, 127, 127, 0.13);
    color: #646464;
}

.wishlist-cart-form .btn {
    width: auto;
    min-width: 130px;
    min-height: 2.45rem;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.proof-preview {
    max-width: 300px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 960px) {
    .product-detail-card {
        grid-template-columns: 1fr;
    }

    .product-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-gallery-main {
        aspect-ratio: 4 / 3;
    }

    .product-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-related-carousel {
        --related-visible: 2;
    }

    .showcase-carousel {
        height: clamp(360px, 58vh, 520px);
    }

    .catalog-image-slide {
        aspect-ratio: 16 / 9;
    }

    .catalog-image-nav {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.25rem;
    }

    .trend-grid {
        grid-template-columns: 1fr;
    }

    .portrait-gallery-section {
        padding: 0.75rem 0;
    }

    .portrait-gallery-item {
        width: clamp(136px, 34vw, 220px);
    }

    .service-strip {
        grid-template-columns: 1fr;
    }

    .deal-layout {
        grid-template-columns: 1fr;
    }

    .deal-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .deal-overlay {
        padding: 0.82rem;
    }

    .newsletter-section {
        grid-template-columns: 1fr;
    }

    .newsletter-media {
        min-height: 250px;
    }

    .newsletter-content {
        padding: 1.4rem 1.2rem 1.5rem;
    }

    .newsletter-content h2 {
        max-width: none;
    }

    .popular-items-section {
        --popular-pad-top: 1.2rem;
        padding: var(--popular-pad-top) 0.8rem calc(var(--popular-pad-top) + var(--popular-margin-top));
    }

    .popular-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .final-cta-inner {
        min-height: 220px;
    }

    .deal-card-featured {
        grid-column: span 2;
    }

    .deal-card-top-match {
        align-self: start;
    }

    .deal-card-top-match .deal-image-wrap {
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .grid-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-map-frame iframe {
        height: 360px;
    }

    .checkout-summary-panel {
        position: static;
        top: auto;
    }

    .payment-upload-aside {
        position: static;
        top: auto;
    }

    .checkout-contact-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .payment-method-logo-list {
        gap: 0.38rem;
    }

    .midtrans-channel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shipping-method-logo-list {
        gap: 0.38rem;
    }

    .admin-layout {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .admin-sidebar-inner {
        padding: 0.9rem 0.75rem;
    }

    .admin-main-content {
        padding: 0 0.85rem 1rem;
    }

    .admin-page-head {
        width: calc(100% + 1.7rem);
        margin-inline: -0.85rem;
        padding: 0.92rem 0.85rem;
    }

    .admin-page-head-actions {
        width: auto;
    }

    .admin-product-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-dashboard-chart-grid {
        grid-template-columns: 1fr;
    }

    .admin-quick-action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-filter-button-row {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .admin-filter-button-group.is-primary {
        margin-left: 0;
    }

    .admin-form-two-col {
        grid-template-columns: 1fr;
    }

    .admin-form-three-col {
        grid-template-columns: 1fr;
    }

    .admin-product-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-review-overview {
        grid-template-columns: 1fr;
    }

    .product-review-head {
        align-items: flex-start;
    }

    .product-review-head-copy {
        max-width: none;
        text-align: left;
    }

    .product-review-list {
        grid-template-columns: 1fr;
    }

    .member-stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .member-dashboard-page .section-title {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .admin-settings-grid {
        grid-template-columns: 1fr;
    }

    .admin-filter-form .field {
        min-width: 0;
        flex: 1 1 100%;
    }

    .shop-page {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .shop-toolbar {
        padding: 0.1rem 0;
    }

    .shop-toolbar-meta {
        justify-content: flex-start;
        width: 100%;
        gap: 0.55rem;
    }

    .shop-found {
        padding: 0.68rem 1rem;
        font-size: 0.86rem;
    }

    .shop-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-products-grid.is-list {
        grid-template-columns: 1fr;
    }

    .shop-products-grid.is-list .shop-deal-card {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .shop-products-grid.is-list .shop-list-content h3 {
        font-size: 1.2rem;
    }

    .shop-products-grid.is-list .shop-list-desc {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand-block {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .site-header {
        background: #ffffff;
        border-bottom: 1px solid #e3e3e3;
        padding: 0;
    }

    .site-header.is-sticky {
        background: #ffffff;
        border-bottom-color: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .site-header-inner {
        display: flex;
        min-height: 76px;
        padding-block: 0.55rem;
        padding-inline: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.7rem;
    }

    .header-top-right {
        display: none;
    }

    .brand {
        justify-self: auto;
    }

    .mobile-nav-toggle {
        margin-left: auto;
    }

    .product-detail-page {
        margin-top: 0.95rem;
    }

    .product-detail-card {
        border-radius: 14px;
        padding: 0.85rem;
    }

    .product-gallery-main {
        aspect-ratio: 1 / 1;
        border-radius: 10px;
    }

    .product-gallery-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.42rem;
    }

    .product-gallery-zoom {
        font-size: 0.71rem;
    }

    .product-rating-text {
        font-size: 0.78rem;
        margin-left: 0.4rem;
    }

    .product-detail-actions,
    .product-detail-cart-form {
        width: 100%;
    }

    .product-review-summary-card,
    .product-review-form-card,
    .product-review-card,
    .product-review-empty {
        border-radius: 14px;
    }

    .product-review-card-head {
        flex-wrap: wrap;
    }

    .product-review-stars {
        width: 100%;
    }

    .product-review-form-head,
    .product-review-form-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-review-rating-input label {
        font-size: 1.7rem;
    }

    .product-detail-cta-group,
    .product-detail-cta-group .btn {
        width: 100%;
    }

    .product-detail-qty {
        width: 100%;
    }

    .product-detail-variant-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-qty input {
        width: 100%;
    }

    .product-back-link {
        margin-top: 0.75rem;
    }

    .product-related-grid {
        grid-template-columns: 1fr;
    }

    .product-related-carousel {
        --related-visible: 1;
        --related-gap: 0.75rem;
    }

    .product-related-header {
        align-items: flex-start;
        gap: 0.65rem;
    }

    .product-related-header-actions {
        gap: 0.5rem;
    }

    .product-related-nav {
        display: inline-flex;
    }

    .content-two {
        --content-two-margin-top: 0.2rem;
        --content-two-pad-top: 0.55rem;
        padding-top: var(--content-two-pad-top);
        padding-bottom: calc(var(--content-two-pad-top) + var(--content-two-margin-top));
        margin-bottom: 0;
    }

    .content-two > * {
        width: calc(100% - 1.2rem);
    }

    .portrait-gallery-section {
        --portrait-gallery-gap: 0.6rem;
        --portrait-gallery-edge-pad: 0.55rem;
    }

    .portrait-gallery-item {
        width: clamp(128px, 44vw, 182px);
        border-radius: 8px;
    }

    .page-wrap {
        width: min(1120px, calc(100% - 1.2rem));
    }

    .checkout-contact-row {
        grid-template-columns: 1fr;
    }

    .payment-method-preview {
        padding: 0.62rem 0.65rem;
    }

    .payment-method-logo-item {
        width: 100%;
        justify-content: flex-start;
        border-radius: 10px;
    }

    .midtrans-channel-grid {
        grid-template-columns: 1fr;
    }

    .shipping-method-preview {
        padding: 0.62rem 0.65rem;
    }

    .shipping-method-logo-item {
        width: 100%;
        justify-content: flex-start;
        border-radius: 10px;
    }

    .top-strip-inner {
        min-height: auto;
        padding: 0.45rem 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.22rem;
    }

    .top-strip-left {
        flex-wrap: wrap;
        gap: 0.58rem;
        font-size: 0.74rem;
        line-height: 1.35;
    }

    .top-strip-left span:not(:last-child)::after {
        right: -0.33rem;
        height: 0.68rem;
    }

    .top-strip-right {
        font-size: 0.74rem;
        line-height: 1.35;
    }

    .main-nav {
        display: none;
    }

    .site-header-inner {
        min-height: 76px;
        padding-block: 0.55rem;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.7rem;
    }

    .brand {
        font-size: 1.3rem;
        letter-spacing: 0.03em;
        max-width: calc(100% - 3.1rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-logo-image {
        width: 1.72rem;
        height: 1.72rem;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .header-actions {
        display: none;
    }

    .cart-drawer-panel {
        width: 100vw;
        border-left: none;
    }

    .cart-drawer-head {
        min-height: 72px;
        padding: 0.95rem 0.9rem 0.8rem;
    }

    .cart-drawer-head h3 {
        font-size: 1.4rem;
    }

    .cart-drawer-body {
        padding: 0.55rem 0.9rem 0.72rem;
    }

    .cart-drawer-foot {
        padding: 0.85rem 0.9rem 0.95rem;
    }

    .search-modal-dialog {
        width: calc(100% - 1.4rem);
    }

    .search-modal-hint {
        font-size: 0.95rem;
    }

    .search-modal-form {
        margin-top: 1.35rem;
    }

    .search-modal-form input {
        font-size: 1.05rem;
        text-align: left;
        min-height: 2.7rem;
    }

    .search-modal-form svg {
        width: 1.2rem;
        height: 1.2rem;
    }

    .account-auth-tabs {
        grid-template-columns: 1fr;
    }

    .grid-products {
        grid-template-columns: 1fr;
    }

    .admin-layout {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100dvh;
        overflow: visible;
    }

    .admin-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(84vw, 300px);
        max-width: 84vw;
        z-index: 141;
        transform: translateX(-108%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.22s ease, visibility 0.22s ease;
        box-shadow: 16px 0 30px rgba(24, 24, 24, 0.25);
        overflow-y: auto;
    }

    body.is-admin-nav-open .admin-sidebar {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .admin-sidebar-inner {
        padding: 0.8rem 0.65rem;
    }

    .admin-sidebar-close {
        display: inline-flex;
        position: absolute;
        top: 0.72rem;
        right: 0.6rem;
        width: 2.1rem;
        height: 2.1rem;
        border-radius: 999px;
        border: 1px solid rgba(201, 201, 201, 0.4);
        background: rgba(255, 255, 255, 0.08);
        color: #eeeeee;
        font-size: 1.35rem;
        line-height: 1;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1;
    }

    .admin-sidebar-nav {
        margin-top: 0.78rem;
        gap: 0.36rem;
    }

    .admin-sidebar-nav a {
        font-size: 0.8rem;
        padding: 0.52rem 0.6rem;
    }

    .admin-sidebar-bottom {
        gap: 0.45rem;
    }

    .admin-user-pill {
        font-size: 0.72rem;
        padding: 0.32rem 0.58rem;
    }

    .admin-sidebar-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 140;
        border: none;
        background: rgba(12, 12, 12, 0.52);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease;
        cursor: pointer;
    }

    body.is-admin-nav-open .admin-sidebar-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .admin-content-shell {
        min-height: 100dvh;
        height: auto;
        overflow: visible;
    }

    .admin-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.62rem;
        position: sticky;
        top: 0;
        z-index: 120;
        margin: 0 0 0.82rem;
        padding: 0.68rem 0.6rem;
        border-radius: 0 0 12px 12px;
        border-bottom: 1px solid #e1e1e1;
        background: #ffffff;
    }

    .admin-mobile-brand {
        font-size: 1rem;
        max-width: calc(100% - 3.2rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .admin-mobile-menu-btn {
        display: inline-flex;
        flex-shrink: 0;
    }

    .admin-main-content {
        padding: 0 0.6rem 1rem;
    }

    .admin-main-content-auth {
        padding-top: 0.8rem;
    }

    .admin-shell {
        margin-bottom: 1.3rem;
        gap: 0.85rem;
    }

    .admin-page-head {
        width: 100%;
        margin-inline: 0;
        border-radius: 12px;
        padding: 0.82rem 0.6rem;
    }

    .admin-page-head-main {
        width: 100%;
    }

    .admin-page-head-main h1 {
        font-size: clamp(1.3rem, 6.2vw, 1.65rem);
    }

    .admin-page-head-main .text-muted {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .admin-page-head-actions {
        width: 100%;
    }

    .admin-head-pill {
        width: auto;
    }

    .panel {
        padding: 0.82rem;
    }

    .admin-stat-grid {
        grid-template-columns: 1fr;
    }

    .admin-chart-wrap {
        min-height: 240px;
    }

    .admin-quick-action-grid {
        grid-template-columns: 1fr;
    }

    .member-stat-grid {
        grid-template-columns: 1fr;
    }

    .member-dashboard-page .section-title {
        margin: 1rem 0 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
    }

    .member-dashboard-page .section-title .btn,
    .member-dashboard-page .section-title-actions .btn {
        width: 100%;
    }

    .member-dashboard-page .section-title-actions {
        width: 100%;
    }

    .member-dashboard-head {
        gap: 0.72rem;
    }

    .member-dashboard-head h3 {
        font-size: clamp(1.12rem, 6.2vw, 1.38rem);
    }

    .member-dashboard-quick {
        width: 100%;
        min-width: 0;
    }

    .member-dashboard-quick span {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .member-dashboard-quick .btn {
        width: 100%;
    }

    .member-dashboard-quick-overview {
        min-width: 0;
        max-width: none;
    }

    .member-dashboard-quick-overview-meta,
    .member-dashboard-quick-overview-actions {
        flex-wrap: wrap;
    }

    .member-dashboard-quick-overview-actions .btn,
    .member-dashboard-quick-vip-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .member-dashboard-vip-form {
        display: grid;
        gap: 0.55rem;
    }

    .member-dashboard-vip-field {
        min-width: 0;
        max-width: none;
    }

    .member-dashboard-vip-form .btn {
        width: 100%;
    }

    .member-dashboard-page .table-wrap {
        overflow: visible;
    }

    .member-dashboard-page .table-wrap table,
    .member-dashboard-page .table-wrap thead,
    .member-dashboard-page .table-wrap tbody,
    .member-dashboard-page .table-wrap tr,
    .member-dashboard-page .table-wrap th,
    .member-dashboard-page .table-wrap td {
        display: block;
        width: 100%;
    }

    .member-dashboard-page .table-wrap thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .member-dashboard-page .table-wrap tbody {
        display: grid;
        gap: 0.65rem;
    }

    .member-dashboard-page .table-wrap tbody tr {
        border: 1px solid #e1e1e1;
        border-radius: 12px;
        background: #ffffff;
        padding: 0.35rem 0.65rem;
    }

    .member-dashboard-page .table-wrap tbody td {
        border-bottom: 1px dashed #eaeaea;
        padding: 0.52rem 0;
        font-size: 0.86rem;
        display: grid;
        gap: 0.16rem;
    }

    .member-dashboard-page .table-wrap tbody td:last-child {
        border-bottom: none;
    }

    .member-dashboard-page .table-wrap tbody td::before {
        content: attr(data-label);
        color: #707070;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .member-dashboard-page .table-wrap tbody td[data-label="Aksi"] {
        padding-top: 0.62rem;
    }

    .member-order-actions {
        width: 100%;
        gap: 0.4rem;
    }

    .member-order-actions .btn {
        width: 100%;
    }

    .admin-product-filter-grid {
        grid-template-columns: 1fr;
        gap: 0.62rem;
    }

    .admin-filter-button-row {
        justify-content: stretch;
    }

    .admin-filter-button-group {
        width: 100%;
    }

    .admin-filter-button-row .btn {
        width: 100%;
    }

    .admin-filter-form {
        gap: 0.55rem;
    }

    .admin-filter-form .btn,
    .admin-back-row .btn {
        width: 100%;
    }

    .admin-product-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .admin-table-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-table-actions .btn,
    .admin-table-actions form,
    .admin-table-actions form .btn {
        width: 100%;
    }

    .admin-main-content .table-wrap {
        overflow: visible;
    }

    .admin-main-content .table-wrap table,
    .admin-main-content .table-wrap thead,
    .admin-main-content .table-wrap tbody,
    .admin-main-content .table-wrap tr,
    .admin-main-content .table-wrap th,
    .admin-main-content .table-wrap td {
        display: block;
        width: 100%;
    }

    .admin-main-content .table-wrap thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .admin-main-content .table-wrap tbody {
        display: grid;
        gap: 0.65rem;
    }

    .admin-main-content .table-wrap tbody tr {
        border: 1px solid #e1e1e1;
        border-radius: 12px;
        background: #ffffff;
        padding: 0.35rem 0.65rem;
    }

    .admin-main-content .table-wrap tbody td {
        border-bottom: 1px dashed #eaeaea;
        padding: 0.52rem 0;
        font-size: 0.86rem;
        text-align: left;
        display: grid;
        gap: 0.18rem;
    }

    .admin-main-content .table-wrap tbody td:last-child {
        border-bottom: none;
    }

    .admin-main-content .table-wrap tbody td::before {
        content: attr(data-label);
        color: #707070;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .admin-main-content .table-wrap tbody td[data-label=""],
    .admin-main-content .table-wrap tbody td[data-label="Info"] {
        gap: 0;
    }

    .admin-main-content .table-wrap tbody td[data-label=""]::before,
    .admin-main-content .table-wrap tbody td[data-label="Info"]::before {
        content: none;
    }

    .admin-main-content .table-wrap tbody td .btn {
        width: auto;
        min-width: 96px;
    }

    .admin-auth-header-inner {
        min-height: 64px;
        flex-wrap: wrap;
        padding-block: 0.55rem;
    }

    .admin-auth-header-inner .btn {
        width: auto;
    }

    .admin-site-footer-inner {
        min-height: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        padding: 0.7rem 0 0.8rem;
    }

    .trend-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(84vw, 1fr);
        overflow-x: auto;
        overscroll-behavior-x: contain;
        padding-bottom: 0.28rem;
        scroll-snap-type: x proximity;
    }

    .trend-card {
        min-height: 215px;
        scroll-snap-align: start;
    }

    .trend-overlay h3 {
        font-size: 1.6rem;
    }

    .catalog-image-slide {
        aspect-ratio: 5 / 4;
    }

    .catalog-image-nav {
        display: none;
    }

    .catalog-image-dots {
        bottom: 0.7rem;
    }

    .deal-products {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 0.72rem;
    }

    .deal-products > .deal-card {
        grid-column: span 2;
    }

    .deal-products > .deal-card:nth-child(1),
    .deal-products > .deal-card:nth-child(2) {
        grid-column: span 3;
    }

    .deal-products > .deal-card:nth-child(n+3) .deal-actions {
        opacity: 0;
        max-height: 0;
        margin-top: 0;
        overflow: hidden;
        pointer-events: none;
    }

    .deal-products > .deal-card:nth-child(n+3) .deal-price-inline {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
        overflow: hidden;
    }

    .deal-products > .deal-card:nth-child(n+3) .deal-promo-badge {
        display: none;
    }

    .deal-products > .deal-card:nth-child(n+3) .deal-overlay {
        justify-content: flex-end;
        align-items: flex-start;
        gap: 0;
        padding: 0.3rem 0.5rem 0.18rem;
    }

    .deal-products > .deal-card:nth-child(n+3) .deal-info-inline {
        margin-top: auto;
        width: 100%;
    }

    .deal-products > .deal-card:nth-child(n+3) .deal-info-inline h3 {
        margin: 0;
    }

    .deal-products > .deal-card:nth-child(1) .deal-image-wrap,
    .deal-products > .deal-card:nth-child(2) .deal-image-wrap {
        aspect-ratio: 1 / 1;
    }

    .deal-card-top-match .deal-image-wrap {
        aspect-ratio: 1 / 1;
    }

    .deal-overlay {
        padding: 0.75rem;
    }

    .deal-info-inline h3 {
        font-size: 0.88rem;
        line-height: 1.14;
        max-width: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .deal-price-inline {
        font-size: 0.75rem;
        margin-top: 0.1rem;
    }

    .newsletter-content h2 {
        font-size: clamp(1.08rem, 6.1vw, 1.48rem);
        max-width: 19ch;
    }

    .deal-action-btn {
        width: 1.88rem;
        height: 1.88rem;
    }

    .showcase-carousel {
        height: 360px;
    }

    .showcase-content-shell {
        width: calc(100% - 1.2rem);
    }

    .showcase-content {
        max-width: min(92%, 520px);
    }

    .showcase-tag {
        font-size: clamp(0.76rem, 3.2vw, 0.92rem);
        letter-spacing: 0.04em;
    }

    .showcase-content h1 {
        margin-top: 0.4rem;
        font-size: clamp(1.52rem, 8.8vw, 2.05rem);
        line-height: 1.04;
    }

    .showcase-subtitle {
        margin-top: 0.62rem;
        max-width: 21ch;
        font-size: clamp(0.88rem, 3.8vw, 1.05rem);
        line-height: 1.26;
    }

    .showcase-nav {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.45rem;
    }

    .showcase-scroll {
        bottom: 1.9rem;
        padding: 0.38rem 0.7rem;
        font-size: 0.76rem;
    }

    .newsletter-media {
        min-height: 220px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-right: 1px solid #d8d8d8;
        border-bottom: none;
    }

    .newsletter-form .btn {
        width: 100%;
        min-height: 49px;
    }

    .popular-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .final-cta-inner {
        min-height: 200px;
        padding: 1.5rem 0.8rem;
    }

    .final-cta-inner::before,
    .final-cta-inner::after {
        width: 110px;
        height: 110px;
        border-width: 4px;
    }

    .final-cta-inner::before {
        left: -58px;
        top: 60px;
    }

    .final-cta-inner::after {
        right: -58px;
        bottom: 60px;
    }

    .final-cta-button {
        width: auto;
        min-width: 0;
    }

    .btn {
        width: 100%;
    }

    .wishlist-empty-panel .btn,
    .wishlist-cart-form .btn {
        width: auto;
    }

    .showcase-content .btn {
        width: auto;
        font-size: 0.82rem;
        letter-spacing: 0.02em;
        padding: 0.58rem 1.08rem;
    }

    .hero-cta .btn {
        width: auto;
    }

    .shop-hero {
        margin-top: 0;
    }

    .shop-hero-inner {
        min-height: 0;
        align-items: flex-start;
        padding: 1rem 0.95rem;
    }

    .shop-hero-car {
        width: 150px;
        max-width: 38%;
    }

    .shop-hero h1 {
        font-size: 1.08rem;
    }

    .shop-hero-breadcrumb {
        font-size: 0.78rem;
    }

    .shop-price-fields {
        grid-template-columns: 1fr;
    }

    .shop-filter-actions {
        grid-template-columns: 1fr;
    }

    .shop-search-field input {
        min-height: 2.6rem;
    }

    .shop-page.has-shop-filter-ui .shop-filter-fab {
        position: fixed;
        left: 0.7rem;
        bottom: 1.05rem;
        z-index: 116;
        display: inline-flex;
    }

    .shop-page.has-shop-filter-ui .shop-filter-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 114;
        border: none;
        background: rgba(12, 12, 12, 0.52);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease;
        cursor: pointer;
    }

    .shop-page.has-shop-filter-ui.is-filter-open .shop-filter-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .shop-page.has-shop-filter-ui .shop-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(88vw, 360px);
        max-width: 88vw;
        z-index: 115;
        background: #efefef;
        padding: 0.82rem 0.72rem 1rem;
        overflow-y: auto;
        box-shadow: 16px 0 30px rgba(24, 24, 24, 0.22);
        transform: translateX(-108%);
        visibility: hidden;
        transition: transform 0.22s ease;
        pointer-events: none;
    }

    .shop-page.has-shop-filter-ui.is-filter-open .shop-sidebar {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .shop-page.has-shop-filter-ui .shop-filter-mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.7rem;
        min-height: 2.5rem;
        margin-bottom: 0.75rem;
        padding: 0 0.1rem;
    }

    .shop-page.has-shop-filter-ui .shop-filter-mobile-head strong {
        font-family: "Sora", "Plus Jakarta Sans", sans-serif;
        font-size: 1rem;
        color: #333333;
    }

    .shop-page.has-shop-filter-ui .shop-filter-mobile-close {
        width: 2.2rem;
        height: 2.2rem;
        border-radius: 999px;
        border: 1px solid #dbdbdb;
        background: #ffffff;
        color: #303030;
        font-size: 1.45rem;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .shop-toolbar-meta {
        gap: 0.45rem;
    }

    .shop-found {
        width: 100%;
        white-space: normal;
    }

    .shop-view-toggle {
        width: auto;
    }

    .shop-sort-form {
        width: 100%;
        justify-content: space-between;
    }

    .shop-sort-form select {
        min-width: 0;
        width: 100%;
    }

    .shop-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.72rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .deal-overlay {
        gap: 0.22rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .shop-review-badge {
        right: 0.62rem;
        bottom: 0.62rem;
        padding: 0.18rem 0.36rem;
        font-size: 0.65rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .shop-review-icon {
        font-size: 0.58rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .deal-info-inline h3 {
        max-width: 100%;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .deal-actions {
        margin-top: 0.08rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .shop-card-badges {
        top: 0.62rem;
        left: 0.62rem;
        right: 0.62rem;
        gap: 0.26rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .deal-promo-badge {
        min-height: 1.56rem;
        padding: 0 0.5rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .shop-sold-badge {
        font-size: 0.72rem;
        padding: 0 0.5rem;
        min-height: 1.56rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card.is-touch-actions .deal-overlay {
        gap: 0.08rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card.is-touch-actions .deal-info-inline h3 {
        margin: 0 0 0.04rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card.is-touch-actions .deal-price-inline {
        display: none;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card.is-touch-actions .deal-actions {
        margin-top: 0;
    }

    .shop-products-grid.is-list .shop-deal-card {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .shop-products-grid.is-list .shop-deal-card .deal-image-wrap {
        aspect-ratio: 4 / 3;
    }

    .shop-products-grid.is-list .shop-list-content h3 {
        font-size: 1.12rem;
    }

    .shop-products-grid.is-list .shop-list-price {
        font-size: 1rem;
    }

    .shop-product-meta {
        min-height: 62px;
    }

    .shop-pagination {
        justify-content: center;
    }

    .site-footer {
        margin-top: 0;
    }

    .site-footer-top {
        padding: 1.65rem 0 1.45rem;
    }

    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 0.9rem;
        align-items: start;
    }

    .footer-brand-block {
        grid-column: 1 / -1;
    }

    .footer-social {
        grid-column: 1 / -1;
    }

    .footer-brand-block p {
        max-width: none;
    }

    .social-link {
        width: 2.35rem;
        height: 2.35rem;
    }

    .site-footer-bottom-inner {
        min-height: 0;
        padding: 0.85rem 0 1rem;
        flex-direction: column;
        align-items: center;
        gap: 0.38rem;
    }

    .site-footer-bottom-inner p {
        font-size: 0.82rem;
    }
}

@media (min-width: 641px) and (max-width: 960px) {
    .site-header {
        padding: 0;
    }

    .site-header-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        grid-template-areas:
            "menu brand right"
            "nav nav nav";
        min-height: 0;
        gap: 0.4rem 0.54rem;
        padding: 0.4rem 0.42rem 0.36rem;
        border: none;
        border-radius: 0;
        background: #ffffff;
        box-shadow: none;
        align-items: center;
    }

    .header-top-right {
        display: inline-flex;
        gap: 0.42rem;
    }

    .header-top-links {
        gap: 0.72rem;
    }

    .header-top-links a {
        font-size: 0.76rem;
    }

    .brand {
        font-size: 0.92rem;
        letter-spacing: 0.015em;
        max-width: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-logo-image {
        width: 1.7rem;
        height: 1.7rem;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        margin-left: 0;
        width: 1.8rem;
        height: 1.8rem;
    }

    .main-nav {
        display: flex;
        gap: 0.3rem;
        padding-top: 0.34rem;
    }

    .main-nav a,
    .main-nav button,
    .main-nav .header-search-inline-form {
        min-height: 1.72rem;
        padding: 0 0.66rem;
        font-size: 0.72rem;
    }

    .header-chip-category {
        min-width: 98px;
    }

    .header-search-pill {
        min-width: 138px;
        max-width: 200px;
    }

    .header-actions {
        display: inline-flex;
        gap: 0.2rem;
    }

    .header-actions a,
    .header-actions button {
        width: 1.7rem;
        height: 1.7rem;
    }

    .header-actions .badge-cart {
        top: -0.24rem;
        right: -0.2rem;
    }
}

@media (hover: none) {
    .shop-product-actions {
        opacity: 1;
        max-height: 3rem;
        transform: none;
        margin-top: 0.2rem;
    }
}

.unit-verify-page {
    margin-top: clamp(1rem, 2.3vw, 1.4rem);
    margin-bottom: clamp(1.4rem, 2.8vw, 2rem);
    display: grid;
    gap: 1rem;
}

.unit-verify-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid #d5dbe5;
    border-radius: 22px;
    padding: clamp(1rem, 2.6vw, 1.45rem);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
    gap: clamp(0.9rem, 2.2vw, 1.3rem);
    box-shadow: 0 20px 34px rgba(8, 16, 32, 0.08);
}

.unit-verify-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -150px;
    bottom: -180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(45, 214, 184, 0.34) 0%, rgba(45, 214, 184, 0) 68%);
    pointer-events: none;
}

.unit-verify-hero.is-authentic {
    background:
        linear-gradient(145deg, #0d182f 0%, #0f2d4a 42%, #153d57 100%);
    color: #f8fcff;
}

.unit-verify-hero.is-missing {
    background:
        linear-gradient(145deg, #281414 0%, #40201b 45%, #5b2f22 100%);
    color: #fff9f7;
}

.unit-verify-hero-copy,
.unit-verify-hero-media {
    position: relative;
    z-index: 1;
}

.unit-verify-kicker {
    margin: 0;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.78);
}

.unit-verify-hero h1 {
    margin: 0.34rem 0 0;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.35rem, 3.4vw, 2rem);
    line-height: 1.15;
}

.unit-verify-hero p {
    margin: 0.66rem 0 0;
    color: rgba(248, 252, 255, 0.84);
    line-height: 1.6;
    max-width: 48ch;
}

.unit-verify-token {
    width: fit-content;
    max-width: 100%;
    margin-top: 0.74rem;
    padding: 0.5rem 0.7rem;
    border-radius: 11px;
    border: 1px dashed rgba(255, 255, 255, 0.36);
    background: rgba(0, 0, 0, 0.22);
    color: #ffe1d8;
    font-family: "JetBrains Mono", "Consolas", monospace;
    font-size: 0.79rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.unit-verify-badge-row {
    margin-top: 0.85rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.46rem;
}

.unit-verify-auth-badge {
    min-height: 1.92rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(141, 255, 230, 0.58);
    background: rgba(26, 227, 189, 0.18);
    color: #cbfff3;
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.unit-verify-auth-badge svg {
    width: 0.98rem;
    height: 0.98rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.unit-verify-hero .status-badge {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.unit-verify-cta-row {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.unit-verify-buy-btn {
    min-width: 180px;
}

.unit-verify-hero .btn.btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.unit-verify-hero .btn.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.12);
}

.unit-verify-hero-media {
    justify-self: end;
    align-self: end;
    width: min(100%, 320px);
}

.unit-verify-hero-media img,
.unit-verify-image-fallback {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(8, 18, 36, 0.36);
}

.unit-verify-hero-media img {
    display: block;
    object-fit: cover;
}

.unit-verify-image-fallback {
    display: grid;
    place-items: center;
}

.unit-verify-image-fallback span {
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 8vw, 3.1rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.88);
}

.unit-verify-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.unit-verify-card {
    border: 1px solid #dfe3ea;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(20, 26, 38, 0.05);
}

.unit-verify-card-wide {
    grid-column: 1 / -1;
}

.unit-verify-card h3 {
    margin: 0 0 0.75rem;
    font-family: "Sora", "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
}

.unit-verify-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.48rem;
}

.unit-verify-list li {
    display: grid;
    grid-template-columns: minmax(130px, 160px) 1fr;
    gap: 0.6rem;
    align-items: start;
    padding: 0.42rem 0;
    border-bottom: 1px dashed #e2e6ec;
}

.unit-verify-list li:last-child {
    border-bottom: none;
}

.unit-verify-list li span {
    color: #677182;
    font-size: 0.82rem;
    font-weight: 600;
}

.unit-verify-list li strong {
    color: #222d3f;
    font-size: 0.9rem;
    overflow-wrap: anywhere;
}

.unit-verify-note {
    margin: 0;
    color: #3f4a5f;
    line-height: 1.65;
}

@media (max-width: 960px) {
    .unit-verify-hero {
        grid-template-columns: 1fr;
    }

    .unit-verify-hero-media {
        justify-self: start;
        width: min(100%, 290px);
        order: -1;
    }
}

@media (max-width: 640px) {
    .unit-verify-page {
        gap: 0.8rem;
    }

    .unit-verify-hero {
        border-radius: 16px;
        padding: 0.9rem;
    }

    .unit-verify-cta-row .btn {
        width: 100%;
        justify-content: center;
    }

    .unit-verify-grid {
        grid-template-columns: 1fr;
    }

    .unit-verify-list li {
        grid-template-columns: 1fr;
        gap: 0.22rem;
    }
}

html[data-theme="dark"] .unit-verify-card {
    border-color: #2f3440;
    background: #14171f;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .unit-verify-list li {
    border-bottom-color: #2b313d;
}

html[data-theme="dark"] .unit-verify-list li span {
    color: #9aa7bc;
}

html[data-theme="dark"] .unit-verify-list li strong {
    color: #edf2ff;
}

html[data-theme="dark"] .unit-verify-note {
    color: #cfd7e7;
}

html {
    color-scheme: light;
}

html[data-theme="dark"] {
    color-scheme: dark;
    --bg: #050505;
    --surface: #101010;
    --surface-soft: #1a1a1a;
    --primary: #555555;
    --primary-dark: #3b3b3b;
    --secondary: #bfbfbf;
    --ink: #f8f8f8;
    --muted: #d4d4d4;
    --success: #a7a7a7;
    --warning: #bfbfbf;
    --danger: #999999;
    --border: #2a2a2a;
    --shadow-sm: 0 14px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.42);
    scrollbar-color: #676767 transparent;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 2.42rem;
    padding: 0.34rem 0.82rem;
    border-radius: 999px;
    border: 1px solid #d9d9d9;
    background: rgba(255, 255, 255, 0.92);
    color: #262626;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle:hover {
    background: #ffffff;
    border-color: #cacaca;
    transform: translateY(-1px);
}

.theme-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(134, 134, 134, 0.2);
}

.theme-toggle-swatch {
    position: relative;
    width: 1rem;
    height: 1rem;
    display: inline-block;
    flex-shrink: 0;
}

.theme-toggle-swatch::before,
.theme-toggle-swatch::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    transition: all 0.22s ease;
}

.theme-toggle-swatch::before {
    inset: 0.18rem;
    background: #cfcfcf;
    box-shadow: 0 0 0 0.15rem rgba(207, 207, 207, 0.24);
}

.theme-toggle-swatch::after {
    inset: -0.08rem;
    border: 1.4px solid rgba(207, 207, 207, 0.42);
    opacity: 0.58;
    transform: scale(0.92);
}

.theme-toggle-compact {
    width: 2.42rem;
    min-width: 2.42rem;
    padding: 0;
    gap: 0;
}

.header-theme-toggle {
    margin-right: 0.08rem;
}

.mobile-nav-theme-toggle {
    width: 100%;
    justify-content: flex-start;
}

.admin-theme-toggle {
    width: 100%;
    justify-content: center;
}

.admin-mobile-header-actions,
.admin-auth-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

html[data-theme="dark"] .theme-toggle {
    border-color: #3a3a3a;
    background: rgba(18, 18, 18, 0.94);
    color: #f8f8f8;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

html[data-theme="dark"] .theme-toggle:hover {
    background: #1f1f1f;
    border-color: #bfbfbf;
}

html[data-theme="dark"] .theme-toggle-swatch {
    width: 1rem;
    height: 1rem;
}

html[data-theme="dark"] .theme-toggle-swatch::before {
    inset: auto;
    top: 0.12rem;
    left: 0.16rem;
    width: 0.72rem;
    height: 0.72rem;
    background: #f2f2f2;
    box-shadow: 0 0 0 0.15rem rgba(171, 171, 171, 0.18);
}

html[data-theme="dark"] .theme-toggle-swatch::after {
    inset: auto;
    top: 0.02rem;
    left: 0.42rem;
    width: 0.72rem;
    height: 0.72rem;
    border: none;
    background: #1e1e1e;
    opacity: 1;
    transform: none;
}

html[data-theme="dark"]::-webkit-scrollbar-thumb,
html[data-theme="dark"] body::-webkit-scrollbar-thumb {
    background: rgba(122, 122, 122, 0.82);
}

html[data-theme="dark"]::-webkit-scrollbar-thumb:hover,
html[data-theme="dark"] body::-webkit-scrollbar-thumb:hover {
    background: rgba(156, 156, 156, 0.92);
}

html[data-theme="dark"] body {
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(134, 134, 134, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(171, 171, 171, 0.1), transparent 22%),
        linear-gradient(180deg, #050505 0%, #0b0b0b 42%, #040404 100%);
}

html[data-theme="dark"] a {
    color: inherit;
}

html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] h5,
html[data-theme="dark"] h6,
html[data-theme="dark"] strong,
html[data-theme="dark"] label,
html[data-theme="dark"] th,
html[data-theme="dark"] .brand,
html[data-theme="dark"] .main-nav a,
html[data-theme="dark"] .cart-drawer-head h3,
html[data-theme="dark"] .cart-drawer-meta h4,
html[data-theme="dark"] .deal-info-inline h3,
html[data-theme="dark"] .product-card h3,
html[data-theme="dark"] .product-detail-info h1,
html[data-theme="dark"] .product-detail-breadcrumb strong,
html[data-theme="dark"] .payment-method-preview-text strong,
html[data-theme="dark"] .shipping-method-preview-text strong,
html[data-theme="dark"] .section-title h2,
html[data-theme="dark"] .member-dashboard-head h3,
html[data-theme="dark"] .admin-page-head-main h1,
html[data-theme="dark"] .admin-login-modal-dialog h3,
html[data-theme="dark"] .admin-repeater-item-head strong,
html[data-theme="dark"] .wishlist-product-name,
html[data-theme="dark"] .shop-hero h1,
html[data-theme="dark"] .shop-filter-card h3,
html[data-theme="dark"] .shop-filter-hint strong {
    color: var(--ink);
}

html[data-theme="dark"] p,
html[data-theme="dark"] small,
html[data-theme="dark"] li,
html[data-theme="dark"] td,
html[data-theme="dark"] .text-muted,
html[data-theme="dark"] .field-note,
html[data-theme="dark"] .summary-row,
html[data-theme="dark"] .summary-row span,
html[data-theme="dark"] .timeline li,
html[data-theme="dark"] .search-modal-hint,
html[data-theme="dark"] .top-strip-left,
html[data-theme="dark"] .top-strip-right,
html[data-theme="dark"] .mobile-nav-profile-meta small,
html[data-theme="dark"] .mobile-nav-user,
html[data-theme="dark"] .header-account-user,
html[data-theme="dark"] .cart-drawer-meta p,
html[data-theme="dark"] .cart-drawer-empty p,
html[data-theme="dark"] .cart-drawer-subtotal span,
html[data-theme="dark"] .product-detail-description,
html[data-theme="dark"] .product-detail-breadcrumb,
html[data-theme="dark"] .product-detail-category,
html[data-theme="dark"] .product-detail-rating,
html[data-theme="dark"] .member-dashboard-quick span,
html[data-theme="dark"] .admin-kicker,
html[data-theme="dark"] .admin-auth-hint,
html[data-theme="dark"] .admin-site-footer-inner p,
html[data-theme="dark"] .admin-head-pill,
html[data-theme="dark"] .admin-inline-check,
html[data-theme="dark"] .admin-uploaded-image-check,
html[data-theme="dark"] .admin-current-image-preview span,
html[data-theme="dark"] .wishlist-product-category,
html[data-theme="dark"] .shop-hero-breadcrumb,
html[data-theme="dark"] .shop-toolbar,
html[data-theme="dark"] .shop-sort-form label,
html[data-theme="dark"] .shop-filter-hint,
html[data-theme="dark"] .footer-brand-block p,
html[data-theme="dark"] .footer-links a,
html[data-theme="dark"] .site-footer-bottom-inner p {
    color: var(--muted);
}

html[data-theme="dark"] .cart-drawer-item-price {
    color: #d0d0d0;
}

html[data-theme="dark"] .cart-drawer-item-price-old {
    color: #aeaeae;
}

html[data-theme="dark"] .top-strip {
    background: rgba(14, 14, 14, 0.88);
    border-bottom-color: #1f1f1f;
}

html[data-theme="dark"] .top-strip-left span:not(:last-child)::after {
    background: #333333;
}

html[data-theme="dark"] .site-header {
    background: #0f0f10;
    border-bottom-color: #262626;
}

html[data-theme="dark"] .site-header.is-sticky {
    background: #0f0f10;
    box-shadow: none;
}

html[data-theme="dark"] .site-header-inner {
    background: #0f0f10;
    border-color: transparent;
    box-shadow: none;
}

html[data-theme="dark"] .brand-logo-image {
    border-color: rgba(103, 103, 103, 0.55);
    background: #111111;
}

html[data-theme="dark"] .header-top-links a {
    color: #cfcfcf;
}

html[data-theme="dark"] .header-top-links a:hover {
    color: #ffffff;
}

html[data-theme="dark"] .main-nav a,
html[data-theme="dark"] .main-nav button {
    color: #e6e6e6;
    border-color: #353535;
    background: #171717;
}

html[data-theme="dark"] .main-nav a:hover,
html[data-theme="dark"] .main-nav button:hover {
    color: #ffffff;
    background: #1f1f1f;
    border-color: #bfbfbf;
}

html[data-theme="dark"] .header-category-toggle[aria-expanded="true"] {
    border-color: #5b5b5b;
    background: #202020;
}

html[data-theme="dark"] .header-category-dropdown {
    background: #111111;
    border-color: #2f2f2f;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.46);
}

html[data-theme="dark"] .header-category-dropdown a {
    background: #171717;
    border-color: #2e2e2e;
    color: #e8e8e8;
}

html[data-theme="dark"] .header-category-dropdown a:hover {
    border-color: #606060;
    background: #1e1e1e;
    color: #ffffff;
}

html[data-theme="dark"] .header-search-pill {
    color: #bdbdbd;
}

html[data-theme="dark"] .main-nav .header-search-inline-form {
    background: #131313;
    border-color: #343434;
}

html[data-theme="dark"] .main-nav .header-search-inline-form:hover {
    background: #191919;
    border-color: #505050;
    color: #f0f0f0;
}

html[data-theme="dark"] .main-nav .header-search-inline-form:focus-within {
    background: #101010;
    border-color: #7a7a7a;
    color: #f8f8f8;
}

html[data-theme="dark"] .header-search-inline-form input::placeholder {
    color: #8f8f8f;
}

html[data-theme="dark"] .header-search-inline-submit:hover {
    color: #f0f0f0;
}

html[data-theme="dark"] .header-actions a,
html[data-theme="dark"] .header-actions button,
html[data-theme="dark"] .mobile-nav-toggle,
html[data-theme="dark"] .mobile-nav-close,
html[data-theme="dark"] .mobile-nav-icon-link,
html[data-theme="dark"] .mobile-nav-icon-btn,
html[data-theme="dark"] .mobile-nav-link,
html[data-theme="dark"] .mobile-nav-profile-toggle,
html[data-theme="dark"] .cart-drawer-close,
html[data-theme="dark"] .cart-drawer-remove,
html[data-theme="dark"] .search-modal-close,
html[data-theme="dark"] .admin-mobile-menu-btn,
html[data-theme="dark"] .admin-login-modal-close,
html[data-theme="dark"] .wishlist-remove-btn,
html[data-theme="dark"] .shop-filter-fab,
html[data-theme="dark"] .shop-filter-mobile-close {
    background: #161616;
    color: #efefef;
    border-color: #3c3c3c;
}

html[data-theme="dark"] .header-actions a:hover,
html[data-theme="dark"] .header-actions button:hover,
html[data-theme="dark"] .mobile-nav-toggle:hover,
html[data-theme="dark"] .mobile-nav-icon-link:hover,
html[data-theme="dark"] .mobile-nav-icon-btn:hover,
html[data-theme="dark"] .mobile-nav-link:hover,
html[data-theme="dark"] .mobile-nav-profile-toggle:hover,
html[data-theme="dark"] .cart-drawer-close:hover,
html[data-theme="dark"] .cart-drawer-remove:hover,
html[data-theme="dark"] .admin-mobile-menu-btn:hover,
html[data-theme="dark"] .admin-login-modal-close:hover,
html[data-theme="dark"] .wishlist-remove-btn:hover,
html[data-theme="dark"] .shop-filter-fab:hover,
html[data-theme="dark"] .shop-filter-mobile-close:hover {
    background: #1c1c1c;
    color: #ffffff;
    border-color: #bfbfbf;
}

html[data-theme="dark"] .mobile-nav-panel,
html[data-theme="dark"] .cart-drawer-panel,
html[data-theme="dark"] .cart-drawer-head,
html[data-theme="dark"] .cart-drawer-foot,
html[data-theme="dark"] .header-account-dropdown,
html[data-theme="dark"] .mobile-nav-user,
html[data-theme="dark"] .cart-drawer-empty,
html[data-theme="dark"] .panel,
html[data-theme="dark"] .auth-card,
html[data-theme="dark"] .admin-auth-card,
html[data-theme="dark"] .admin-page-head,
html[data-theme="dark"] .member-dashboard-quick,
html[data-theme="dark"] .payment-method-preview,
html[data-theme="dark"] .shipping-method-preview,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .deal-card,
html[data-theme="dark"] .product-detail-card,
html[data-theme="dark"] .shop-sidebar,
html[data-theme="dark"] .shop-filter-card,
html[data-theme="dark"] .shop-toolbar,
html[data-theme="dark"] .wishlist-empty-panel,
html[data-theme="dark"] .wishlist-table-wrap,
html[data-theme="dark"] .admin-mobile-header,
html[data-theme="dark"] .admin-auth-header,
html[data-theme="dark"] .admin-site-footer,
html[data-theme="dark"] .admin-repeater-item,
html[data-theme="dark"] .admin-payment-preview,
html[data-theme="dark"] .admin-current-image-preview,
html[data-theme="dark"] .admin-uploaded-image-card,
html[data-theme="dark"] .admin-legacy-image-list,
html[data-theme="dark"] .admin-logo-preview,
html[data-theme="dark"] .admin-login-modal-dialog {
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.98) 0%, rgba(22, 22, 22, 0.98) 100%);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

html[data-theme="dark"] .flash-success {
    background: rgba(88, 88, 88, 0.16);
    border-color: rgba(167, 167, 167, 0.25);
    color: #cbcbcb;
}

html[data-theme="dark"] .flash-error {
    background: rgba(75, 75, 75, 0.16);
    border-color: rgba(153, 153, 153, 0.28);
    color: #d2d2d2;
}

html[data-theme="dark"] .btn-outline {
    background: #161616;
    color: var(--ink);
    border-color: #454545;
}

html[data-theme="dark"] .btn-outline:hover {
    background: #1c1c1c;
}

html[data-theme="dark"] .btn-danger {
    background: rgba(75, 75, 75, 0.18);
    color: #d2d2d2;
}

html[data-theme="dark"] .btn-danger:hover {
    background: rgba(75, 75, 75, 0.28);
}

html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select,
html[data-theme="dark"] .search-modal-form input,
html[data-theme="dark"] .shop-sort-form select {
    background: #0f0f0f;
    color: var(--ink);
    border-color: #303030;
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder,
html[data-theme="dark"] .search-modal-form input::placeholder {
    color: #818181;
}

html[data-theme="dark"] input:focus,
html[data-theme="dark"] textarea:focus,
html[data-theme="dark"] select:focus,
html[data-theme="dark"] .shop-sort-form select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(134, 134, 134, 0.18);
}

html[data-theme="dark"] .search-modal-backdrop {
    background: rgba(7, 7, 7, 0.88);
    backdrop-filter: blur(4px);
}

html[data-theme="dark"] .search-modal-close,
html[data-theme="dark"] .search-modal-form button {
    color: #e7e7e7;
}

html[data-theme="dark"] .search-modal-form {
    border-bottom-color: #404040;
}

html[data-theme="dark"] .admin-login-modal-backdrop,
html[data-theme="dark"] .mobile-nav-backdrop,
html[data-theme="dark"] .cart-drawer-backdrop,
html[data-theme="dark"] .admin-sidebar-backdrop,
html[data-theme="dark"] .shop-page.has-shop-filter-ui .shop-filter-backdrop {
    background: rgba(6, 6, 6, 0.72);
}

html[data-theme="dark"] .account-auth-tab,
html[data-theme="dark"] .header-account-dropdown a,
html[data-theme="dark"] .header-account-logout-form button,
html[data-theme="dark"] .payment-method-logo-item,
html[data-theme="dark"] .shipping-method-logo-item,
html[data-theme="dark"] .admin-auth-hint code,
html[data-theme="dark"] .admin-head-pill {
    background: #161616;
    border-color: #2e2e2e;
    color: var(--ink);
}

html[data-theme="dark"] .header-account-role-vip,
html[data-theme="dark"] .mobile-nav-role-vip {
    color: #2f2103;
    border-color: #e8c567;
    background: linear-gradient(135deg, #ffe9a8 0%, #f6d076 48%, #e3b451 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 18px rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] .vip-product-kicker {
    color: #2f2103;
    border-color: #e8c567;
    background: linear-gradient(135deg, #ffe9a8 0%, #f6d076 48%, #e3b451 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 18px rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] .vip-board-hero {
    border-color: #2d3039;
    background:
        radial-gradient(120% 140% at 2% -10%, rgba(227, 180, 81, 0.18) 0%, rgba(227, 180, 81, 0) 56%),
        linear-gradient(135deg, #12141a 0%, #141822 52%, #191f2b 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] .vip-board-hero p,
html[data-theme="dark"] .vip-board-card p,
html[data-theme="dark"] .vip-board-mini-card p,
html[data-theme="dark"] .vip-board-feature-card p,
html[data-theme="dark"] .vip-article-lead {
    color: #c2c6d2;
}

html[data-theme="dark"] .vip-board-feature-card,
html[data-theme="dark"] .vip-board-mini-card,
html[data-theme="dark"] .vip-board-card,
html[data-theme="dark"] .vip-article-main,
html[data-theme="dark"] .vip-article-aside {
    border-color: #2d3039;
    background: #141821;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .vip-board-metric {
    border-color: #2e313a;
    background: rgba(20, 24, 33, 0.78);
}

html[data-theme="dark"] .vip-board-metric span,
html[data-theme="dark"] .vip-board-card-head time,
html[data-theme="dark"] .vip-board-date,
html[data-theme="dark"] .vip-article-side-date {
    color: #9fa4b4;
}

html[data-theme="dark"] .vip-board-read-link {
    color: #e8ebf3;
    border-bottom-color: rgba(232, 235, 243, 0.42);
}

html[data-theme="dark"] .vip-board-read-link:hover {
    border-bottom-color: #f1f3f9;
}

html[data-theme="dark"] .vip-article-meta span {
    background: #1a1f2b;
    border-color: #2f3442;
    color: #b6bccd;
}

html[data-theme="dark"] .vip-article-content {
    color: #eceef6;
}

html[data-theme="dark"] .vip-article-side-link {
    border-color: #2f3442;
    background: #1a1f2b;
    color: #eceef6;
}

html[data-theme="dark"] .vip-article-side-link:hover {
    border-color: #43495b;
    background: #1d2330;
}

html[data-theme="dark"] .vip-sparkle-dot {
    border-color: #f0cf72;
    background: radial-gradient(circle at 32% 28%, #fff9e4 0%, #f8dc86 42%, #e5bc52 100%);
}

html[data-theme="dark"] .brand-vip-crown {
    border-color: rgba(231, 198, 111, 0.42);
    background: radial-gradient(circle at 30% 30%, #fff7d8 0%, #f6d684 44%, #d8a948 100%);
}

html[data-theme="dark"] .brand-vip-crown svg {
    fill: #4d3302;
}

html[data-theme="dark"] .account-auth-tab:hover,
html[data-theme="dark"] .header-account-dropdown a:hover,
html[data-theme="dark"] .header-account-logout-form button:hover,
html[data-theme="dark"] .payment-method-logo-item:hover,
html[data-theme="dark"] .shipping-method-logo-item:hover {
    background: #1b1b1b;
    border-color: #5b5b5b;
}

html[data-theme="dark"] .account-auth-tab.is-active,
html[data-theme="dark"] .payment-method-logo-item.is-active,
html[data-theme="dark"] .shipping-method-logo-item.is-active {
    background: rgba(148, 148, 148, 0.16);
    border-color: rgba(148, 148, 148, 0.42);
    color: #e7e7e7;
}

html[data-theme="dark"] .payment-method-logo,
html[data-theme="dark"] .payment-method-logo-fallback,
html[data-theme="dark"] .shipping-method-logo,
html[data-theme="dark"] .shipping-method-logo-fallback,
html[data-theme="dark"] .payment-method-logo-item img,
html[data-theme="dark"] .shipping-method-logo-item img {
    background: #0f0f0f;
    border-color: #303030;
}

html[data-theme="dark"] .payment-method-logo-item small,
html[data-theme="dark"] .shipping-method-logo-item small,
html[data-theme="dark"] .admin-logo-preview span,
html[data-theme="dark"] .admin-mobile-brand,
html[data-theme="dark"] .admin-auth-header .admin-brand {
    color: var(--ink);
}

html[data-theme="dark"] .midtrans-channel-showcase {
    background: #161616;
    border-color: #2e2e2e;
}

html[data-theme="dark"] .midtrans-channel-title,
html[data-theme="dark"] .midtrans-channel-card span {
    color: var(--ink);
}

html[data-theme="dark"] .midtrans-channel-card {
    background: #111111;
    border-color: #2e2e2e;
}

html[data-theme="dark"] .midtrans-channel-card.is-selected,
html[data-theme="dark"] .midtrans-channel-card:has(input[type="radio"]:checked) {
    border-color: rgba(148, 148, 148, 0.72);
    background: rgba(148, 148, 148, 0.16);
}

html[data-theme="dark"] .midtrans-channel-card img {
    background: #0f0f0f;
    border-color: #303030;
}

html[data-theme="dark"] .shipping-method-preview.is-loading {
    opacity: 0.92;
}

html[data-theme="dark"] .shipping-quote-status {
    color: #cacaca;
}

html[data-theme="dark"] .shipping-quote-status-dot {
    border-color: #4c4c4c;
    border-top-color: #cacaca;
}

html[data-theme="dark"] .shipping-quote-status.is-error {
    color: #cacaca;
}

html[data-theme="dark"] .shipping-quote-status.is-error .shipping-quote-status-dot {
    border-color: #4b4b4b;
    border-top-color: #cacaca;
}

html[data-theme="dark"] .admin-sidebar {
    background: linear-gradient(180deg, #101010 0%, #131313 100%);
    border-right-color: rgba(109, 109, 109, 0.22);
}

html[data-theme="dark"] .admin-auth-header,
html[data-theme="dark"] .admin-site-footer,
html[data-theme="dark"] .admin-mobile-header {
    border-color: #262626;
}

html[data-theme="dark"] .admin-site-footer {
    background: linear-gradient(180deg, rgba(23, 23, 23, 0.98) 0%, rgba(18, 18, 18, 0.98) 100%);
}

html[data-theme="dark"] .admin-user-pill {
    border-color: rgba(109, 109, 109, 0.36);
    background: rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] .admin-product-thumb,
html[data-theme="dark"] .wishlist-product-image,
html[data-theme="dark"] .cart-drawer-thumb,
html[data-theme="dark"] .admin-payment-preview img,
html[data-theme="dark"] .admin-current-image-preview img,
html[data-theme="dark"] .admin-uploaded-image-card img {
    background: #0f0f0f;
    border-color: #404040;
}

html[data-theme="dark"] table,
html[data-theme="dark"] th,
html[data-theme="dark"] td,
html[data-theme="dark"] .wishlist-table th,
html[data-theme="dark"] .wishlist-table td {
    border-color: var(--border);
}

html[data-theme="dark"] th,
html[data-theme="dark"] .wishlist-table th {
    color: #b5b5b5;
}

html[data-theme="dark"] .member-dashboard-page .table-wrap tbody tr,
html[data-theme="dark"] .admin-main-content .table-wrap tbody tr {
    border-color: var(--border);
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.98) 0%, rgba(22, 22, 22, 0.98) 100%);
}

html[data-theme="dark"] .member-dashboard-page .table-wrap tbody td::before,
html[data-theme="dark"] .admin-main-content .table-wrap tbody td::before {
    color: #929292;
}

html[data-theme="dark"] .status-pending {
    background: rgba(191, 191, 191, 0.16);
    color: #d0d0d0;
}

html[data-theme="dark"] .status-paid,
html[data-theme="dark"] .status-completed {
    background: rgba(167, 167, 167, 0.16);
    color: #c8c8c8;
}

html[data-theme="dark"] .status-rejected,
html[data-theme="dark"] .status-cancelled {
    background: rgba(153, 153, 153, 0.16);
    color: #c0c0c0;
}

html[data-theme="dark"] .status-shipped {
    background: rgba(134, 134, 134, 0.18);
    color: #c7c7c7;
}

html[data-theme="dark"] .shop-hero {
    background:
        linear-gradient(135deg, rgba(15, 15, 15, 0.82) 0%, rgba(24, 24, 24, 0.86) 100%),
        var(--shop-hero-bg-image, url("https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=1600&q=80")) center / cover no-repeat;
    border-color: #323232;
}

html[data-theme="dark"] .shop-hero.shop-hero-vip {
    border-color: rgba(175, 139, 70, 0.34);
    background:
        radial-gradient(circle at 85% 18%, rgba(168, 125, 43, 0.28), transparent 46%),
        linear-gradient(135deg, rgba(33, 24, 13, 0.84) 0%, rgba(21, 17, 12, 0.88) 100%),
        var(--shop-hero-bg-image, url("https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=1600&q=80")) center / cover no-repeat;
}

html[data-theme="dark"] .shop-hero-mode-badge {
    border-color: rgba(215, 176, 97, 0.42);
    background: linear-gradient(135deg, #5f4416 0%, #8f6221 100%);
    color: #ffecc5;
}

html[data-theme="dark"] .shop-hero.shop-hero-vip .shop-hero-kicker {
    color: #e0bf84;
}

html[data-theme="dark"] .shop-hero.shop-hero-vip h1 {
    color: #fff0d3;
}

html[data-theme="dark"] .shop-hero.shop-hero-vip .shop-hero-breadcrumb {
    color: #d4b887;
}

html[data-theme="dark"] .content-two {
    background-color: #171717;
    background-image:
        linear-gradient(180deg, rgba(13, 13, 13, 0.84) 0%, rgba(17, 17, 17, 0.9) 100%),
        linear-gradient(135deg, rgba(135, 135, 135, 0.34) 0%, rgba(87, 87, 87, 0.42) 100%),
        url("sports-content-background.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto, auto, cover;
    background-blend-mode: normal, soft-light, multiply;
}

html[data-theme="dark"] .catalog-image-slider {
    border-color: #2b2b2b;
    box-shadow: 0 24px 38px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] .catalog-image-slide::after {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.12) 0%, rgba(8, 8, 8, 0.46) 100%);
}

html[data-theme="dark"] .catalog-image-nav {
    border-color: rgba(232, 232, 232, 0.2);
    background: rgba(8, 8, 8, 0.54);
    color: #f4f4f4;
}

html[data-theme="dark"] .catalog-image-nav:hover {
    background: rgba(8, 8, 8, 0.76);
}

html[data-theme="dark"] .catalog-image-dot {
    background: rgba(214, 214, 214, 0.42);
}

html[data-theme="dark"] .catalog-image-dot.is-active {
    background: #f2f2f2;
}

html[data-theme="dark"] .portrait-gallery-section {
    border-color: #2f2f2f;
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 37, 37, 0.94) 0%, rgba(25, 25, 25, 0.92) 46%, rgba(17, 17, 17, 0.95) 100%),
        linear-gradient(140deg, rgba(28, 28, 28, 0.94) 0%, rgba(14, 14, 14, 0.9) 100%);
    box-shadow: 0 22px 34px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .portrait-gallery-item {
    border-color: rgba(221, 221, 221, 0.14);
    background: #1e1e1e;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.38);
}

html[data-theme="dark"] .portrait-gallery-heading {
    color: #f0f0f0;
}

html[data-theme="dark"] .home-secondary-image-card {
    border-color: #2f2f2f;
    background: #131313;
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .trend-card {
    border: 1px solid #353535;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .trend-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 11, 11, 0.16) 0%, rgba(11, 11, 11, 0.38) 36%, rgba(11, 11, 11, 0.74) 100%),
        linear-gradient(90deg, rgba(11, 11, 11, 0.52) 0%, rgba(11, 11, 11, 0.08) 54%, rgba(11, 11, 11, 0) 100%);
    pointer-events: none;
}

html[data-theme="dark"] .trend-meta {
    color: rgba(234, 234, 234, 0.82);
}

html[data-theme="dark"] .trend-price {
    color: rgba(243, 243, 243, 0.9);
}

html[data-theme="dark"] .service-strip {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(21, 21, 21, 0.98) 100%);
    border-color: #262626;
}

html[data-theme="dark"] .service-item h4 {
    color: var(--ink);
}

html[data-theme="dark"] .service-item p {
    color: var(--muted);
}

html[data-theme="dark"] .service-icon {
    border-color: rgba(171, 171, 171, 0.7);
    color: #d0d0d0;
    background: rgba(171, 171, 171, 0.08);
}

html[data-theme="dark"] .newsletter-section {
    border-top-color: #262626;
    border-bottom-color: #262626;
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
}

html[data-theme="dark"] .newsletter-media {
    background: linear-gradient(140deg, #111111, #1a1a1a);
}

html[data-theme="dark"] .newsletter-kicker {
    color: #d0d0d0;
}

html[data-theme="dark"] .newsletter-content > p,
html[data-theme="dark"] .newsletter-note {
    color: var(--muted);
}

html[data-theme="dark"] .popular-items-section {
    border-color: #262626;
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.98) 0%, rgba(19, 19, 19, 0.98) 100%);
}

html[data-theme="dark"] .popular-items-section::before {
    border-color: rgba(174, 174, 174, 0.16);
}

html[data-theme="dark"] .popular-header h2 {
    color: var(--ink);
}

html[data-theme="dark"] .popular-header p {
    color: var(--muted);
}

html[data-theme="dark"] .product-detail-category {
    color: #000000;
}

html[data-theme="dark"] .product-detail-category-vip {
    color: #fff4ca;
    border-color: rgba(240, 201, 102, 0.72);
    background: linear-gradient(135deg, #46340b 0%, #6a4b11 45%, #8a6318 100%);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .product-detail-price {
    color: #d0d0d0;
}

html[data-theme="dark"] .product-detail-price .price-old {
    color: #aeaeae;
}

html[data-theme="dark"] .product-detail-price .price-current {
    color: #d0d0d0;
}

html[data-theme="dark"] .detail-promo-chip {
    background: rgba(171, 171, 171, 0.22);
    color: #dddddd;
}

html[data-theme="dark"] .product-review-head-copy,
html[data-theme="dark"] .product-review-summary-note,
html[data-theme="dark"] .product-review-form-head p,
html[data-theme="dark"] .product-review-form-meta,
html[data-theme="dark"] .product-review-meta p,
html[data-theme="dark"] .product-review-empty p {
    color: var(--muted);
}

html[data-theme="dark"] .product-review-head h2,
html[data-theme="dark"] .product-review-form-head h3,
html[data-theme="dark"] .product-review-card h3,
html[data-theme="dark"] .product-review-empty strong,
html[data-theme="dark"] .product-review-summary-score strong {
    color: var(--ink);
}

html[data-theme="dark"] .product-review-summary-card,
html[data-theme="dark"] .product-review-form-card,
html[data-theme="dark"] .product-review-card,
html[data-theme="dark"] .product-review-empty {
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.98) 0%, rgba(22, 22, 22, 0.98) 100%);
    border-color: #262626;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

html[data-theme="dark"] .product-review-kicker,
html[data-theme="dark"] .product-review-summary-stars .is-active,
html[data-theme="dark"] .product-review-stars .is-active,
html[data-theme="dark"] .admin-review-rating .is-active {
    color: #d0d0d0;
}

html[data-theme="dark"] .product-review-summary-stars .is-muted,
html[data-theme="dark"] .product-review-stars .is-muted,
html[data-theme="dark"] .admin-review-rating .is-muted {
    color: #5b5b5b;
}

html[data-theme="dark"] .product-review-summary-score span,
html[data-theme="dark"] .product-review-breakdown-row > span,
html[data-theme="dark"] .product-review-breakdown-row > strong,
html[data-theme="dark"] .product-review-meta-top strong,
html[data-theme="dark"] .product-review-card > p,
html[data-theme="dark"] .admin-review-rating strong {
    color: var(--ink);
}

html[data-theme="dark"] .product-review-breakdown-bar {
    background: #1a1a1a;
}

html[data-theme="dark"] .product-review-breakdown-bar span {
    background: linear-gradient(90deg, #afafaf 0%, #d0d0d0 100%);
}

html[data-theme="dark"] .product-review-user-badge,
html[data-theme="dark"] .product-review-own-badge {
    background: rgba(171, 171, 171, 0.16);
    color: #dcdcdc;
}

html[data-theme="dark"] .product-review-inline-note {
    background: rgba(171, 171, 171, 0.09);
    border-color: rgba(171, 171, 171, 0.28);
    color: #dcdcdc;
}

html[data-theme="dark"] .product-review-rating-input label {
    color: #535353;
}

html[data-theme="dark"] .product-review-form input:focus,
html[data-theme="dark"] .product-review-form textarea:focus {
    border-color: #afafaf;
    box-shadow: 0 0 0 3px rgba(171, 171, 171, 0.16);
}

html[data-theme="dark"] .product-review-login-card {
    background: linear-gradient(135deg, rgba(171, 171, 171, 0.08) 0%, rgba(27, 27, 27, 0.98) 100%);
    border-color: #262626;
}

html[data-theme="dark"] .product-review-login-card p {
    color: var(--muted);
}

html[data-theme="dark"] .product-review-avatar {
    background: linear-gradient(140deg, #818181 0%, #d0d0d0 100%);
}

html[data-theme="dark"] .final-cta-section {
    border-color: #262626;
    background:
        radial-gradient(circle at 7% 78%, rgba(174, 174, 174, 0.14) 0 82px, transparent 83px),
        radial-gradient(circle at 93% 22%, rgba(174, 174, 174, 0.14) 0 82px, transparent 83px),
        linear-gradient(180deg, rgba(22, 22, 22, 0.98) 0%, rgba(19, 19, 19, 0.98) 100%);
}

html[data-theme="dark"] .final-cta-inner::before,
html[data-theme="dark"] .final-cta-inner::after {
    border-color: rgba(174, 174, 174, 0.18);
}

html[data-theme="dark"] .final-cta-tag {
    color: #b5b5b5;
}

html[data-theme="dark"] .final-cta-inner h2 {
    color: var(--ink);
}

html[data-theme="dark"] .shop-sidebar,
html[data-theme="dark"] .shop-page.has-shop-filter-ui .shop-sidebar {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
}

html[data-theme="dark"] .shop-filter-card {
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.98) 0%, rgba(22, 22, 22, 0.98) 100%);
    border-color: #262626;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

html[data-theme="dark"] .shop-search-field {
    background: #0f0f0f;
    border-color: #2e2e2e;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

html[data-theme="dark"] .shop-search-field input {
    color: var(--ink);
}

html[data-theme="dark"] .shop-search-field button {
    background: #161616;
    border-left-color: #2e2e2e;
    color: #b2b2b2;
}

html[data-theme="dark"] .shop-search-field button:hover {
    color: #d0d0d0;
    background: rgba(171, 171, 171, 0.12);
}

html[data-theme="dark"] .shop-price-slider {
    height: 3.45rem;
}

html[data-theme="dark"] .shop-price-track,
html[data-theme="dark"] .shop-price-track-fill,
html[data-theme="dark"] .shop-price-range {
    top: calc(50% + 0.38rem);
}

html[data-theme="dark"] .shop-price-track {
    background: rgba(171, 171, 171, 0.42);
    height: 5px;
    box-shadow: 0 0 0 1px rgba(171, 171, 171, 0.14);
}

html[data-theme="dark"] .shop-price-track-fill {
    background: linear-gradient(90deg, #afafaf 0%, #d0d0d0 100%);
    height: 5px;
    z-index: 1;
}

html[data-theme="dark"] .shop-price-range {
    z-index: 2;
}

html[data-theme="dark"] .shop-price-range::-webkit-slider-runnable-track {
    background: rgba(171, 171, 171, 0.42);
    height: 5px;
}

html[data-theme="dark"] .shop-price-range::-moz-range-track {
    background: rgba(171, 171, 171, 0.42);
    height: 5px;
}

html[data-theme="dark"] .shop-price-range::-webkit-slider-thumb {
    border-color: #afafaf;
    background: #0f0f0f;
    box-shadow: 0 0 0 2px #0f0f0f;
}

html[data-theme="dark"] .shop-price-range::-moz-range-thumb {
    border-color: #afafaf;
    background: #0f0f0f;
    box-shadow: 0 0 0 2px #0f0f0f;
}

html[data-theme="dark"] .shop-filter-option,
html[data-theme="dark"] .shop-filter-check {
    color: var(--muted);
}

html[data-theme="dark"] .shop-filter-option:hover,
html[data-theme="dark"] .shop-filter-check:hover {
    color: var(--ink);
}

html[data-theme="dark"] .shop-filter-mobile-head strong,
html[data-theme="dark"] .shop-found,
html[data-theme="dark"] .shop-sort-form select,
html[data-theme="dark"] .wishlist-price-cell,
html[data-theme="dark"] .cart-item-main h4 {
    color: var(--ink);
}

html[data-theme="dark"] .shop-found {
    background: #161616;
    border-color: #2e2e2e;
    color: #b5b5b5;
}

html[data-theme="dark"] .shop-found strong {
    color: #d0d0d0;
}

html[data-theme="dark"] .shop-found > span {
    color: var(--ink);
}

html[data-theme="dark"] .shop-view-toggle {
    background: #161616;
    border-color: #2e2e2e;
}

html[data-theme="dark"] .shop-view-btn {
    background: transparent;
    color: #b2b2b2;
}

html[data-theme="dark"] .shop-view-btn.is-active {
    background: rgba(171, 171, 171, 0.16);
    color: #d0d0d0;
}

html[data-theme="dark"] .shop-view-btn:hover {
    background: #1b1b1b;
    color: var(--ink);
}

html[data-theme="dark"] .shop-sort-form {
    background: #161616;
    border-color: #2e2e2e;
}

html[data-theme="dark"] .shop-sort-form label {
    color: #b5b5b5;
}

html[data-theme="dark"] .shop-sort-form select {
    background: #0f0f0f;
    border: 1px solid #2e2e2e;
    padding-inline: 0.75rem 1rem;
}

html[data-theme="dark"] .wishlist-empty-panel p,
html[data-theme="dark"] .wishlist-stock,
html[data-theme="dark"] .wishlist-stock.is-in-stock,
html[data-theme="dark"] .wishlist-stock.is-out-stock,
html[data-theme="dark"] .shop-product-meta,
html[data-theme="dark"] .shop-filter-hint,
html[data-theme="dark"] .shop-product-actions,
html[data-theme="dark"] .deal-price-inline,
html[data-theme="dark"] .wishlist-price-old,
html[data-theme="dark"] .summary-price-stack .price-old {
    color: var(--muted);
}

html[data-theme="dark"] .deal-promo-badge,
html[data-theme="dark"] .shop-list-promo-chip,
html[data-theme="dark"] .wishlist-promo-chip {
    background: rgba(171, 171, 171, 0.22);
    color: #dddddd;
}

html[data-theme="dark"] .shop-sold-badge {
    background: rgba(8, 8, 8, 0.84);
    border-color: rgba(255, 255, 255, 0.26);
    color: #f5f5f5;
}

html[data-theme="dark"] .deal-price-inline .price-old {
    color: #c2c2c2;
}

html[data-theme="dark"] .shop-deal-card,
html[data-theme="dark"] .shop-products-grid.is-list .shop-deal-card,
html[data-theme="dark"] .shop-product-card {
    border-bottom-color: #262626;
}

html[data-theme="dark"] .shop-deal-card .deal-image-wrap,
html[data-theme="dark"] .shop-product-image {
    border-color: #262626;
    background: #0f0f0f;
}

html[data-theme="dark"] .shop-list-content h3,
html[data-theme="dark"] .shop-product-card h3 {
    color: var(--ink);
}

html[data-theme="dark"] .shop-list-price,
html[data-theme="dark"] .deal-price-inline span:not(.price-old),
html[data-theme="dark"] .shop-product-price span {
    color: #d0d0d0;
}

html[data-theme="dark"] .deal-overlay .deal-price-inline span:not(.price-old),
html[data-theme="dark"] .deal-overlay .deal-price-inline .price-current {
    color: #f5f5f5;
}

html[data-theme="dark"] .shop-list-price .price-old {
    color: #aeaeae;
}

html[data-theme="dark"] .wishlist-price-current,
html[data-theme="dark"] .summary-price-stack .price-current {
    color: var(--ink);
}

html[data-theme="dark"] .shop-review-badge-list {
    color: var(--ink);
}

html[data-theme="dark"] .shop-review-icon {
    color: #d0d0d0;
}

html[data-theme="dark"] .shop-list-desc,
html[data-theme="dark"] .shop-product-category,
html[data-theme="dark"] .shop-product-price {
    color: var(--muted);
}

html[data-theme="dark"] .shop-list-actions .deal-action-btn,
html[data-theme="dark"] .deal-action-btn,
html[data-theme="dark"] .shop-action-btn,
html[data-theme="dark"] .shop-page-link {
    background: rgba(171, 171, 171, 0.16);
    border-color: rgba(171, 171, 171, 0.46);
    color: #d0d0d0;
}

html[data-theme="dark"] .shop-list-actions .deal-action-btn:hover,
html[data-theme="dark"] .deal-action-btn:hover,
html[data-theme="dark"] .shop-action-btn:hover,
html[data-theme="dark"] .shop-page-link:hover {
    background: #afafaf;
    border-color: #afafaf;
    color: #050505;
}

html[data-theme="dark"] .shop-page-link.is-active {
    background: #afafaf;
    border-color: #afafaf;
    color: #050505;
}

html[data-theme="dark"] .admin-pagination-summary {
    color: #b7b7b7;
}

html[data-theme="dark"] .admin-pagination-link,
html[data-theme="dark"] .admin-pagination-ellipsis {
    background: rgba(171, 171, 171, 0.16);
    border-color: rgba(171, 171, 171, 0.46);
    color: #d0d0d0;
}

html[data-theme="dark"] .admin-pagination-link:hover {
    background: #afafaf;
    border-color: #afafaf;
    color: #050505;
}

html[data-theme="dark"] .admin-pagination-link.is-active {
    background: #d7d7d7;
    border-color: #d7d7d7;
    color: #0b0b0b;
}

html[data-theme="dark"] .site-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    border-top-color: #1f1f1f;
}

html[data-theme="dark"] .site-footer-bottom {
    border-top-color: #222222;
    background: rgba(7, 7, 7, 0.42);
}

html[data-theme="dark"] .footer-links a:hover,
html[data-theme="dark"] .wishlist-product-name:hover {
    color: #ffffff;
}

html[data-theme="dark"] .social-link {
    border-color: #454545;
    background: rgba(255, 255, 255, 0.04);
    color: #e7e7e7;
}

html[data-theme="dark"] .social-link:hover {
    border-color: #afafaf;
    background: rgba(171, 171, 171, 0.16);
}

html[data-theme="dark"] .footer-address p {
    color: #c7c7c7;
}

@media (max-width: 640px) {
    .admin-pagination {
        align-items: flex-start;
    }

    .admin-pagination-summary {
        width: 100%;
    }

    .admin-pagination-list {
        gap: 0.28rem;
        flex-wrap: wrap;
    }

    .admin-pagination-link,
    .admin-pagination-ellipsis {
        min-width: 1.78rem;
        height: 1.78rem;
        padding-inline: 0.5rem;
    }

    .admin-auth-actions {
        width: 100%;
        justify-content: space-between;
    }

    .admin-auth-actions .theme-toggle,
    .admin-auth-actions .btn {
        flex: 1 1 0;
        width: auto;
        justify-content: center;
    }

    .mobile-nav-theme-toggle {
        min-height: 2.7rem;
    }
}

@media (min-width: 641px) {
    .site-header {
        background: #ffffff;
        border-bottom: none;
        padding: 0;
    }

    .site-header.is-sticky {
        background: #ffffff;
        box-shadow: none;
        backdrop-filter: none;
    }

    .site-header > .site-header-inner {
        width: calc(100% - 2.4rem);
        margin-inline: auto;
        padding: 0.62rem 0.92rem 0.58rem;
        border: none;
        border-radius: 0;
        background: #ffffff;
        box-shadow: none;
    }

    .site-header-inner {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        grid-template-areas:
            "menu brand right"
            "nav nav nav";
        gap: 0.54rem 0.84rem;
        min-height: 0;
        align-items: center;
    }

    .brand {
        font-size: 1.2rem;
        letter-spacing: 0.03em;
        font-weight: 700;
        text-transform: none;
        gap: 0.34rem;
    }

    .brand-logo-image {
        width: 1.55rem;
        height: 1.55rem;
        border-radius: 6px;
    }

    .brand-dot {
        display: none;
    }

    .mobile-nav-toggle {
        width: 2.2rem;
        height: 2.2rem;
    }

    .header-top-right {
        gap: 0.72rem;
    }

    .header-top-links {
        gap: 1rem;
    }

    .header-top-links a {
        font-size: 0.9rem;
        font-weight: 600;
        color: #2f2f2f;
    }

    .header-actions {
        gap: 0.32rem;
    }

    .header-actions a,
    .header-actions button {
        width: 2.06rem;
        height: 2.06rem;
    }

    .header-actions .header-icon,
    .mobile-nav-toggle .header-icon {
        width: 1.08rem;
        height: 1.08rem;
        stroke-width: 2.15;
    }

    .main-nav {
        width: 100%;
        gap: 0.42rem;
        padding-top: 0.44rem;
        border-top: 1px solid #ececec;
    }

    .main-nav a,
    .main-nav button,
    .main-nav .header-search-inline-form {
        min-height: 2rem;
        padding: 0 0.86rem;
        font-size: 0.86rem;
        font-weight: 600;
    }

    .header-chip-category {
        min-width: 132px;
    }

    .header-search-pill {
        flex: 1 1 420px;
        min-width: 360px;
        max-width: none;
        margin-inline: 0.14rem;
    }
}

@media (min-width: 641px) and (max-width: 960px) {
    .site-header > .site-header-inner {
        width: calc(100% - 1.4rem);
        padding: 0.54rem 0.68rem 0.5rem;
    }

    .brand {
        font-size: 1.04rem;
    }

    .header-top-links a {
        font-size: 0.82rem;
    }

    .header-actions a,
    .header-actions button {
        width: 1.88rem;
        height: 1.88rem;
    }

    .main-nav {
        gap: 0.34rem;
        padding-top: 0.38rem;
    }

    .main-nav a,
    .main-nav button,
    .main-nav .header-search-inline-form {
        min-height: 1.84rem;
        padding: 0 0.7rem;
        font-size: 0.78rem;
    }

    .header-chip-category {
        min-width: 112px;
    }

    .header-search-pill {
        flex-basis: 240px;
        min-width: 220px;
    }

    .main-nav.no-header-brand-options .header-search-pill,
    .main-nav.no-header-brand-options .header-search-inline-form {
        flex: 1 1 300px;
        min-width: 210px;
    }
}

@media (min-width: 641px) {
    .site-header > .site-header-inner {
        transition: padding 0.2s ease, gap 0.2s ease;
    }

    .site-header .main-nav {
        transition:
            max-height 0.2s ease,
            opacity 0.2s ease,
            padding-top 0.2s ease,
            border-top-color 0.2s ease;
    }

    .site-header.is-sticky {
        border-bottom: 1px solid #e7e7e7;
        box-shadow: 0 8px 18px rgba(20, 20, 20, 0.08);
    }

    .site-header.is-sticky > .site-header-inner {
        padding-top: 0.42rem;
        padding-bottom: 0.4rem;
        gap: 0.34rem 0.62rem;
    }

    .site-header.is-sticky .site-header-inner {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        grid-template-areas: "menu brand right";
        align-items: center;
    }

    .site-header.is-sticky .main-nav {
        display: none;
    }
}

@media (min-width: 641px) and (max-width: 960px) {
    .site-header.is-sticky > .site-header-inner {
        padding-top: 0.36rem;
        padding-bottom: 0.34rem;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 0;
        background: #ffffff;
        border-bottom: 1px solid #e3e3e3;
    }

    .site-header > .site-header-inner {
        width: 100%;
        max-width: none;
        margin-inline: 0;
        padding: 0.5rem 0.7rem;
        border: none;
        border-radius: 0;
        background: #ffffff;
        box-shadow: none;
    }

    .site-header-inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas: "menu brand right";
        align-items: center;
        gap: 0.55rem;
        min-height: 56px;
    }

    .mobile-nav-toggle {
        grid-area: menu;
        justify-self: start;
        margin-left: 0;
        display: inline-flex;
    }

    .brand {
        grid-area: brand;
        justify-self: center;
        max-width: 100%;
        font-size: 1.06rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-top-right {
        grid-area: right;
        justify-self: end;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        min-width: auto;
    }

    .header-actions {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }

    .header-actions .header-theme-toggle,
    .header-actions .header-account-menu,
    .header-actions [data-account-auth-open] {
        display: none !important;
    }

    .header-actions a,
    .header-actions button {
        width: 1.96rem;
        height: 1.96rem;
    }

    .main-nav {
        display: none;
    }

    .shop-toolbar {
        padding: 0.12rem 0;
    }

    .shop-toolbar-meta {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 0.34rem;
        flex-wrap: nowrap;
    }

    .shop-found {
        width: auto;
        min-width: 0;
        margin: 0;
        padding: 0.48rem 0.72rem;
        font-size: 0.74rem;
        line-height: 1.15;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .shop-view-toggle {
        width: auto;
        padding: 0.1rem;
    }

    .shop-view-btn {
        width: 1.72rem;
        height: 1.72rem;
    }

    .shop-sort-form {
        width: auto;
        min-width: 0;
        max-width: 40vw;
        gap: 0;
        padding: 0.15rem 0.46rem;
        justify-content: flex-end;
    }

    .shop-sort-form label {
        display: none;
    }

    .shop-sort-form select {
        width: auto;
        min-width: 0;
        max-width: 100%;
        min-height: 1.72rem;
        padding: 0 0.85rem 0 0.18rem;
        font-size: 0.78rem;
    }

    .showcase-nav {
        top: auto;
        bottom: 0.72rem;
        transform: none;
    }

    .showcase-nav.prev {
        left: 0.7rem;
    }

    .showcase-nav.next {
        right: 0.7rem;
    }
}



body.is-promo-event-modal-open {
    overflow: hidden;
    touch-action: none;
}

.promo-event-modal {
    position: fixed;
    inset: 0;
    z-index: 1250;
    display: grid;
    place-items: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.promo-event-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.promo-event-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: linear-gradient(165deg, rgba(17, 18, 21, 0.82) 0%, rgba(28, 30, 36, 0.76) 100%);
    backdrop-filter: blur(4px);
}

.promo-event-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    min-height: min(560px, calc(100vh - 2.4rem));
    max-height: calc(100vh - 2rem);
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    background: #f8f9fb;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transform: translateY(14px) scale(0.985);
    transition: transform 0.22s ease;
}

.promo-event-modal.is-open .promo-event-modal-dialog {
    transform: translateY(0) scale(1);
}

.promo-event-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 17, 21, 0.55);
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.promo-event-modal-close:hover {
    background: rgba(16, 17, 21, 0.78);
}

.promo-event-media {
    position: relative;
    background: #e8eaef;
    min-height: 100%;
}

.promo-event-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 10, 16, 0.12) 0%, rgba(8, 10, 16, 0.5) 100%);
}

.promo-event-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-event-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(14, 15, 20, 0.88);
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-event-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.65rem;
    padding: clamp(1.25rem, 2vw, 1.8rem);
    background:
        radial-gradient(circle at 88% -6%, rgba(26, 30, 42, 0.08), transparent 56%),
        linear-gradient(180deg, #fbfcfe 0%, #f1f3f8 100%);
}

.promo-event-content h3 {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.promo-event-subheadline {
    margin: 0;
    font-size: 1rem;
    color: #212530;
    font-weight: 600;
}

.promo-event-description {
    margin: 0;
    color: #535867;
    line-height: 1.5;
    font-size: 0.95rem;
}

.promo-event-form {
    margin-top: 0.25rem;
    display: grid;
    gap: 0.55rem;
}

.promo-event-form label {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    color: #434956;
}

.promo-event-form input {
    width: 100%;
    min-height: 2.8rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(34, 37, 45, 0.18);
    background: rgba(255, 255, 255, 0.9);
    padding: 0 0.95rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.promo-event-form input:focus {
    outline: 2px solid rgba(10, 12, 18, 0.18);
    outline-offset: 1px;
}

.promo-event-form .btn {
    min-height: 2.7rem;
    border-radius: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.promo-event-form .btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.promo-event-inline-note {
    margin: 0;
    font-size: 0.78rem;
    color: #676d7c;
}

.promo-event-feedback {
    margin: 0;
    padding: 0.52rem 0.72rem;
    border-radius: 0.62rem;
    font-size: 0.83rem;
    font-weight: 600;
}

.promo-event-feedback.is-error {
    background: rgba(200, 42, 42, 0.12);
    color: #8e1f1f;
}

.promo-event-feedback.is-success {
    background: rgba(30, 130, 80, 0.14);
    color: #19623f;
}

.promo-event-success {
    margin-top: 0.35rem;
    padding: 0.84rem;
    border-radius: 0.82rem;
    border: 1px solid rgba(16, 20, 28, 0.12);
    background: #ffffff;
    display: grid;
    gap: 0.55rem;
}

.promo-event-success-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #161a24;
}

.promo-event-voucher-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.promo-event-voucher-row code {
    display: inline-flex;
    align-items: center;
    min-height: 2.3rem;
    padding: 0.25rem 0.7rem;
    border-radius: 0.62rem;
    border: 1px dashed rgba(17, 20, 28, 0.3);
    background: rgba(243, 245, 250, 0.95);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.promo-event-success-message {
    margin: 0;
    font-size: 0.84rem;
    color: #505667;
}

.promo-event-success .btn {
    width: fit-content;
    min-height: 2.25rem;
}

@media (max-width: 860px) {
    .promo-event-modal-dialog {
        width: min(680px, 100%);
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .promo-event-media {
        min-height: 220px;
        max-height: 260px;
    }

    .promo-event-content {
        padding: 1.1rem;
    }
}

@media (max-width: 560px) {
    .promo-event-modal {
        padding: 0.5rem;
    }

    .promo-event-modal-dialog {
        min-height: 0;
        max-height: calc(100vh - 1rem);
        border-radius: 0.95rem;
    }

    .promo-event-media {
        min-height: 180px;
        max-height: 210px;
    }

    .promo-event-modal-close {
        top: 0.58rem;
        right: 0.58rem;
    }

    .promo-event-content h3 {
        font-size: 1.38rem;
    }
}

html[data-theme="dark"] .promo-event-modal-dialog {
    background: #161a24;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .promo-event-content {
    background:
        radial-gradient(circle at 88% -6%, rgba(111, 126, 168, 0.16), transparent 56%),
        linear-gradient(180deg, #1a202d 0%, #171b25 100%);
}

html[data-theme="dark"] .promo-event-content h3,
html[data-theme="dark"] .promo-event-subheadline,
html[data-theme="dark"] .promo-event-success-title {
    color: #f4f6fb;
}

html[data-theme="dark"] .promo-event-description,
html[data-theme="dark"] .promo-event-inline-note,
html[data-theme="dark"] .promo-event-success-message,
html[data-theme="dark"] .promo-event-form label {
    color: #b5bed2;
}

html[data-theme="dark"] .promo-event-form input {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(13, 16, 24, 0.6);
    color: #f5f6fa;
}

html[data-theme="dark"] .promo-event-success {
    background: rgba(17, 21, 31, 0.85);
    border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .promo-event-voucher-row code {
    background: rgba(13, 16, 24, 0.78);
    border-color: rgba(255, 255, 255, 0.3);
    color: #f7f8fc;
}

html[data-theme="dark"] .contact-page-title h2 i,
html[data-theme="dark"] .contact-card-head h3 i,
html[data-theme="dark"] .contact-map-head h3 i {
    color: #a4a4a4;
}

html[data-theme="dark"] .contact-highlight-item {
    background: #141414;
    border-color: #2f2f2f;
}

html[data-theme="dark"] .contact-highlight-icon {
    background: #0e0e0e;
    border-color: #2f2f2f;
    color: #d4d4d4;
}

html[data-theme="dark"] .contact-input-wrap i {
    color: #9e9e9e;
}

html[data-theme="dark"] .contact-required {
    color: #b8b8b8;
}

html[data-theme="dark"] .contact-map-frame {
    background: #101010;
    border-color: #343434;
}

.vip-premium-hero {
    margin-top: 1rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(181, 145, 66, 0.24);
    background:
        radial-gradient(circle at 88% 14%, rgba(216, 176, 88, 0.18), transparent 48%),
        radial-gradient(circle at 12% 78%, rgba(133, 102, 39, 0.16), transparent 54%),
        linear-gradient(135deg, #f4ede0 0%, #fff9ef 52%, #f1e4ca 100%);
    box-shadow: 0 18px 40px rgba(16, 18, 24, 0.12);
    overflow: hidden;
}

.vip-premium-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(260px, 1fr);
    gap: 1rem;
    padding: 1.4rem;
}

.vip-premium-copy h1 {
    margin: 0.3rem 0 0.55rem;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.08;
    color: #1a1409;
}

.vip-premium-copy p {
    margin: 0;
    max-width: 760px;
    color: #4c3d21;
    line-height: 1.68;
}

.vip-premium-kicker {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(130, 103, 47, 0.28);
    background: rgba(255, 255, 255, 0.52);
    color: #7f5a1a;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vip-premium-kicker::before {
    content: "*";
    font-size: 0.68rem;
}

.vip-premium-actions {
    margin-top: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.vip-premium-meta {
    align-self: flex-start;
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(135, 107, 48, 0.24);
    background: rgba(255, 255, 255, 0.62);
}

.vip-premium-meta span {
    color: #5f4b22;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
}

.vip-premium-meta strong {
    color: #2b1f0b;
    font-weight: 800;
}

.vip-shop-page .shop-sidebar {
    border-color: rgba(180, 145, 66, 0.28);
    box-shadow: 0 18px 34px rgba(19, 20, 25, 0.1);
}

.vip-shop-page .shop-toolbar {
    border-color: rgba(180, 145, 66, 0.2);
    background: linear-gradient(135deg, rgba(255, 248, 233, 0.9) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.vip-shop-page .shop-found strong {
    color: #a56f0b;
}

.vip-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.6rem;
    padding: 0 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(160, 126, 52, 0.32);
    background: linear-gradient(135deg, #f8ddb0 0%, #f2be67 100%);
    color: #513706;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
}

.vip-shop-page .deal-promo-badge {
    border-color: rgba(134, 98, 38, 0.34);
    background: rgba(255, 253, 247, 0.92);
    color: #5f4313;
}

html[data-theme="dark"] .vip-premium-hero {
    border-color: rgba(208, 170, 92, 0.24);
    background:
        radial-gradient(circle at 88% 14%, rgba(169, 126, 44, 0.28), transparent 50%),
        radial-gradient(circle at 10% 76%, rgba(131, 88, 27, 0.2), transparent 58%),
        linear-gradient(135deg, #18140f 0%, #211b13 52%, #1a1712 100%);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] .vip-premium-copy h1 {
    color: #fbead0;
}

html[data-theme="dark"] .vip-premium-copy p {
    color: #ccb17c;
}

html[data-theme="dark"] .vip-premium-kicker {
    border-color: rgba(215, 177, 97, 0.34);
    background: rgba(36, 29, 18, 0.74);
    color: #f5d194;
}

html[data-theme="dark"] .vip-premium-meta {
    border-color: rgba(215, 177, 97, 0.28);
    background: rgba(31, 24, 15, 0.72);
}

html[data-theme="dark"] .vip-premium-meta span {
    color: #dfc491;
}

html[data-theme="dark"] .vip-premium-meta strong {
    color: #fff3dc;
}

html[data-theme="dark"] .vip-shop-page .shop-sidebar {
    border-color: rgba(210, 173, 95, 0.28);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .vip-shop-page .shop-toolbar {
    border-color: rgba(211, 176, 96, 0.2);
    background: linear-gradient(135deg, rgba(46, 35, 21, 0.72) 0%, rgba(31, 27, 22, 0.84) 100%);
}

html[data-theme="dark"] .vip-shop-page .shop-found strong {
    color: #f3cb80;
}

html[data-theme="dark"] .vip-card-badge {
    border-color: rgba(215, 177, 97, 0.34);
    background: linear-gradient(135deg, #5b4115 0%, #94661f 100%);
    color: #ffefce;
}

html[data-theme="dark"] .vip-shop-page .deal-promo-badge {
    border-color: rgba(215, 177, 97, 0.3);
    background: rgba(41, 32, 19, 0.86);
    color: #f4d59b;
}

/* Horizontal layout lock: phone only (desktop/tablet keep original layout) */
@media (max-width: 640px) {
    html,
    body {
        overflow-x: hidden !important;
    }

    body {
        overscroll-behavior-x: none;
    }

    main.page-wrap,
    .page-wrap,
    .site-header,
    .site-header-inner,
    .main-nav {
        max-width: 100%;
    }

    .showcase-bleed,
    .content-two,
    .newsletter-section,
    .final-cta-section,
    .site-footer,
    .shop-hero,
    .admin-site-footer-auth {
        width: 100%;
        margin-left: 0;
    }

    .main-nav {
        flex-wrap: wrap;
        overflow-x: hidden;
        overflow-x: clip;
    }

    .main-nav a,
    .main-nav button,
    .main-nav .header-search-inline-form {
        min-width: 0;
        max-width: 100%;
    }

    .header-chip-category {
        min-width: 0;
    }

    .main-nav .header-search-inline-form,
    .header-search-pill {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
    }

    .main-nav {
        gap: 0.35rem;
    }

    .main-nav a,
    .main-nav button,
    .main-nav .header-search-inline-form {
        min-height: 1.8rem;
        padding-inline: 0.72rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .shop-card-badges {
        top: 0.56rem;
        left: 0.56rem;
        right: 0.56rem;
        gap: 0.22rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .deal-promo-badge {
        min-height: 1.32rem;
        padding: 0 0.46rem;
        font-size: 0.62rem;
        letter-spacing: 0.02em;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .shop-sold-badge {
        min-height: 1.32rem;
        padding: 0 0.42rem;
        font-size: 0.62rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .deal-overlay {
        padding: 0.62rem;
        gap: 0.14rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .shop-review-badge {
        right: 0.56rem;
        bottom: 0.56rem;
        padding: 0.16rem 0.3rem;
        font-size: 0.58rem;
        gap: 0.1rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .shop-review-icon {
        font-size: 0.54rem;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .deal-info-inline h3 {
        font-size: 0.7rem;
        line-height: 1.12;
    }

    .shop-products-grid:not(.is-list) .shop-deal-card .deal-price-inline {
        margin-top: 0.08rem;
        font-size: 0.7rem;
        padding-right: 2rem;
    }

    .shop-card-badges .deal-promo-badge.shop-badge-tight,
    .shop-card-badges .shop-sold-badge.shop-badge-tight {
        padding-left: 0.28rem;
        padding-right: 0.28rem;
    }

    .contact-card,
    .contact-map-card {
        padding: 0.92rem;
    }

    .contact-card-head h3 {
        font-size: 1.35rem;
    }

    .contact-action-row .btn {
        width: 100%;
    }

    .contact-map-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-map-head .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-map-frame iframe {
        height: 300px;
    }

    .vip-premium-hero-inner {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .vip-premium-copy h1 {
        font-size: clamp(1.45rem, 7vw, 1.95rem);
    }

    .vip-premium-copy p {
        font-size: 0.94rem;
    }

    .vip-premium-meta {
        grid-template-columns: 1fr;
        padding: 0.88rem;
    }

    .vip-premium-meta span {
        font-size: 0.82rem;
    }
}

/* Contextual differentiation between regular and VIP shop/header */
.site-header.site-header-shop.site-header-regular .site-header-inner {
    border-color: #d9dde2;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.site-header.site-header-shop.site-header-regular .main-nav {
    border-top-color: #e5e8ed;
}

.site-header.site-header-vip {
    background: #f7efdf;
}

.site-header.site-header-vip .site-header-inner {
    border-color: rgba(172, 136, 60, 0.34);
    background:
        radial-gradient(circle at 88% -20%, rgba(224, 183, 92, 0.2), transparent 52%),
        linear-gradient(180deg, #fff9ec 0%, #f7ebd4 100%);
    box-shadow: 0 10px 30px rgba(72, 50, 18, 0.12);
}

.site-header.site-header-vip .main-nav {
    border-top-color: rgba(177, 139, 63, 0.26);
}

.site-header.site-header-vip .main-nav a,
.site-header.site-header-vip .main-nav button,
.site-header.site-header-vip .main-nav .header-search-inline-form {
    border-color: rgba(171, 135, 59, 0.3);
    background: rgba(255, 250, 240, 0.92);
    color: #4e390f;
}

.site-header.site-header-vip .main-nav a:hover,
.site-header.site-header-vip .main-nav button:hover {
    border-color: rgba(156, 119, 47, 0.38);
    background: rgba(252, 241, 216, 0.95);
    color: #2f220b;
}

.site-header.site-header-vip .header-actions a,
.site-header.site-header-vip .header-actions button {
    border-color: rgba(171, 135, 59, 0.3);
    background: rgba(255, 250, 240, 0.92);
    color: #4e390f;
}

.site-header.site-header-vip .header-actions a:hover,
.site-header.site-header-vip .header-actions button:hover {
    border-color: rgba(156, 119, 47, 0.38);
    background: rgba(252, 241, 216, 0.95);
    color: #2f220b;
}

html[data-theme="dark"] .site-header.site-header-shop.site-header-regular .site-header-inner {
    border-color: #2e3338;
    background: linear-gradient(180deg, #121316 0%, #17191d 100%);
}

html[data-theme="dark"] .site-header.site-header-shop.site-header-regular .main-nav {
    border-top-color: #2e3338;
}

html[data-theme="dark"] .site-header.site-header-vip {
    background: #100d09;
}

html[data-theme="dark"] .site-header.site-header-vip .site-header-inner {
    border-color: rgba(175, 139, 70, 0.38);
    background:
        radial-gradient(circle at 88% -20%, rgba(154, 114, 44, 0.28), transparent 52%),
        linear-gradient(180deg, #1a150f 0%, #14110d 100%);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] .site-header.site-header-vip .main-nav {
    border-top-color: rgba(174, 138, 70, 0.3);
}

html[data-theme="dark"] .site-header.site-header-vip .main-nav a,
html[data-theme="dark"] .site-header.site-header-vip .main-nav button,
html[data-theme="dark"] .site-header.site-header-vip .main-nav .header-search-inline-form {
    border-color: rgba(176, 140, 73, 0.3);
    background: rgba(34, 27, 18, 0.92);
    color: #f0d8a9;
}

html[data-theme="dark"] .site-header.site-header-vip .main-nav a:hover,
html[data-theme="dark"] .site-header.site-header-vip .main-nav button:hover {
    border-color: rgba(201, 164, 96, 0.42);
    background: rgba(45, 34, 21, 0.96);
    color: #ffe8ba;
}

html[data-theme="dark"] .site-header.site-header-vip .header-actions a,
html[data-theme="dark"] .site-header.site-header-vip .header-actions button {
    border-color: rgba(176, 140, 73, 0.32);
    background: rgba(34, 27, 18, 0.92);
    color: #f0d8a9;
}

html[data-theme="dark"] .site-header.site-header-vip .header-actions a:hover,
html[data-theme="dark"] .site-header.site-header-vip .header-actions button:hover {
    border-color: rgba(201, 164, 96, 0.44);
    background: rgba(45, 34, 21, 0.96);
    color: #ffe8ba;
}
