/* ==========================================================================
   DSR4U - PREMIUM GLOBAL THEME
   ========================================================================== */


/* ==========================================================================
   01. DESIGN TOKENS
   ========================================================================== */

   :root {
    /* Main backgrounds */
    --bg-main: #050505;
    --bg-dark: #000000;
    --bg-card: #0c0c0c;
    --bg-card-hover: #111111;
    --bg-surface: #141414;
    --bg-surface-2: #191919;

    /* Borders */
    --border: #242424;
    --border-light: #343434;
    --border-hover: rgba(255, 215, 0, 0.45);

    /* Text */
    --text-main: #f5f5f5;
    --text-soft: #dddddd;
    --text-muted: #a4a4a4;
    --text-dark: #777777;

    /* Gold */
    --gold: #d4af37;
    --gold2: #ffd700;
    --gold-light: #ffe98a;
    --gold-hover: #e6c200;
    --gold-dark: #a98218;

    /* Status */
    --success: #25d366;
    --success-bg: rgba(37, 211, 102, 0.10);

    --warning: #ffc107;
    --warning-bg: rgba(255, 193, 7, 0.10);

    --danger: #ff5252;
    --danger-bg: rgba(255, 82, 82, 0.10);

    --info: #4dabf7;
    --info-bg: rgba(77, 171, 247, 0.10);

    /* Typography */
    --font-main:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    /* Layout */
    --container-width: 1200px;

    /* Radius */
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 22px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-sm:
        0 4px 16px rgba(0, 0, 0, 0.25);

    --shadow:
        0 12px 35px rgba(0, 0, 0, 0.35);

    --shadow-lg:
        0 24px 70px rgba(0, 0, 0, 0.50);

    --shadow-gold:
        0 12px 35px rgba(212, 175, 55, 0.12);

    /* Motion */
    --transition:
        all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    --transition-fast:
        all 0.15s ease;

    /* Focus */
    --focus-ring:
        0 0 0 3px rgba(255, 215, 0, 0.14);
}


/* ==========================================================================
   02. RESET
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    background: var(--bg-main);
}

body {
    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(255, 215, 0, 0.035),
            transparent 35%
        ),
        var(--bg-main);

    color: var(--text-main);

    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    min-height: 100vh;

    display: flex;
    flex-direction: column;

    overflow-x: hidden;
}

main {
    flex: 1;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}


/* ==========================================================================
   03. TEXT SELECTION
   ========================================================================== */

::selection {
    background: var(--gold2);
    color: #000;
}


/* ==========================================================================
   04. SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #303030;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}


/* ==========================================================================
   05. GLOBAL CONTAINER
   ========================================================================== */

.container {
    width: min(var(--container-width), 92%);
    margin: 0 auto;
}


/* ==========================================================================
   06. TOP BAR
   ========================================================================== */

.topbar {
    background:
        linear-gradient(
            90deg,
            #000000,
            #0b0b0b,
            #000000
        );

    border-bottom: 1px solid var(--border);

    color: var(--text-muted);

    font-size: 12px;
    padding: 7px 0;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.topbar span {
    white-space: nowrap;
}


/* ==========================================================================
   07. HEADER / NAVIGATION
   ========================================================================== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(5, 5, 5, 0.88);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.18);
}

.nav {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 22px;
}


/* ==========================================================================
   08. LOGO
   ========================================================================== */

.logo {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--text-main);

    font-size: 22px;
    font-weight: 850;

    letter-spacing: -0.7px;

    white-space: nowrap;
}

.logo img {
    width: auto;
    max-height: 34px;
    object-fit: contain;
}

.logo span {
    line-height: 1;
}

.logo span b {
    color: var(--gold2);
}


/* ==========================================================================
   09. NAVIGATION LINKS
   ========================================================================== */

nav {
    display: flex;
    align-items: center;

    gap: 26px;
}

nav a {
    position: relative;

    color: var(--text-muted);

    font-size: 14px;
    font-weight: 600;

    padding: 8px 0;
}

nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--gold2);

    border-radius: 999px;

    transition: var(--transition);
}

nav a:hover {
    color: var(--text-main);
}

nav a:hover::after {
    width: 100%;
}


/* ==========================================================================
   10. NAV ACTIONS
   ========================================================================== */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-link {
    position: relative;
}


/* ==========================================================================
   11. BUTTON SYSTEM
   ========================================================================== */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 10px 18px;

    border-radius: var(--radius-sm);

    border: 1px solid transparent;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.2;

    text-align: center;

    cursor: pointer;

    user-select: none;

    transition: var(--transition);
}

.btn:active {
    transform: translateY(1px);
}

.btn:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}


/* Gold button */

.btn-gold {
    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold2) 45%,
            var(--gold)
        );

    color: #000;

    border-color: rgba(255, 215, 0, 0.35);

    box-shadow:
        0 8px 25px rgba(255, 215, 0, 0.10);
}

.btn-gold:hover {
    background:
        linear-gradient(
            135deg,
            var(--gold2),
            var(--gold-hover)
        );

    color: #000;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(255, 215, 0, 0.18);
}


/* Dark button */

.btn-dark {
    background:
        linear-gradient(
            180deg,
            var(--bg-surface-2),
            var(--bg-surface)
        );

    color: var(--text-main);

    border-color: var(--border-light);
}

.btn-dark:hover {
    color: var(--gold2);

    border-color: var(--border-hover);

    background: #1b1b1b;

    transform: translateY(-2px);
}


/* Full width */

.btn-block {
    width: 100%;
}


/* Small button */

.btn-sm {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12px;
}


/* Large button */

.btn-lg {
    min-height: 48px;
    padding: 13px 24px;
    font-size: 15px;
}


/* ==========================================================================
   12. PAGE HERO
   ========================================================================== */

.page-hero {
    position: relative;

    padding: 64px 0 32px;

    text-align: center;

    border-bottom: 1px solid var(--border);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 215, 0, 0.07),
            transparent 34%
        ),
        radial-gradient(
            circle at center,
            #151515 0%,
            var(--bg-main) 72%
        );

    overflow: hidden;
}

.page-hero::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 220px;
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold2),
            transparent
        );

    opacity: 0.8;
}

.page-hero h1 {
    position: relative;

    font-size: clamp(32px, 5vw, 52px);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -1.5px;

    margin-bottom: 14px;
}

.page-hero p {
    position: relative;

    max-width: 650px;

    margin: 0 auto;

    color: var(--text-muted);

    font-size: 15px;
}


/* ==========================================================================
   13. GOLD TEXT
   ========================================================================== */

.gold-text {
    color: var(--gold2);

    text-shadow:
        0 0 25px rgba(255, 215, 0, 0.10);
}


/* ==========================================================================
   14. GENERAL SECTIONS
   ========================================================================== */

section {
    position: relative;
}

section > .container {
    position: relative;
}

.section-head {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 10px;

    flex-wrap: wrap;
}

