/* =========================================================
   ORVEX DZ — BOUTIQUE
   Dark Luxury / Black + Gold
========================================================= */

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

:root {
    --black: #050505;
    --black2: #090909;
    --panel: #0d0d0d;
    --panel2: #111111;
    --line: #292929;
    --text: #f5f5f5;
    --muted: #8b8b8b;
    --gold: #d4ad5b;
    --gold2: #f0cf82;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(212, 173, 91, .06),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #151515 0%,
            #0b0b0b 30%,
            #060606 100%
        );

    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
}


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

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

    min-height: 78px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    gap: 34px;

    padding: 0 5%;

    background: rgba(5, 5, 5, .94);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

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

    text-decoration: none;
}

.shop-logo img {
    width: 145px;
    max-height: 58px;

    display: block;

    object-fit: contain;
}

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

    gap: 30px;
}

.shop-nav a {
    position: relative;

    padding: 30px 0;

    text-decoration: none;

    color: #efefef;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .7px;

    white-space: nowrap;

    transition: .2s ease;
}

.shop-nav a:hover,
.shop-nav a.active {
    color: var(--gold2);
}

.shop-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 18px;

    height: 2px;

    background: var(--gold);
}

.shop-actions {
    display: flex;
    align-items: center;

    gap: 10px;
}

.shop-search {
    width: 280px;
    height: 38px;

    padding: 0 12px;

    display: flex;
    align-items: center;

    gap: 8px;

    background: #080808;

    border: 1px solid #2c2c2c;
    border-radius: 7px;
}

.shop-search input {
    flex: 1;
    min-width: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: white;

    font-size: 11px;
}

.shop-search input::placeholder {
    color: #686868;
}

.shop-search span {
    color: var(--gold);

    font-size: 20px;
}

.shop-account,
.shop-cart {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    text-decoration: none;

    color: white;

    font-size: 17px;

    transition: .2s ease;
}

.shop-account:hover,
.shop-cart:hover {
    color: var(--gold);
}


/* =========================================================
   HERO
========================================================= */

.boutique-hero {
    min-height: 235px;

    padding: 75px 5% 48px;

    display: flex;
    flex-direction: column;
    justify-content: center;

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

    background:
        linear-gradient(
            90deg,
            rgba(212,173,91,.08),
            transparent 40%
        );
}

.boutique-hero p {
    margin-bottom: 8px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 5px;
}

.boutique-hero h1 {
    font-size: clamp(40px, 5vw, 72px);

    line-height: .9;

    letter-spacing: 1px;
}

.boutique-hero span {
    margin-top: 17px;

    color: #9d9d9d;

    font-size: 12px;

    letter-spacing: .8px;
}


/* =========================================================
   CATALOG
========================================================= */

.catalog {
    width: 90%;

    margin: 0 auto;

    padding: 25px 0 90px;
}

.category-row {
    padding: 42px 0 20px;

    border-bottom: 1px solid rgba(255,255,255,.055);
}

.category-row:last-child {
    border-bottom: 0;
}

.category-heading {
    margin-bottom: 20px;

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

    gap: 20px;
}

.category-title {
    display: flex;
    align-items: center;

    gap: 14px;
}

.category-title h2 {
    color: #fff;

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

    letter-spacing: .2px;
}

.category-title > span {
    width: 50px;
    height: 2px;

    display: block;

    background: var(--gold);
}

.category-count {
    color: #777;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;
}


/* =========================================================
   SLIDER
========================================================= */

.category-slider {
    position: relative;

    width: 100%;
}

.category-viewport {
    width: 100%;

    overflow: hidden;
}

.category-track {
    display: flex;

    gap: 14px;

    transition: transform .42s ease;

    will-change: transform;
}

.category-card {
    flex: 0 0 calc((100% - 56px) / 5);
    min-width: 0;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: #0b0b0b;

    border: 1px solid #292929;
    border-radius: 2px;

    text-decoration: none;

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.category-card:hover {
    transform: translateY(-4px);

    border-color: #80662f;
}

.category-photo {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #111;
}

.category-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .35s ease;
}

.category-card:hover .category-photo img {
    transform: scale(1.035);
}