.section-head h2 {
    color: var(--text-main);

    font-size: clamp(23px, 3vw, 30px);

    line-height: 1.2;

    font-weight: 850;

    letter-spacing: -0.7px;
}

.section-head p {
    margin-top: 7px;

    color: var(--text-muted);

    font-size: 14px;
}


/* ==========================================================================
   15. PRODUCT GRID
   ========================================================================== */

.grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(245px, 1fr)
        );

    gap: 22px;

    padding: 35px 0 45px;
}


/* ==========================================================================
   16. GLOBAL CARD
   ========================================================================== */

.card {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #101010,
            var(--bg-card)
        );

    border: 1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    display: flex;
    flex-direction: column;

    transition: var(--transition);

    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.18);
}

.card:hover {
    border-color: rgba(255, 215, 0, 0.32);

    transform: translateY(-5px);

    box-shadow:
        var(--shadow-gold);
}


/* ==========================================================================
   17. PRODUCT IMAGE
   ========================================================================== */

.product-img {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    aspect-ratio: 1.3;

    padding: 24px;

    background:
        radial-gradient(
            circle at center,
            #171717 0%,
            #050505 70%
        );

    border-bottom: 1px solid var(--border);

    overflow: hidden;
}

.product-img::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255, 215, 0, 0.04),
            transparent 35%
        );

    pointer-events: none;
}

.product-img img {
    position: relative;
    z-index: 1;

    width: 100%;
    max-height: 150px;

    object-fit: contain;

    transition: var(--transition);
}

.card:hover .product-img img {
    transform: scale(1.04);
}


/* ==========================================================================
   18. CARD BODY
   ========================================================================== */

.card-body {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 20px;
}

.card-body h3 {
    color: var(--text-main);

    font-size: 16px;

    line-height: 1.35;

    font-weight: 750;

    margin-bottom: 8px;
}

.card-body p {
    color: var(--text-muted);
}


/* ==========================================================================
   19. PRICE
   ========================================================================== */

.price {
    color: var(--gold2) !important;

    font-size: 21px;

    line-height: 1;

    font-weight: 850;

    margin: 8px 0 18px;
}


/* ==========================================================================
   20. CARD ACTIONS
   ========================================================================== */

.card-actions {
    margin-top: auto;

    display: flex;

    gap: 8px;
}

.card-actions .btn {
    width: 100%;
}


/* ==========================================================================
   21. BADGES
   ========================================================================== */

.badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: fit-content;

    padding: 4px 9px;

    border-radius: var(--radius-pill);

    font-size: 11px;

    font-weight: 800;

    line-height: 1.2;
}

.badge-gold {
    background: rgba(255, 215, 0, 0.12);

    color: var(--gold2);

    border: 1px solid rgba(255, 215, 0, 0.20);
}

.badge-success {
    background: var(--success-bg);

    color: var(--success);

    border: 1px solid rgba(37, 211, 102, 0.20);
}

.badge-warning {
    background: var(--warning-bg);

    color: var(--warning);

    border: 1px solid rgba(255, 193, 7, 0.20);
}

.badge-danger {
    background: var(--danger-bg);

    color: var(--danger);

    border: 1px solid rgba(255, 82, 82, 0.20);
}


/* ==========================================================================
   22. REVIEWS
   ========================================================================== */

.review-list {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(285px, 1fr)
        );

    gap: 20px;

    padding: 35px 0 45px;
}

.review-card {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #111111,
            #0b0b0b
        );

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 24px;

    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(255, 215, 0, 0.28);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25);
}

.stars {
    color: var(--gold2);

    font-size: 18px;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.review-card blockquote {
    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.7;

    font-style: italic;

    margin-bottom: 18px;
}

.reviewer {
    color: var(--text-main);

    font-size: 14px;

    font-weight: 750;
}

.reviewer small {
    display: block;

    margin-top: 4px;

    color: var(--text-muted);

    font-size: 12px;

    font-weight: 450;
}


/* ==========================================================================
   23. FORM ELEMENTS
   ========================================================================== */

input,
textarea,
select {
    width: 100%;

    color: var(--text-main);

    background:
        linear-gradient(
            180deg,
            #171717,
            #111111
        );

    border: 1px solid var(--border-light);

    border-radius: var(--radius-sm);

    padding: 11px 13px;

    outline: none;

    transition: var(--transition);
}

input::placeholder,
textarea::placeholder {
    color: #686868;
}

input:hover,
textarea:hover,
select:hover {
    border-color: #454545;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold2);

    box-shadow: var(--focus-ring);
}

textarea {
    min-height: 120px;

    resize: vertical;
}

select {
    appearance: auto;
}

input[readonly] {
    cursor: not-allowed;

    opacity: 0.65;
}


/* ==========================================================================
   24. TABLES
   ========================================================================== */

table {
    width: 100%;

    border-collapse: collapse;
}

th {
    color: var(--gold2);

    background: #050505;

    font-weight: 750;
}

th,
td {
    padding: 13px 15px;

    border-bottom: 1px solid var(--border);

    text-align: left;

    font-size: 14px;
}

tbody tr {
    transition: var(--transition-fast);
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.025);
}


/* ==========================================================================
   25. COMMON PANELS
   ========================================================================== */

.card-box {
    background:
        linear-gradient(
            180deg,
            #111111,
            #0b0b0b
        );

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 24px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.18);
}

.order-card {
    background: var(--bg-surface);

    border: 1px solid var(--border);

    border-radius: var(--radius-sm);

    padding: 16px;

    margin-bottom: 14px;

    transition: var(--transition);
}

.order-card:hover {
    border-color: rgba(255, 215, 0, 0.25);
}


/* ==========================================================================
   26. FILTERS
   ========================================================================== */

.filter-bar {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-surface);

    color: var(--text-muted);

    border: 1px solid var(--border);

    padding: 7px 14px;

    border-radius: var(--radius-pill);

    font-size: 12px;

    font-weight: 650;

    cursor: pointer;

    transition: var(--transition);
}

.filter-btn:hover {
    color: var(--text-main);

    border-color: var(--border-light);
}

.filter-btn.active {
    background: var(--gold2);

    color: #000;

    border-color: var(--gold2);
}

.search-input {
    flex: 1;

    min-width: 220px;

    border-radius: var(--radius-pill);

    padding: 10px 15px;
}


/* ==========================================================================
   27. FOOTER
   ========================================================================== */

footer {
    margin-top: 70px;

    padding: 48px 0 20px;

    background:
        linear-gradient(
            180deg,
            #050505,
            #000000
        );

    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(200px, 1fr)
        );

    gap: 35px;

    margin-bottom: 35px;
}

.footer-grid > div {
    min-width: 0;
}

.footer-title {
    color: var(--gold2);

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 14px;
}

footer p {
    color: var(--text-muted);

    font-size: 13px;
}

footer a {
    display: inline-block;

    color: var(--text-muted);

    font-size: 13px;

    margin-bottom: 7px;
}