.category-badge {
    position: absolute;

    top: 10px;
    left: 10px;

    padding: 4px 7px;

    color: var(--gold2);
    background: rgba(0,0,0,.84);

    border: 1px solid #8c6e2f;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}

.category-info {
    min-height: 82px;

    padding: 12px 12px 13px;

    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "name buy"
        "price buy";

    gap: 7px 10px;

    align-items: center;

    border-top: 1px solid rgba(212,173,91,.13);

    background: rgba(5,5,5,.97);
}

.category-info h3 {
    grid-area: name;

    overflow: hidden;

    color: #fff;

    font-size: 10px;
    font-weight: 900;

    line-height: 1.3;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.category-price {
    grid-area: price;

    color: var(--gold);

    font-size: 11px;
    font-weight: 900;
}

.category-buy {
    grid-area: buy;

    min-width: 72px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 9px;

    border: 1px solid rgba(212,173,91,.68);

    color: #fff;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: .4px;
}


/* =========================================================
   EMPTY CARD / BIENTÔT
========================================================= */

.empty-card {
    position: relative;

    flex: 0 0 calc((100% - 56px) / 5);

    min-width: 0;

    aspect-ratio: 1 / 1.32;

    overflow: hidden;

    border: 1px solid rgba(212,173,91,.36);

    background:
        radial-gradient(
            circle at 50% 12%,
            rgba(212,173,91,.18),
            transparent 29%
        ),
        linear-gradient(
            180deg,
            #0a0a0a,
            #101010 60%,
            #080808
        );
}

.empty-card::before,
.empty-card::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 90px;

    background: radial-gradient(
        circle,
        rgba(189,155,91,.22),
        transparent 67%
    );

    filter: blur(20px);
}

.empty-card::before {
    left: -60px;
    top: 25%;
}

.empty-card::after {
    right: -60px;
    bottom: 10%;
}

.empty-content {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 2;

    text-align: center;
}

.empty-mark {
    margin-bottom: 10px;

    color: var(--gold);

    font-size: 18px;
}

.empty-content span {
    margin-bottom: 9px;

    color: #aaa;

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

    letter-spacing: 3.2px;
}

.empty-content strong {
    color: var(--gold2);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 3px;
}


/* =========================================================
   ARROWS
========================================================= */

.category-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 42px;
    height: 54px;

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

    transform: translateY(-50%);

    border: 1px solid rgba(212,173,91,.75);
    border-radius: 4px;

    background: rgba(7,7,7,.96);

    color: var(--gold);

    font-size: 18px;

    cursor: pointer;

    transition: .2s ease;
}

.category-arrow:hover:not(:disabled) {
    background: var(--gold);

    color: #080808;
}

.category-arrow:disabled {
    opacity: .25;

    cursor: default;
}

.category-prev {
    left: -52px;
}

.category-next {
    right: -52px;
}


/* =========================================================
   SEARCH EMPTY
========================================================= */

.no-search-results {
    padding: 70px 20px;

    text-align: center;

    color: #8b8b8b;

    font-size: 12px;

    letter-spacing: 1px;
}


/* =========================================================
   FOOTER
========================================================= */

.shop-footer {
    padding: 40px 5%;

    border-top: 1px solid #1f1f1f;

    background: #050505;

    text-align: center;
}

.shop-footer span {
    display: block;

    margin-bottom: 9px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 4px;
}

.shop-footer p {
    color: #666;

    font-size: 9px;

    letter-spacing: 1px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

    .shop-header {
        grid-template-columns: auto 1fr;
    }

    .shop-actions {
        display: none;
    }

    .shop-nav {
        justify-self: end;
    }

    .category-card,
    .empty-card {
        flex-basis: calc((100% - 28px) / 3);
    }

    .category-prev {
        left: 8px;
    }

    .category-next {
        right: 8px;
    }
}


@media (max-width: 820px) {

    .shop-header {
        min-height: 70px;

        padding: 0 16px;

        display: flex;
        justify-content: space-between;
    }

    .shop-logo img {
        width: 115px;
    }

    .shop-nav {
        gap: 14px;

        overflow-x: auto;
    }

    .shop-nav a {
        padding: 27px 0;

        font-size: 8px;
    }

    .boutique-hero {
        min-height: 185px;

        padding: 55px 18px 35px;
    }

    .catalog {
        width: 100%;

        padding: 12px 14px 60px;
    }

    .category-row {
        padding-top: 34px;
    }

    .category-title h2 {
        font-size: 18px;
    }

    .category-card,
    .empty-card {
        flex: 0 0 78%;
    }

    .category-arrow {
        width: 38px;
        height: 48px;
    }

    .category-prev {
        left: 6px;
    }

    .category-next {
        right: 6px;
    }
}

/* =========================================
   ORVEX DZ BOUTIQUE — CONTINUOUS BACKGROUND
========================================= */

body {
    background: #202020 !important;
}

/* المنطقة التي تحتوي كل الفئات */
main {
    background: #202020 !important;
}

/* WATCHES / SHOES / T-SHIRTS / ETC */
.catalog {
    width: 90% !important;
    margin: 0 auto !important;

    padding-top: 45px !important;
    padding-bottom: 80px !important;

    background: transparent !important;
}

/* كل الأقسام بنفس الخلفية بدون فواصل */
.category-row {
    padding: 35px 0 45px !important;

    background: transparent !important;

    border: none !important;
    border-bottom: none !important;
}

/* إزالة أي خط من آخر قسم */
.category-row:last-child {
    border: none !important;
}

/* =========================================================
   ORVEX DZ — FIX DYNAMIC BOUTIQUE CARDS
   Compatible with the new boutique.js
========================================================= */

/* 5 PRODUCTS IN ONE ROW */
.category-track {
    display: flex !important;
    gap: 14px !important;
    width: 100%;
}

.category-card {
    flex: 0 0 calc((100% - 56px) / 5) !important;
    width: calc((100% - 56px) / 5) !important;
    min-width: 0 !important;

    display: flex !important;
    flex-direction: column !important;

    overflow: hidden !important;

    background: #0b0b0b !important;
    border: 1px solid #292929 !important;

    text-decoration: none !important;
    color: white !important;
}


/* PRODUCT IMAGE */
.category-card-image {
    position: relative !important;

    width: 100% !important;
    aspect-ratio: 1 / 1 !important;

    overflow: hidden !important;

    background: #111 !important;
}

.category-card-image img {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

    object-fit: cover !important;

    transition: transform .35s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.035);
}