footer a:hover {
    color: var(--gold2);

    transform: translateX(2px);
}

.copyright {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-top: 20px;

    border-top: 1px solid var(--border);

    color: var(--text-muted);

    font-size: 12px;
}


/* ==========================================================================
   28. LOADING / EMPTY STATES
   ========================================================================== */

.loading,
.empty-state {
    width: 100%;

    padding: 50px 20px;

    text-align: center;

    color: var(--text-muted);
}

.empty-state h2,
.empty-state h3 {
    color: var(--text-main);

    margin-bottom: 8px;
}


/* ==========================================================================
   29. STATUS BADGES
   ========================================================================== */

.badge-pending {
    background: rgba(255, 193, 7, 0.10);

    color: var(--warning);

    border: 1px solid rgba(255, 193, 7, 0.20);
}

.badge-paid {
    background: rgba(37, 211, 102, 0.10);

    color: var(--success);

    border: 1px solid rgba(37, 211, 102, 0.20);
}


/* ==========================================================================
   30. DIVIDERS
   ========================================================================== */

hr {
    height: 1px;

    border: 0;

    background: var(--border);

    margin: 25px 0;
}


/* ==========================================================================
   31. SCROLL OFFSET FOR ANCHORS
   ========================================================================== */

[id] {
    scroll-margin-top: 95px;
}


/* ==========================================================================
   32. VISIBILITY UTILITIES
   ========================================================================== */

.hidden {
    display: none !important;
}

.text-center {
    text-align: center !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-gold {
    color: var(--gold2) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: var(--danger) !important;
}


/* ==========================================================================
   33. SPACING UTILITIES
   ========================================================================== */

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}


/* ==========================================================================
   34. ACCESSIBILITY
   ========================================================================== */

:focus-visible {
    outline: 2px solid var(--gold2);

    outline-offset: 3px;
}


/* ==========================================================================
   35. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}


/* ==========================================================================
   36. TABLET
   ========================================================================== */

@media (max-width: 900px) {

    .nav {
        min-height: 66px;
    }

    nav {
        gap: 17px;
    }

    nav a {
        font-size: 13px;
    }

    .grid {
        grid-template-columns:
            repeat(
                auto-fill,
                minmax(220px, 1fr)
            );

        gap: 18px;
    }

    .review-list {
        grid-template-columns:
            repeat(
                auto-fill,
                minmax(260px, 1fr)
            );
    }

}


/* ==========================================================================
   37. MOBILE
   ========================================================================== */

@media (max-width: 768px) {

    .container {
        width: min(94%, var(--container-width));
    }

    .topbar {
        padding: 7px 0;
    }

    .topbar .container {
        flex-direction: column;

        justify-content: center;

        gap: 2px;

        text-align: center;
    }

    .topbar span {
        white-space: normal;
    }


    /* Header */

    .nav {
        min-height: 62px;

        gap: 10px;
    }

    .logo {
        font-size: 19px;

        gap: 6px;
    }

    .logo img {
        max-height: 29px;
    }


    /*
       Navigation remains hidden on mobile for now.
       Step 2 will add the new mobile menu.
    */

    nav {
        display: none;
    }

    .nav-actions {
        margin-left: auto;
    }


    /* Buttons */

    .btn {
        min-height: 40px;

        padding: 9px 14px;

        font-size: 13px;
    }

    .btn-lg {
        min-height: 46px;

        padding: 12px 18px;
    }


    /* Page Hero */

    .page-hero {
        padding: 48px 0 28px;
    }

    .page-hero h1 {
        font-size: clamp(30px, 9vw, 42px);

        letter-spacing: -1px;
    }

    .page-hero p {
        font-size: 14px;
    }


    /* Sections */

    .section-head {
        align-items: flex-start;
    }

    .section-head h2 {
        font-size: 24px;
    }


    /* Product Grid */

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

        gap: 12px;

        padding: 25px 0 35px;
    }

    .product-img {
        padding: 15px;

        aspect-ratio: 1.15;
    }

    .product-img img {
        max-height: 105px;
    }

    .card-body {
        padding: 14px;
    }

    .card-body h3 {
        font-size: 14px;
    }

    .price {
        font-size: 18px;

        margin-bottom: 13px;
    }


    /* Reviews */

    .review-list {
        grid-template-columns: 1fr;

        gap: 14px;

        padding: 25px 0 35px;
    }

    .review-card {
        padding: 19px;
    }


    /* Panels */

    .card-box {
        padding: 18px;
    }


    /* Footer */

    footer {
        margin-top: 45px;

        padding-top: 38px;
    }

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

        gap: 25px;
    }

    .copyright {
        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }


    /* Tables */

    table {
        min-width: 650px;
    }

}


/* ==========================================================================
   38. SMALL MOBILE
   ========================================================================== */

@media (max-width: 480px) {

    .container {
        width: 94%;
    }

    .logo span {
        font-size: 18px;
    }

    .nav-actions .btn {
        padding: 8px 11px;

        font-size: 12px;
    }


    .page-hero {
        padding: 40px 0 24px;
    }

    .page-hero h1 {
        font-size: 30px;
    }


    .grid {
        gap: 10px;
    }

    .product-img {
        padding: 11px;
    }

    .product-img img {
        max-height: 90px;
    }

    .card-body {
        padding: 12px;
    }

    .card-body h3 {
        font-size: 13px;
    }

    .price {
        font-size: 17px;
    }

    .card-actions .btn {
        min-height: 37px;

        padding: 8px 7px;

        font-size: 11px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }

}

/* ==========================================================================
   DSR4U - HEADER / NAVIGATION UPGRADE
   ========================================================================== */


/* ==========================================================================
   HEADER
   ========================================================================== */

   .site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(5, 5, 5, 0.88);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.18);
}


/* ==========================================================================
   LOGO
   ========================================================================== */

.logo img {
    width: auto;

    height: 34px;

    max-width: 42px;

    object-fit: contain;
}


/* ==========================================================================
   DESKTOP NAV
   ========================================================================== */

.desktop-navigation {
    display: flex;

    align-items: center;

    gap: 24px;
}

.desktop-navigation a {
    position: relative;

    padding: 8px 0;

    color: var(--text-muted);

    font-size: 14px;

    font-weight: 650;
}

.desktop-navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--gold2);

    border-radius: 999px;

    transition: var(--transition);
}

.desktop-navigation a:hover,
.desktop-navigation a.active {
    color: var(--text-main);
}

.desktop-navigation a:hover::after,
.desktop-navigation a.active::after {
    width: 100%;
}


/* ==========================================================================
   HEADER ACTIONS
   ========================================================================== */

.header-icon-btn {
    position: relative;

    width: 40px;
    height: 40px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    background:
        linear-gradient(
            180deg,
            #171717,
            #101010
        );

    color: var(--text-main);

    border: 1px solid var(--border);

    border-radius: 10px;

    font-size: 16px;

    cursor: pointer;

    transition: var(--transition);
}