/* NEW BADGE */
.product-badge {
    position: absolute;

    top: 10px;
    left: 10px;

    padding: 4px 7px;

    background: rgba(0, 0, 0, .88);

    border: 1px solid #8c6e2f;

    color: var(--gold2);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* PRODUCT INFORMATION */
.category-card-info {
    min-height: 88px;

    padding: 12px 12px 13px;

    display: grid;

    grid-template-columns: 1fr auto;

    grid-template-areas:
        "name buy"
        "price buy";

    gap: 7px 10px;

    align-items: center;

    background: rgba(5, 5, 5, .97);

    border-top: 1px solid rgba(212, 173, 91, .13);
}


/* PRODUCT NAME */
.category-card-info h3 {
    grid-area: name;

    margin: 0 !important;

    overflow: hidden;

    color: #fff;

    font-size: 10px !important;
    font-weight: 900;

    line-height: 1.3;

    white-space: nowrap;
    text-overflow: ellipsis;
}


/* PRICE */
.category-card-info strong {
    grid-area: price;

    color: var(--gold) !important;

    font-size: 11px !important;
    font-weight: 900;
}


/* ACHETER */
.buy-link {
    grid-area: buy;

    min-width: 74px;
    height: 32px;

    padding: 0 9px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(212, 173, 91, .68);

    color: #fff;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: .4px;
}


/* CATEGORY TITLE */
.category-heading > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.category-subtitle {
    margin: 0;

    color: #aaa;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: .3px;
}

.category-heading h2 {
    margin: 0;

    color: #fff;

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

    letter-spacing: .2px;
}


/* ARROWS */
.hidden-arrow {
    visibility: hidden !important;
    pointer-events: none !important;
}


/* NO IMAGE */
.no-product-image {
    width: 100%;
    height: 100%;

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

    background:
        radial-gradient(
            circle at center,
            rgba(212, 173, 91, .13),
            transparent 45%
        ),
        #0b0b0b;

    color: var(--gold);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 3px;
}


/* EMPTY BOUTIQUE */
.boutique-empty {
    min-height: 450px;

    display: flex;
    flex-direction: column;

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

    text-align: center;
}

.boutique-empty-logo {
    margin-bottom: 20px;

    color: var(--gold);

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

    letter-spacing: 5px;
}

.boutique-empty h2 {
    margin-bottom: 10px;

    color: var(--gold2);

    font-size: 26px;

    letter-spacing: 4px;
}

.boutique-empty p {
    color: #777;

    font-size: 11px;

    letter-spacing: 1px;
}


/* TABLET */
@media (max-width: 1180px) {

    .category-card {
        flex: 0 0 calc((100% - 28px) / 3) !important;
        width: calc((100% - 28px) / 3) !important;
    }
}


/* MOBILE */
@media (max-width: 820px) {

    .category-card {
        flex: 0 0 78% !important;
        width: 78% !important;
    }
}

/* ===== HEADER SAME SIZE AS ACCUEIL ===== */

.shop-header {
    min-height: 58px !important;
    height: 58px !important;
    padding: 0 5% !important;
    gap: 22px !important;
}

.shop-logo img {
    width: auto !important;
    height: 52px !important;
    max-height: 52px !important;
}

.shop-nav {
    gap: 22px !important;
}

.shop-nav a {
    padding: 21px 0 !important;
    font-size: 8px !important;
    font-weight: 600 !important;
    letter-spacing: .6px !important;
}

.shop-nav a.active::after {
    bottom: 10px !important;
}

.shop-search {
    width: 230px !important;
    height: 34px !important;
    padding: 0 11px !important;
}

.shop-search input {
    font-size: 10px !important;
}

.shop-account,
.shop-cart {
    width: 30px !important;
    height: 30px !important;
    font-size: 16px !important;
}


/* ===== CARDS SIZE ===== */

.category-card,
.empty-card {
    flex: 0 0 calc((100% - 56px) / 5) !important;
    width: calc((100% - 56px) / 5) !important;

    height: 325px !important;
    min-height: 325px !important;
    max-height: 325px !important;
}

.category-card-image {
    width: 100% !important;
    height: 245px !important;
    aspect-ratio: auto !important;
}

.category-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.category-card-info {
    height: 80px !important;
    min-height: 80px !important;
}


/* ===== ARROWS ===== */

.category-prev {
    left: -50px !important;
}

.category-next {
    right: -50px !important;
}

.hidden-arrow {
    visibility: hidden !important;
    pointer-events: none !important;
}

/* =========================================
   BOUTIQUE — SAME PLACEHOLDERS AS ACCUEIL
========================================= */

.category-track .product-placeholder {
    flex: 0 0 calc((100% - 56px) / 5) !important;
    width: calc((100% - 56px) / 5) !important;

    height: 325px !important;
    min-height: 325px !important;
    max-height: 325px !important;

    position: relative !important;
    overflow: hidden !important;

    border: 1px solid rgba(212,173,91,.55) !important;
}

.category-track .product-placeholder .placeholder-info {
    display: grid !important;
}

.category-track .product-placeholder .placeholder-center {
    display: flex !important;
}

.category-track .product-placeholder .placeholder-stage {
    display: block !important;
}

.category-track .product-placeholder .placeholder-light,
.category-track .product-placeholder .placeholder-smoke {
    display: block !important;
}

/* stop old empty-card design from interfering */
.category-track .empty-card::before,
.category-track .empty-card::after {
    content: none !important;
}

/* =========================================
   BOUTIQUE — FOOTER AT BOTTOM
========================================= */

html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.shop-footer {
    margin-top: auto;
    flex-shrink: 0;
}

/* =========================================
   BOUTIQUE — REMOVE EXTRA EMPTY SPACE
========================================= */

.catalog {
    padding-bottom: 20px !important;
}

.category-row {
    padding-bottom: 20px !important;
}

.category-row:last-child {
    padding-bottom: 20px !important;
}

.shop-footer {
    margin-top: 0 !important;
}

/* =========================================
   BOUTIQUE — REMOVE LARGE SPACE FOR REAL
========================================= */

body {
    display: block !important;
    min-height: 0 !important;
}

main {
    display: block !important;
    flex: none !important;
    min-height: 0 !important;
    height: auto !important;
}

.catalog {
    padding-top: 25px !important;
    padding-bottom: 10px !important;
}

.category-row,
.category-row:last-child {
    padding-top: 20px !important;
    padding-bottom: 15px !important;
}

.shop-footer {
    margin-top: 0 !important;
}

/* =========================================
   BOUTIQUE HEADER — SAME AS ACCUEIL
========================================= */

.topbar {
    height: 58px;
    min-height: 58px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    padding: 0 5%;

    background: #050505;
    border-bottom: 1px solid #1e1e1e;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo img {
    height: 52px;
    width: auto;
    display: block;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.desktop-nav a {
    position: relative;

    padding: 21px 0;

    color: #efefef;
    text-decoration: none;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .6px;
}

.desktop-nav a.active {
    color: #f0cf82;
}

.desktop-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 10px;

    height: 2px;

    background: #d4ad5b;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-search {
    width: 230px;
    height: 34px;

    padding: 0 11px;

    display: flex;
    align-items: center;
    gap: 8px;

    background: #080808;

    border: 1px solid #2c2c2c;
    border-radius: 7px;
}

.header-search input {
    flex: 1;

    border: 0;
    outline: 0;

    background: transparent;

    color: white;

    font-size: 10px;
}

.header-search span {
    color: #d4ad5b;
    font-size: 17px;
}

.header-icon {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border: 0;
    background: transparent;

    color: white;

    font-size: 16px;
}

/* =========================================
   ORVEX DZ — BIENTÔT CARD SAME AS ACCUEIL
========================================= */

.category-track .product-placeholder {
    position: relative !important;

    flex: 0 0 calc((100% - 56px) / 5) !important;
    width: calc((100% - 56px) / 5) !important;
    min-width: 0 !important;

    height: 325px !important;

    overflow: hidden !important;

    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(212, 173, 91, 0.16),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #090909 0%,
            #0c0c0c 62%,
            #080808 100%
        ) !important;

    border: 1px solid rgba(212, 173, 91, 0.75) !important;
}


/* GOLD VERTICAL DETAILS */

.category-track .product-placeholder::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 16px,
            rgba(212, 173, 91, 0.025) 17px
        );
}


/* TOP LIGHT */

.category-track .placeholder-light {
    position: absolute !important;

    top: -65px;
    left: 50%;

    width: 150px;
    height: 175px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(240, 207, 130, 0.38) 0%,
            rgba(212, 173, 91, 0.13) 36%,
            transparent 72%
        );

    filter: blur(13px);

    z-index: 1;
}


/* SMOKE */

.category-track .placeholder-smoke {
    position: absolute !important;

    width: 170px;
    height: 95px;

    z-index: 2;

    background:
        radial-gradient(
            circle,
            rgba(190, 160, 105, 0.42),
            rgba(105, 91, 67, 0.18) 46%,
            transparent 72%
        );

    filter: blur(22px);

    opacity: 0.7;

    pointer-events: none;
}

.category-track .smoke-left {
    left: -70px;
    top: 85px;

    transform: rotate(-12deg);
}

.category-track .smoke-right {
    right: -70px;
    bottom: 65px;

    transform: rotate(14deg);
}


/* CENTER */

.category-track .placeholder-center {
    position: absolute !important;

    top: 38% !important;
    left: 50% !important;

    transform: translate(-50%, -50%) !important;

    width: 100% !important;

    z-index: 5;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    text-align: center;
}

.category-track .placeholder-crown {
    margin-bottom: 9px !important;

    color: #d4ad5b !important;

    font-size: 18px !important;
}

.category-track .placeholder-brand {
    margin-bottom: 9px !important;

    color: #b7b7b7 !important;

    font-size: 8px !important;
    font-weight: 700 !important;

    letter-spacing: 3.5px !important;
}

.category-track .placeholder-center strong {
    color: #e3b84f !important;

    font-size: 14px !important;
    font-weight: 900 !important;

    letter-spacing: 3.5px !important;
}

.category-track .placeholder-center i {
    width: 32px !important;
    height: 1px !important;

    margin-top: 14px !important;

    display: block !important;

    background: #d4ad5b !important;
}


/* GOLDEN STAGE */

.category-track .placeholder-stage {
    position: absolute !important;

    left: 50% !important;
    bottom: 67px !important;

    width: 105px !important;
    height: 16px !important;

    transform: translateX(-50%) !important;

    border-radius: 50% !important;

    z-index: 4;

    display: block !important;

    background:
        linear-gradient(
            180deg,
            #2a251d,
            #080808
        ) !important;

    border-bottom: 2px solid #d4ad5b !important;

    box-shadow:
        0 6px 16px rgba(212, 173, 91, 0.32),
        inset 0 1px 4px rgba(240, 207, 130, 0.2) !important;
}