.header-icon-btn:hover {
    color: var(--gold2);

    border-color:
        rgba(255, 215, 0, 0.35);

    transform: translateY(-2px);
}


/* ==========================================================================
   CART COUNT
   ========================================================================== */

.header-cart-count {
    position: absolute;

    top: -5px;
    right: -5px;

    min-width: 18px;
    height: 18px;

    padding: 0 4px;

    display: none;

    align-items: center;
    justify-content: center;

    background: var(--gold2);

    color: #000;

    border: 2px solid var(--bg-main);

    border-radius: 999px;

    font-size: 9px;

    font-weight: 900;

    line-height: 1;
}

.header-cart-count.visible {
    display: flex;
}


/* ==========================================================================
   MOBILE MENU BUTTON
   ========================================================================== */

.mobile-menu-btn {
    display: none;

    width: 40px;
    height: 40px;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            180deg,
            #171717,
            #101010
        );

    color: var(--text-main);

    border: 1px solid var(--border);

    border-radius: 10px;

    font-size: 20px;

    cursor: pointer;
}


/* ==========================================================================
   MOBILE MENU OVERLAY
   ========================================================================== */

.mobile-menu-overlay {
    position: fixed;

    inset: 0;

    z-index: 3000;

    display: flex;

    justify-content: flex-end;

    background:
        rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* ==========================================================================
   MOBILE MENU PANEL
   ========================================================================== */

.mobile-menu-panel {
    width: min(360px, 88%);

    height: 100%;

    padding: 22px;

    display: flex;

    flex-direction: column;

    background:
        linear-gradient(
            180deg,
            #111111,
            #050505
        );

    border-left:
        1px solid var(--border-light);

    box-shadow:
        -20px 0 60px rgba(0, 0, 0, 0.45);

    transform: translateX(100%);

    transition:
        transform 0.3s
        cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active
.mobile-menu-panel {
    transform: translateX(0);
}


/* ==========================================================================
   MOBILE MENU HEADER
   ========================================================================== */

.mobile-menu-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom:
        1px solid var(--border);
}

.mobile-menu-logo {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-size: 20px;

    font-weight: 850;
}

.mobile-menu-logo img {
    width: 30px;
    height: 30px;

    object-fit: contain;
}

.mobile-menu-logo b {
    color: var(--gold2);
}

.mobile-menu-close {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--bg-surface);

    color: var(--text-main);

    border: 1px solid var(--border);

    border-radius: 50%;

    font-size: 22px;

    cursor: pointer;

    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--gold2);

    border-color:
        rgba(255, 215, 0, 0.35);
}


/* ==========================================================================
   MOBILE LINKS
   ========================================================================== */

.mobile-menu-links {
    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 20px 0;

    overflow-y: auto;
}

.mobile-nav-link {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 13px 14px;

    color: var(--text-soft);

    border: 1px solid transparent;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 650;

    transition: var(--transition);
}

.mobile-nav-link span:first-child {
    width: 25px;

    text-align: center;

    font-size: 17px;
}

.mobile-nav-link:hover {
    color: var(--gold2);

    background:
        rgba(255, 215, 0, 0.05);

    border-color:
        rgba(255, 215, 0, 0.10);

    transform: translateX(3px);
}


/* ==========================================================================
   MOBILE MENU BOTTOM
   ========================================================================== */

.mobile-menu-bottom {
    margin-top: auto;

    padding-top: 20px;

    border-top:
        1px solid var(--border);
}


/* ==========================================================================
   MOBILE BOTTOM NAVIGATION
   ========================================================================== */

.mobile-bottom-nav {
    display: none;
}


/* ==========================================================================
   HEADER SEARCH OVERLAY
   ========================================================================== */

.header-search-overlay {
    position: fixed;

    inset: 0;

    z-index: 3500;

    display: flex;

    align-items: flex-start;
    justify-content: center;

    padding: 90px 20px 30px;

    background:
        rgba(0, 0, 0, 0.78);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.header-search-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* ==========================================================================
   SEARCH BOX
   ========================================================================== */

.header-search-box {
    position: relative;

    width: min(700px, 100%);

    padding: 28px;

    background:
        linear-gradient(
            180deg,
            #151515,
            #0b0b0b
        );

    border:
        1px solid var(--border-light);

    border-radius: var(--radius-lg);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55);

    transform: translateY(-15px);

    transition:
        transform 0.3s ease;
}

.header-search-overlay.active
.header-search-box {
    transform: translateY(0);
}

.header-search-close {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    border: 1px solid var(--border);

    background: var(--bg-surface);

    color: var(--text-main);

    font-size: 20px;

    cursor: pointer;
}

.header-search-title {
    margin-bottom: 16px;

    font-size: 20px;

    font-weight: 850;
}

.header-search-input-wrap {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 0 15px;

    background: var(--bg-surface);

    border: 1px solid var(--border-light);

    border-radius: 12px;
}

.header-search-input-wrap span {
    font-size: 18px;

    opacity: 0.7;
}

.header-search-input-wrap input {
    border: 0;

    background: transparent;

    box-shadow: none;

    padding-left: 0;
}

.header-search-input-wrap input:focus {
    border: 0;

    box-shadow: none;
}

.header-search-results {
    min-height: 60px;

    margin-top: 18px;

    color: var(--text-muted);

    font-size: 13px;
}


/* ==========================================================================
   BODY LOCK
   ========================================================================== */

body.menu-open,
body.search-open {
    overflow: hidden;
}


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