/* BOTTOM INFO */

.category-track .placeholder-info {
    position: absolute !important;

    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    min-height: 62px !important;

    padding: 9px 10px !important;

    z-index: 7;

    background: rgba(5, 5, 5, 0.96) !important;

    border-top:
        1px solid
        rgba(212, 173, 91, 0.18) !important;

    display: grid !important;

    grid-template-columns:
        1fr auto !important;

    grid-template-areas:
        "brand buy"
        "name buy"
        "price buy" !important;

    align-items: center !important;

    column-gap: 8px !important;
}


/* ORVEX DZ */

.category-track
.placeholder-info
> span:first-child {

    grid-area: brand;

    margin: 0 !important;

    color: #a8a8a8 !important;

    font-size: 7px !important;
    font-weight: 700 !important;

    letter-spacing: 2px !important;
}


/* BIENTÔT */

.category-track
.placeholder-info
> strong {

    grid-area: name;

    color: #f1f1f1 !important;

    font-size: 9px !important;
    font-weight: 900 !important;
}


/* PRICE */

.category-track
.placeholder-info
> b {

    grid-area: price;

    color: #e4b94f !important;

    font-size: 9px !important;
    font-weight: 900 !important;
}


/* ACHETER */

.category-track .placeholder-buy {
    grid-area: buy;

    min-width: 68px !important;
    height: 30px !important;

    margin: 0 !important;

    padding: 0 8px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border:
        1px solid
        rgba(212, 173, 91, 0.7) !important;

    color: #f5f5f5 !important;

    font-size: 7px !important;
    font-weight: 900 !important;

    letter-spacing: .3px !important;
}

/* =========================================
   BOUTIQUE HEADER — SAME SIZE AS ACCUEIL
========================================= */

.topbar {
    height: 80px !important;
    min-height: 80px !important;
}


/* LOGO */
.brand-logo img {
    width: 150px !important;
    height: auto !important;
    max-height: 62px !important;
}


/* NAV LINKS */
.desktop-nav {
    gap: 32px !important;
}

.desktop-nav a {
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 0.7px !important;

    padding: 31px 0 27px !important;
}


/* SEARCH */
.header-search {
    width: 310px !important;
    height: 45px !important;
    padding: 0 14px !important;
}

.header-search input {
    font-size: 13px !important;
}

.header-search span {
    font-size: 20px !important;
}


/* RIGHT ICONS */
.header-actions {
    gap: 11px !important;
}

.header-icon {
    width: 38px !important;
    height: 38px !important;

    font-size: 20px !important;
}

@media (min-width: 1200px) {
    body {
        zoom: 0.67;
    }
}

/* =========================================
   BOUTIQUE HEADER — SAME FINAL VALUES AS ACCUEIL
========================================= */

.topbar {
    height: 80px !important;
    min-height: 80px !important;
}


/* LOGO */
.brand-logo img {
    width: 150px !important;
    height: auto !important;
    max-height: 62px !important;
}


/* NAV */
.desktop-nav {
    gap: 32px !important;
}

.desktop-nav a {
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 0.7px !important;

    padding: 31px 0 27px !important;
}


/* SEARCH */
.header-search {
    width: 310px !important;
    height: 45px !important;
    padding: 0 14px !important;
}

.header-search input {
    font-size: 13px !important;
}

.header-search span {
    font-size: 20px !important;
}


/* ACTIONS */
.header-actions {
    gap: 11px !important;
}

.header-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 20px !important;
}

/* =========================================
   BOUTIQUE HEADER — SAME POSITION AS ACCUEIL
========================================= */

.brand-logo {
    transform: translateX(-50px) !important;
}

.desktop-nav {
    transform: translateX(-30px) !important;
}

.header-actions {
    transform: translateX(55px) !important;
}

/* =========================================================
   ORVEX DZ — BOUTIQUE HEADER EXACTLY LIKE ACCUEIL
========================================================= */

@media (min-width: 1200px) {

    body {
        zoom: 0.67 !important;
    }

    .topbar {
        width: 100% !important;

        height: 80px !important;
        min-height: 80px !important;

        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        align-items: center !important;

        gap: 34px !important;

        padding: 0 5% !important;

        background: rgba(3, 3, 3, .70) !important;

        border-bottom:
            1px solid rgba(255,255,255,.10) !important;
    }


    /* LOGO */
    .brand-logo {
        display: flex !important;
        align-items: center !important;

        transform: translateX(-50px) !important;
    }

    .brand-logo img {
        width: 150px !important;
        max-height: 62px !important;
        height: auto !important;

        display: block !important;
        object-fit: contain !important;
    }


    /* NAVIGATION */
    .desktop-nav {
        display: flex !important;
        align-items: center !important;

        gap: 32px !important;

        transform: translateX(-30px) !important;
    }

    .desktop-nav a {
        position: relative !important;

        padding: 31px 0 27px !important;

        color: #f2f2f2 !important;

        font-size: 14px !important;
        font-weight: 800 !important;
        letter-spacing: .7px !important;

        white-space: nowrap !important;
    }

    .desktop-nav a.active {
        color: #f0cf82 !important;
    }

    .desktop-nav a.active::after {
        content: "" !important;

        position: absolute !important;

        left: 0 !important;
        right: 0 !important;

        bottom: 18px !important;

        height: 2px !important;

        background: #d4ad5b !important;
    }


    /* RIGHT SIDE */
    .header-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;

        gap: 11px !important;

        transform: translateX(55px) !important;
    }


    /* SEARCH */
    .header-search {
        width: 310px !important;
        height: 45px !important;

        padding: 0 14px !important;

        display: flex !important;
        align-items: center !important;

        gap: 9px !important;

        border: 1px solid #292929 !important;
        border-radius: 7px !important;

        background: #0a0a0a !important;
    }

    .header-search input {
        flex: 1 !important;
        min-width: 0 !important;

        border: 0 !important;
        outline: 0 !important;

        background: transparent !important;

        color: white !important;

        font-size: 13px !important;
    }

    .header-search input::placeholder {
        color: #6f6f6f !important;
    }

    .header-search span {
        color: white !important;

        font-size: 20px !important;
    }


    /* ICONS */
    .header-icon {
        width: 38px !important;
        height: 38px !important;

        display: grid !important;
        place-items: center !important;

        border: 0 !important;

        background: transparent !important;

        color: white !important;

        font-size: 20px !important;
    }
}

/* =========================================
   BOUTIQUE HEADER — FINAL MICRO ALIGNMENT
========================================= */

@media (min-width: 1200px) {

    /* LOGO */
    .brand-logo {
        transform: translateX(-58px) !important;
    }

    /* MENU */
    .desktop-nav {
        transform: translateX(-38px) !important;
        gap: 32px !important;
    }

    /* SEARCH + ICONS */
    .header-actions {
        transform: translateX(62px) !important;
        gap: 8px !important;
    }

    /* SEARCH */
    .header-search {
        width: 325px !important;
        height: 45px !important;
    }

    /* ACCOUNT + CART */
    .header-icon {
        width: 36px !important;
        height: 38px !important;
    }
}

/* =========================================================
   ORVEX DZ — FINAL DESKTOP HEADER
   نفس القيم في HOME + BOUTIQUE
========================================================= */

@media (min-width: 1200px) {

    body {
        zoom: 0.67;
    }

    .topbar {
        width: 100%;
        height: 80px;
        min-height: 80px;

        display: grid;
        grid-template-columns: 150px 1fr auto;
        align-items: center;

        gap: 34px;
        padding: 0 5%;

        background: #050505;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .brand-logo {
        display: flex;
        align-items: center;
        transform: none;
    }

    .brand-logo img {
        width: 150px;
        height: 62px;
        max-height: 62px;
        object-fit: contain;
        display: block;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 32px;

        transform: none;
    }

    .desktop-nav a {
        position: relative;

        padding: 31px 0 27px;

        color: #f2f2f2;
        text-decoration: none;

        font-size: 14px;
        font-weight: 800;
        letter-spacing: .7px;

        white-space: nowrap;
    }

    .desktop-nav a.active {
        color: #f0cf82;
    }

    .desktop-nav a.active::after {
        content: "";

        position: absolute;
        left: 0;
        right: 0;
        bottom: 18px;

        height: 2px;

        background: #d4ad5b;
    }

    .header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;

        gap: 10px;

        transform: none;
    }

    .header-search {
        width: 310px;
        height: 45px;

        padding: 0 14px;

        display: flex;
        align-items: center;
        gap: 9px;

        background: #0a0a0a;

        border: 1px solid #292929;
        border-radius: 7px;
    }

    .header-search input {
        flex: 1;
        min-width: 0;

        border: 0;
        outline: 0;

        background: transparent;
        color: #fff;

        font-size: 13px;
    }

    .header-search span {
        font-size: 20px;
        color: #d4ad5b;
    }

    .header-icon {
        width: 38px;
        height: 38px;

        display: grid;
        place-items: center;

        padding: 0;
        border: 0;

        background: transparent;
        color: #fff;

        font-size: 20px;
    }
}