@media (max-width: 768px) {

    .site-header .nav {
        min-height: 62px;
    }

    .desktop-navigation {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .mobile-bottom-nav {
        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 1500;

        height: 62px;

        display: grid;

        grid-template-columns:
            repeat(5, 1fr);

        background:
            rgba(8, 8, 8, 0.94);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        border-top:
            1px solid var(--border);

        box-shadow:
            0 -8px 30px rgba(0, 0, 0, 0.30);

        padding-bottom:
            env(safe-area-inset-bottom);
    }

    .mobile-bottom-nav a {
        position: relative;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 2px;

        color: var(--text-muted);

        font-size: 18px;

        transition: var(--transition);
    }

    .mobile-bottom-nav a small {
        font-size: 9px;

        font-weight: 650;
    }

    .mobile-bottom-nav a.active {
        color: var(--gold2);
    }

    .mobile-bottom-nav a.active::before {
        content: "";

        position: absolute;

        top: 0;
        left: 50%;

        width: 28px;
        height: 2px;

        transform: translateX(-50%);

        background: var(--gold2);

        border-radius:
            0 0 999px 999px;
    }

    .bottom-cart-icon {
        position: relative;
    }

    .bottom-cart-icon b {
        position: absolute;

        top: -7px;
        right: -9px;

        min-width: 15px;
        height: 15px;

        display: flex;

        align-items: center;
        justify-content: center;

        padding: 0 3px;

        background: var(--gold2);

        color: #000;

        border-radius: 999px;

        font-size: 8px;

        border: 1px solid #050505;
    }

    body {
        padding-bottom:
            calc(
                62px +
                env(safe-area-inset-bottom)
            );
    }

}


/* ==========================================================================
   VERY SMALL SCREENS
   ========================================================================== */

@media (max-width: 380px) {

    .header-icon-btn,
    .mobile-menu-btn {
        width: 36px;
        height: 36px;
    }

    .logo {
        font-size: 18px;
    }

    .logo img {
        height: 29px;
    }

    .nav-actions {
        gap: 6px;
    }

}


/* ==========================================================================
   END OF DSR4U GLOBAL THEME
   ========================================================================== */

/* DSR4U Customer V2 upgrade layer */
.dsr4u-v2-currency{display:inline-flex;align-items:center;gap:6px;margin-left:8px}
.dsr4u-v2-currency select{border:1px solid #d9dee8;border-radius:8px;padding:7px 9px;background:#fff;font:inherit}
.dsr4u-v2-feature-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:12px;margin:24px 0}
.dsr4u-v2-feature-card{padding:16px;border:1px solid #e6e9ef;border-radius:14px;background:#fff;text-align:center}
.dsr4u-v2-feature-card .icon{font-size:23px;margin-bottom:7px}
.dsr4u-v2-category-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:15px}
.dsr4u-v2-category-card{border:1px solid #e6e9ef;border-radius:14px;overflow:hidden;background:#fff}
.dsr4u-v2-category-card img{width:100%;aspect-ratio:1.5;object-fit:cover}
.dsr4u-v2-category-card .name{padding:11px;font-weight:800}
.dsr4u-v2-tabs{display:flex;gap:6px;flex-wrap:wrap;border-bottom:1px solid #e4e7ec;margin-top:28px}
.dsr4u-v2-tabs button{border:0;background:transparent;padding:11px 14px;cursor:pointer;font-weight:700}
.dsr4u-v2-tab-panel{padding:18px 0}
.dsr4u-v2-contact{max-width:760px;margin:auto}
.dsr4u-v2-country-phone{display:grid;grid-template-columns:170px 1fr;gap:10px}
@media(max-width:900px){.dsr4u-v2-feature-grid{grid-template-columns:repeat(3,1fr)}.dsr4u-v2-category-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:600px){.dsr4u-v2-feature-grid{grid-template-columns:repeat(2,1fr)}.dsr4u-v2-category-grid{grid-template-columns:repeat(2,1fr)}.dsr4u-v2-country-phone{grid-template-columns:1fr}.dsr4u-v2-currency{margin-left:0}}


/* Customer V2 CSS FIX */
.dsr4u-header-currency{
    appearance:auto!important;
    min-width:82px!important;
    max-width:110px!important;
    height:38px!important;
    padding:0 9px!important;
    margin:0!important;
    border:1px solid rgba(255,215,0,.22)!important;
    border-radius:9px!important;
    background:#0b0b0b!important;
    color:#f5f5f5!important;
    font:600 12px/1 inherit!important;
    cursor:pointer!important;
    outline:none!important;
}
.dsr4u-header-currency:focus{box-shadow:0 0 0 3px rgba(255,215,0,.12)!important}
@media(max-width:760px){
 .dsr4u-header-currency{min-width:72px!important;max-width:82px!important;height:34px!important}
}


/* ================= DSR4U CUSTOMER V2 FULL FEATURE LAYER ================= */
.dsr4u-v2-currency{display:inline-flex;align-items:center;gap:6px}
.dsr4u-v2-currency select{border:1px solid #d7dbe4;border-radius:9px;padding:7px 10px;background:#fff;font:inherit}
.dsr4u-v2-feature-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:12px;margin:28px 0}
.dsr4u-v2-feature-card{padding:16px;border:1px solid #e6e9ef;border-radius:15px;background:#fff;box-shadow:0 5px 18px rgba(20,25,35,.05);min-height:118px}
.dsr4u-v2-feature-card .icon{font-size:25px;margin-bottom:7px}.dsr4u-v2-feature-card h3{margin:0 0 5px;font-size:13px}.dsr4u-v2-feature-card p{margin:0;font-size:12px;color:#6b7280;line-height:1.45}
.dsr4u-v2-category-wrap{margin:30px 0}.dsr4u-v2-category-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:15px}
.dsr4u-v2-category-card{border:1px solid #e5e7eb;border-radius:15px;overflow:hidden;background:#fff;transition:.2s}
.dsr4u-v2-category-card:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(20,25,35,.08)}
.dsr4u-v2-category-card img{width:100%;aspect-ratio:1.45;object-fit:cover;background:#f0f2f5}.dsr4u-v2-category-card .name{padding:12px;font-weight:800}
.dsr4u-v2-tabs{display:flex;gap:4px;flex-wrap:wrap;border-bottom:1px solid #e5e7eb;margin-top:30px}
.dsr4u-v2-tabs button{border:0;background:transparent;padding:12px 14px;font-weight:750;cursor:pointer}
.dsr4u-v2-tabs button.active{border-bottom:2px solid #c99a2e}.dsr4u-v2-tab-panel{padding:18px 0;line-height:1.7}
.dsr4u-v2-requirement{padding:15px;border:1px solid #ead9a5;background:#fff9e8;border-radius:12px;margin:16px 0}
.dsr4u-v2-order-field{padding:14px;border:1px solid #e4e7ec;border-radius:12px;margin:12px 0;background:#fff}
.dsr4u-v2-order-field h3{margin:0 0 8px;font-size:15px}
.dsr4u-v2-phone{display:grid;grid-template-columns:190px 1fr;gap:8px}
.dsr4u-v2-phone select,.dsr4u-v2-phone input,.dsr4u-v2-order-field input,.dsr4u-v2-order-field select{width:100%;padding:11px;border:1px solid #d6dae3;border-radius:9px;font:inherit}
.dsr4u-v2-promo{display:grid;grid-template-columns:1fr auto;gap:8px}.dsr4u-v2-promo input{padding:11px;border:1px solid #d6dae3;border-radius:9px}
.dsr4u-v2-promo button{border:0;border-radius:9px;padding:11px 15px;background:#111827;color:#fff;cursor:pointer}
.dsr4u-v2-badge-row{display:flex;flex-wrap:wrap;gap:7px;margin:10px 0}.dsr4u-v2-badge{padding:5px 9px;border-radius:999px;background:#f2f3f6;font-size:11px;font-weight:750}
.dsr4u-v2-share{display:flex;gap:8px;flex-wrap:wrap;margin:12px 0}.dsr4u-v2-share button{border:1px solid #dfe3ea;background:#fff;border-radius:9px;padding:8px 11px;cursor:pointer}
.dsr4u-v2-contact{max-width:760px;margin:auto}.dsr4u-v2-contact .field{margin-bottom:14px}.dsr4u-v2-contact label{display:block;font-weight:700;margin-bottom:6px}.dsr4u-v2-contact input,.dsr4u-v2-contact textarea{width:100%;padding:12px;border:1px solid #d6dae3;border-radius:10px;font:inherit}
.dsr4u-v2-contact textarea{min-height:160px}.dsr4u-v2-contact-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:15px}
@media(max-width:1000px){.dsr4u-v2-feature-grid{grid-template-columns:repeat(3,1fr)}.dsr4u-v2-category-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:650px){.dsr4u-v2-feature-grid{grid-template-columns:repeat(2,1fr)}.dsr4u-v2-category-grid{grid-template-columns:repeat(2,1fr)}.dsr4u-v2-phone{grid-template-columns:1fr}.dsr4u-v2-promo{grid-template-columns:1fr}}


/* ===== DSR4U V2 FINAL VISUAL FIXES ===== */
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.dsr4u-v2-currency{display:flex!important;align-items:center!important;margin-left:auto!important;padding:0!important}
.dsr4u-v2-currency select{
  appearance:none!important;-webkit-appearance:none!important;
  background:#111!important;color:#f4c96a!important;border:1px solid #c99a2e!important;
  border-radius:8px!important;padding:9px 34px 9px 12px!important;
  font-weight:700!important;min-width:105px!important;cursor:pointer!important;
  background-image:linear-gradient(45deg,transparent 50%,#f4c96a 50%),linear-gradient(135deg,#f4c96a 50%,transparent 50%)!important;
  background-position:calc(100% - 15px) 50%,calc(100% - 10px) 50%!important;
  background-size:5px 5px,5px 5px!important;background-repeat:no-repeat!important;
}
.dsr4u-v2-currency select option{background:#111!important;color:#fff!important}
.dsr4u-v2-account{display:inline-flex!important;align-items:center!important;padding:9px 13px!important;border:1px solid #c99a2e!important;border-radius:8px!important;color:#f4c96a!important;background:#111!important;font-weight:700!important}
.dsr4u-v2-feature-section{width:100%;margin:0 auto 34px}
.dsr4u-v2-feature-grid{width:min(1180px,92%);margin:0 auto;display:grid;grid-template-columns:repeat(6,1fr);gap:12px}
.dsr4u-v2-feature-card{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;min-height:125px;padding:16px;border-radius:14px;background:linear-gradient(145deg,#171717,#0d0d0d);border:1px solid rgba(201,154,46,.32);box-shadow:0 8px 22px rgba(0,0,0,.08);color:#fff}
.dsr4u-v2-feature-card span{font-size:25px;color:#f2c35c;margin-bottom:8px}.dsr4u-v2-feature-card b{font-size:12px;letter-spacing:.08em;color:#f2c35c}.dsr4u-v2-feature-card small{font-size:11px;color:#c8c8c8;line-height:1.4;margin-top:5px}
.dsr4u-v2-category-wrap{width:100%;padding:26px 0}.dsr4u-v2-section-title{margin-bottom:15px}.dsr4u-v2-category-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:15px}
.dsr4u-v2-category-card{display:block;overflow:hidden;border-radius:14px;background:#fff;border:1px solid #e5e7eb;box-shadow:0 6px 20px rgba(0,0,0,.06);transition:transform .2s}.dsr4u-v2-category-card:hover{transform:translateY(-3px)}.dsr4u-v2-category-card img{display:block;width:100%;height:130px;object-fit:cover}.dsr4u-v2-category-card strong{display:block;padding:12px;color:#222}
.dsr4u-v2-product-panel{margin:30px 0;padding:24px;border-radius:18px;background:#fff;border:1px solid #e4e7ec;box-shadow:0 8px 28px rgba(0,0,0,.06)}
.dsr4u-v2-badges{display:flex;gap:7px;flex-wrap:wrap;margin-bottom:15px}.dsr4u-v2-badges span{padding:6px 10px;border-radius:999px;background:#111;color:#f2c35c;font-size:11px;font-weight:800}
.dsr4u-v2-product-actions{display:flex;gap:8px;flex-wrap:wrap;margin:12px 0 18px}.dsr4u-v2-product-actions button{border:1px solid #d5d9e1;background:#fff;border-radius:8px;padding:9px 12px;cursor:pointer;font-weight:700}
.dsr4u-v2-requirement{padding:15px;margin:14px 0;border-radius:12px;background:#fff8e6;border:1px solid #ead39a;color:#3d3320}.dsr4u-v2-requirement p{margin:6px 0 0;line-height:1.55}
.dsr4u-v2-tabs{display:flex;gap:2px;flex-wrap:wrap;border-bottom:1px solid #ddd;margin-top:22px}.dsr4u-v2-tabs button{border:0;background:transparent;color:#555;padding:12px 15px;font-weight:750;cursor:pointer}.dsr4u-v2-tabs button.active{color:#9a6d13;border-bottom:2px solid #c99a2e}.dsr4u-v2-tab-content{padding:20px 5px;line-height:1.75;color:#3f4650;min-height:90px}
.dsr4u-v2-checkout-extra{margin:16px 0}.dsr4u-v2-order-card{padding:18px;margin:12px 0;border-radius:14px;background:#fff;border:1px solid #e3e6eb;box-shadow:0 5px 18px rgba(0,0,0,.04)}.dsr4u-v2-order-card h3{margin:0 0 8px}.dsr4u-v2-order-card input,.dsr4u-v2-order-card select{width:100%;padding:11px;border:1px solid #d5dae3;border-radius:8px;background:#fff;color:#222;font:inherit}.dsr4u-v2-phone{display:grid;grid-template-columns:200px 1fr;gap:9px}.dsr4u-v2-promo{display:grid;grid-template-columns:1fr auto;gap:8px}.dsr4u-v2-promo button,.dsr4u-v2-primary{display:inline-block;padding:11px 15px;border-radius:8px;border:0;background:#111;color:#f2c35c;font-weight:800;cursor:pointer;text-decoration:none}.v2-help{font-size:12px;color:#777;margin-bottom:0}
@media(max-width:1000px){.dsr4u-v2-feature-grid{grid-template-columns:repeat(3,1fr)}.dsr4u-v2-category-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:700px){.dsr4u-v2-feature-grid{grid-template-columns:repeat(2,1fr)}.dsr4u-v2-category-grid{grid-template-columns:repeat(2,1fr)}.dsr4u-v2-phone,.dsr4u-v2-promo{grid-template-columns:1fr}.dsr4u-v2-product-panel{padding:16px}}


/* ===== CUSTOMER V2 CHECKOUT / CURRENCY FINAL PATCH ===== */
#dsr4u-v2-currency{display:flex!important;align-items:center!important;margin-left:12px!important;z-index:20}
#dsr4u-v2-currency select,.v2-currency-select{
  appearance:auto!important;-webkit-appearance:auto!important;
  min-width:120px!important;padding:9px 11px!important;border:1px solid #c99a2e!important;
  border-radius:8px!important;background:#111!important;color:#f2c35c!important;
  font-weight:700!important;cursor:pointer!important;outline:none!important;
}
#dsr4u-v2-currency select option,.v2-currency-select option{background:#171717!important;color:#fff!important}
#dsr4u-v2-checkout-extra{width:100%;margin:18px 0}
.dsr4u-v2-order-card{padding:18px;margin:12px 0;border:1px solid #e0e4ea;border-radius:14px;background:#fff;box-shadow:0 5px 18px rgba(0,0,0,.04)}
.dsr4u-v2-order-card h3{margin:0 0 9px;font-size:17px}
.dsr4u-v2-order-card input,.dsr4u-v2-order-card select{box-sizing:border-box;width:100%;padding:12px;border:1px solid #d5dae3;border-radius:8px;background:#fff;color:#222;font:inherit}
.dsr4u-v2-phone{display:grid;grid-template-columns:210px 1fr;gap:9px}
.dsr4u-v2-promo{display:grid;grid-template-columns:1fr auto;gap:8px}
.dsr4u-v2-promo input{min-width:0}.dsr4u-v2-promo button{padding:12px 18px;border:0;border-radius:8px;background:#111;color:#f2c35c;font-weight:800;cursor:pointer}
#v2-promo-message{margin-top:8px}.v2-help{font-size:12px;color:#777;line-height:1.5}
#v2-checkout-summary{margin-top:14px;padding-top:12px;border-top:1px solid #e5e7eb}
.v2-summary-row,.v2-summary-total{display:flex;justify-content:space-between;gap:12px;padding:7px 0}.v2-summary-total{font-size:18px;border-top:1px solid #e5e7eb;margin-top:6px;padding-top:12px}
.dsr4u-v2-requirement{padding:15px;margin:10px 0;border-radius:12px;background:#fff8e6;border:1px solid #ead39a}
.dsr4u-v2-primary{display:inline-block;padding:10px 14px;border-radius:8px;background:#111;color:#f2c35c;text-decoration:none;font-weight:800}
@media(max-width:700px){.dsr4u-v2-phone,.dsr4u-v2-promo{grid-template-columns:1fr}#dsr4u-v2-currency{margin-left:0}.dsr4u-v2-order-card{padding:14px}}


/* ===== DSR4U COMMON HEADER FINAL ===== */
.dsr4u-site{width:100%;position:relative;z-index:5000}.dsr4u-topbar{background:#0a0a0a;color:#aaa;border-bottom:1px solid rgba(212,175,55,.14);font-size:11px}.dsr4u-topbar-inner{max-width:1200px;margin:auto;padding:7px 20px;display:flex;justify-content:space-between;gap:15px}.dsr4u-topbar a{color:#d4af37;text-decoration:none}
.dsr4u-main-header{position:sticky;top:0;background:rgba(5,5,5,.98);border-bottom:1px solid rgba(212,175,55,.2);box-shadow:0 8px 30px rgba(0,0,0,.25)}.dsr4u-nav-wrap{max-width:1200px;min-height:74px;margin:auto;padding:8px 20px;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:20px;position:relative}.dsr4u-nav{display:flex;align-items:center;gap:5px}.dsr4u-nav-left{justify-content:flex-start}.dsr4u-nav a,.dsr4u-mobile-panel a{color:#c9c9c9;text-decoration:none;padding:9px 11px;border-radius:7px;font-size:12px;font-weight:800;white-space:nowrap}.dsr4u-nav a:hover,.dsr4u-nav a.active{color:#ffd84f;background:rgba(212,175,55,.08)}.dsr4u-logo{justify-self:center;display:flex;align-items:center}.dsr4u-logo img{display:block;width:auto;height:46px;max-width:180px;object-fit:contain}.dsr4u-nav-right{justify-content:flex-end;display:flex;align-items:center;gap:9px}.dsr4u-header-currency select,.dsr4u-mobile-currency select{appearance:none;background:#111;color:#f5ce59;border:1px solid #8f6e20;border-radius:7px;padding:7px 9px;font-size:11px;font-weight:800;min-width:74px;cursor:pointer}.dsr4u-header-currency option,.dsr4u-mobile-currency option{background:#111;color:#fff}.dsr4u-cart-link{position:relative;display:inline-flex;align-items:center;gap:5px;color:#fff!important;text-decoration:none;background:#141414;border:1px solid #303030;border-radius:7px;padding:8px 10px;font-size:11px;font-weight:800}.dsr4u-cart-link:hover{border-color:#d4af37;color:#ffd84f!important}.dsr4u-cart-link b,.dsr4u-mobile-cart b{min-width:17px;height:17px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:#d4af37;color:#111;font-size:9px}.dsr4u-menu-toggle{display:none}.dsr4u-mobile-panel{display:none}
.dsr4u-cart-promo{margin:12px 0;padding:12px;border:1px solid #343434;border-radius:10px;background:#0d0d0d}.dsr4u-cart-promo h3{font-size:12px;color:#eee;margin-bottom:8px}.dsr4u-cart-promo-row{display:grid;grid-template-columns:1fr auto;gap:6px}.dsr4u-cart-promo input{min-width:0;padding:9px;border:1px solid #333;border-radius:7px;background:#070707;color:#fff}.dsr4u-cart-promo button{padding:9px 12px;border:1px solid #d4af37;border-radius:7px;background:#d4af37;color:#111;font-weight:800;cursor:pointer}.dsr4u-cart-promo-msg{font-size:11px;color:#aaa;margin-top:6px}
@media(max-width:850px){.dsr4u-nav-wrap{grid-template-columns:44px 1fr auto;min-height:64px;padding:7px 14px}.dsr4u-menu-toggle{display:flex;width:40px;height:40px;border:1px solid #333;border-radius:8px;background:#111;align-items:center;justify-content:center;flex-direction:column;gap:4px;cursor:pointer}.dsr4u-menu-toggle span{width:19px;height:2px;background:#f3c64d;border-radius:2px;display:block}.dsr4u-menu-toggle.open span:nth-child(1){transform:translateY(6px) rotate(45deg)}.dsr4u-menu-toggle.open span:nth-child(2){opacity:0}.dsr4u-menu-toggle.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}.dsr4u-nav-left{display:none}.dsr4u-logo{justify-self:center}.dsr4u-logo img{height:38px;max-width:145px}.dsr4u-nav-right{gap:5px}.dsr4u-cart-link span:not(.dsr4u-cart-icon){display:none}.dsr4u-cart-link{padding:8px}.dsr4u-header-currency{display:block}.dsr4u-mobile-panel{position:absolute;left:10px;right:10px;top:calc(100% + 7px);background:#0b0b0b;border:1px solid #2b2b2b;border-radius:12px;box-shadow:0 18px 45px rgba(0,0,0,.45);padding:9px;display:none;grid-template-columns:1fr 1fr;gap:5px}.dsr4u-mobile-panel.open{display:grid}.dsr4u-mobile-panel a{display:block}.dsr4u-mobile-currency{grid-column:1}.dsr4u-mobile-currency select{width:100%}.dsr4u-mobile-cart{grid-column:2;text-align:center;background:#151515}.dsr4u-topbar-inner{font-size:9px;padding:6px 12px}.dsr4u-topbar-inner span:nth-child(2){display:none}}
@media(max-width:430px){.dsr4u-nav-wrap{grid-template-columns:42px 1fr auto}.dsr4u-logo img{height:34px;max-width:125px}.dsr4u-header-currency select{min-width:62px;padding:7px 5px}.dsr4u-cart-icon{font-size:14px}.dsr4u-topbar-inner{justify-content:center}.dsr4u-topbar-inner span:first-child{font-size:8px}}

/* ===== FINAL HEADER CLEANUP ===== */
.dsr4u-mobile-panel .dsr4u-mobile-currency,
.dsr4u-mobile-panel .dsr4u-mobile-cart{display:none!important}
@media(max-width:850px){.dsr4u-mobile-panel{grid-template-columns:1fr 1fr}.dsr4u-mobile-panel a{display:block!important}}


/* DSR4U V4 global footer */
.dsr4u-global-footer{margin-top:70px;background:linear-gradient(180deg,#0b0b0b,#050505);border-top:1px solid rgba(212,175,55,.18);color:var(--text-muted,#aaa)}
.dsr4u-footer-inner{max-width:1200px;margin:auto;padding:48px 22px 36px;display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:34px}
.dsr4u-footer-inner>div{display:flex;flex-direction:column;gap:9px}
.dsr4u-footer-brand{max-width:330px}
.dsr4u-footer-brand img{width:145px;height:auto;object-fit:contain;margin-bottom:5px}
.dsr4u-footer-brand h3{font-size:18px;color:#fff}
.dsr4u-footer-brand p{line-height:1.7;font-size:13px}
.dsr4u-footer-inner h4{color:var(--gold2,#ffd700);font-size:13px;margin-bottom:7px;text-transform:uppercase;letter-spacing:.6px}
.dsr4u-footer-inner a,.dsr4u-footer-inner span{color:#aaa;text-decoration:none;font-size:13px;line-height:1.5}
.dsr4u-footer-inner a:hover{color:#ffd700}
.dsr4u-footer-bottom{max-width:1200px;margin:auto;padding:17px 22px;border-top:1px solid rgba(255,255,255,.06);display:flex;justify-content:space-between;gap:15px;font-size:11px;color:#777}
@media(max-width:800px){.dsr4u-footer-inner{grid-template-columns:1fr 1fr}.dsr4u-footer-brand{grid-column:1/-1;max-width:none}}
@media(max-width:520px){.dsr4u-footer-inner{grid-template-columns:1fr;padding:38px 18px 28px}.dsr4u-footer-bottom{padding:15px 18px;flex-direction:column}}

/* V4 catalog/product meta */
.v4-product-visual-meta{position:absolute;top:10px;left:10px;right:10px;z-index:3;display:flex;justify-content:space-between;gap:8px;pointer-events:none}
.v4-product-tag,.v4-sold-count{display:inline-flex;align-items:center;min-height:25px;padding:5px 8px;border-radius:999px;font-size:10px;font-weight:800;line-height:1;backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.1)}
.v4-product-tag{background:rgba(212,175,55,.94);color:#080808}.v4-sold-count{background:rgba(0,0,0,.72);color:#fff}
.v4-product-brand{font-size:11px;color:#8d8d8d;margin-top:-5px;margin-bottom:8px;font-weight:700;text-transform:uppercase;letter-spacing:.5px}
.v4-product-review-line{display:flex;align-items:center;gap:6px;font-size:12px;margin-top:7px;color:#bbb}.v4-product-review-line .stars{color:#ffd700;letter-spacing:1px}.v4-product-review-line .count{color:#888}
.v4-product-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:12px}.v4-product-actions .btn{width:100%}
.v4-sold-line{display:flex;justify-content:space-between;align-items:center;gap:12px;margin:6px 0 14px;color:#aaa;font-size:12px}.v4-sold-line strong{color:#fff}.v4-product-brand-large{font-size:12px;color:#999;text-transform:uppercase;letter-spacing:.7px;font-weight:800;margin-bottom:10px}
.v4-product-rating-row{display:flex;justify-content:space-between;align-items:center;gap:12px;margin:8px 0 16px}.v4-product-rating-row .rating-left{display:flex;align-items:center;gap:8px;color:#ffd700}.v4-product-rating-row .rating-count{color:#888;font-size:12px}.v4-product-rating-row .sold-right{color:#aaa;font-size:12px}.v4-product-tabs{margin-top:32px;border:1px solid var(--border,#242424);border-radius:14px;overflow:hidden;background:#0b0b0b}.v4-product-tab-buttons{display:flex;border-bottom:1px solid var(--border,#242424);overflow:auto}.v4-product-tab-buttons button{border:0;background:transparent;color:#999;padding:14px 18px;font-weight:800;white-space:nowrap;cursor:pointer}.v4-product-tab-buttons button.active{color:#ffd700;background:rgba(212,175,55,.07);box-shadow:inset 0 -2px #ffd700}.v4-product-tab-panel{padding:22px}.v4-product-tab-panel[hidden]{display:none!important}.v4-review-item{padding:14px 0;border-bottom:1px solid rgba(255,255,255,.07)}.v4-review-item:last-child{border-bottom:0}.v4-review-stars{color:#ffd700}.v4-review-author{font-weight:800;color:#eee;margin-top:5px}.v4-review-comment{color:#aaa;margin-top:6px;line-height:1.6}
@media(max-width:600px){.v4-product-actions{grid-template-columns:1fr}.v4-product-rating-row{align-items:flex-start;flex-direction:column}}


/* V4 review platform cards - no missing image dependencies */
.review-platform-text{display:flex;flex-direction:column;justify-content:center;gap:5px;min-height:78px;padding:16px 18px;text-decoration:none}
.review-platform-text strong{font-size:15px;color:var(--text-main,#fff)}
.review-platform-text span{font-size:11px;color:var(--text-muted,#999)}
.review-platform-text:hover{transform:translateY(-2px)}

/* ===== V5 MOBILE HEADER STACKING FIX ===== */
#site-header,.dsr4u-site{position:relative;z-index:2147483000!important}
.dsr4u-main-header{position:sticky!important;top:0!important;z-index:2147483001!important;isolation:isolate}
@media(max-width:850px){
  .dsr4u-main-header{z-index:2147483001!important}
  .dsr4u-menu-toggle{position:relative!important;z-index:2147483004!important}
  .dsr4u-mobile-panel{
    position:absolute!important;
    z-index:2147483003!important;
    isolation:isolate;
  }
  main,.page-hero,.hero,.banner,.hero-banner,.carousel,.slider{position:relative;z-index:auto!important}
}

/* Payment wallet/account details */
.payment-address-box{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.payment-address{flex:1;min-width:0;word-break:break-all}
.btn-copy{cursor:pointer}