/* =========================================================
   ORVEX DZ — FIXED HEADER LAYOUT
========================================================= */

@media (min-width: 1200px) {

    body {
        zoom: 0.67 !important;
    }

    .topbar {
        width: 100% !important;
        height: 80px !important;
        min-height: 80px !important;

        display: flex !important;
        align-items: center !important;

        padding: 0 5% !important;
        gap: 0 !important;

        box-sizing: border-box !important;

        background: #050505 !important;
    }

    /* LOGO */
    .brand-logo {
        flex: 0 0 150px !important;

        display: flex !important;
        align-items: center !important;

        transform: none !important;
    }

    .brand-logo img {
        width: 150px !important;
        height: auto !important;
        max-height: 62px !important;
    }

    /* NAV */
    .desktop-nav {
        flex: 0 0 auto !important;

        display: flex !important;
        align-items: center !important;

        gap: 32px !important;

        margin-left: 34px !important;

        transform: none !important;
    }

    .desktop-nav a {
        padding: 31px 0 27px !important;

        font-size: 14px !important;
        font-weight: 800 !important;
        letter-spacing: .7px !important;

        white-space: nowrap !important;
    }

    .desktop-nav a.active::after {
        bottom: 18px !important;
    }

    /* RIGHT SIDE ALWAYS AT RIGHT */
    .header-actions {
        flex: 0 0 auto !important;

        display: flex !important;
        align-items: center !important;

        gap: 11px !important;

        margin-left: auto !important;

        transform: none !important;
    }

    .header-search {
        width: 310px !important;
        height: 45px !important;

        padding: 0 14px !important;
    }

    .header-search input {
        font-size: 13px !important;
    }

    .header-search span {
        font-size: 20px !important;
    }

    .header-icon {
        width: 38px !important;
        height: 38px !important;

        font-size: 20px !important;
    }
}

html {
    overflow-y: scroll !important;
}

/* CATEGORY TITLE مثل NOS COLLECTIONS */

.category-title-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.category-title-wrap h2 {
    margin: 0;
}

.category-gold-line {
    display: block;
    width: 48px;
    height: 2px;
    background: #d4ad5b;
    flex-shrink: 0;
}

/* WATCHES + GOLD LINE */

.category-title-wrap {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    width: auto !important;
}

.category-title-wrap h2 {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

/* إلغاء أي خط قديم تحت العنوان */
.category-title-wrap h2::after,
.category-heading h2::after {
    content: none !important;
    display: none !important;
}

/* الخط الجديد على اليمين */
.category-gold-line {
    display: block !important;
    width: 48px !important;
    height: 2px !important;
    background: #d4ad5b !important;
    flex: 0 0 48px !important;
}

/* =========================================
   FOOTER ALWAYS AT BOTTOM
========================================= */

html,
body {
    min-height: 100%;
}

body {
    min-height: calc(100vh / 0.67);
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer {
    margin-top: auto !important;
    flex-shrink: 0;
}

/* =========================================
   BOUTIQUE — FOOTER FIX FINAL
========================================= */

html {
    min-height: 100% !important;
}

body {
    min-height: calc(100vh / 0.67) !important;

    display: flex !important;
    flex-direction: column !important;
}

main {
    display: block !important;

    flex: 1 0 auto !important;

    min-height: 0 !important;
    height: auto !important;
}

.shop-footer {
    margin-top: auto !important;

    flex: 0 0 auto !important;
}