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

:root {
    --black: #050505;
    --panel: #0c0c0c;
    --panel2: #111;
    --line: #292929;
    --text: #f6f6f6;
    --muted: #9a9a9a;
    --gold: #d4ad5b;
    --gold2: #f0cf82;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}


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

.topbar {
    height: 80px;

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    z-index: 900;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 34px;

    padding: 0 5%;

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

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



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

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

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

.desktop-nav a {
    position: relative;

    padding: 31px 0 27px;

    color: #f2f2f2;
    text-decoration: none;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .5px;

    white-space: nowrap;

    transition: .2s ease;
}

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

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

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

    height: 2px;

    background: var(--gold);
}

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

    gap: 10px;
}

.header-search {
    width: 270px;
    height: 40px;

    padding: 0 13px;

    display: flex;
    align-items: center;

    gap: 9px;

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

    background: #0a0a0a;
}

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

    border: 0;
    outline: 0;

    background: transparent;
    color: white;

    font-size: 11px;
}

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

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

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

    display: grid;
    place-items: center;

    border: 0;

    background: transparent;
    color: white;

    font-size: 19px;

    cursor: pointer;

    transition: .2s ease;
}

.header-icon:hover {
    color: var(--gold);
}

.cart-button {
    position: relative;
}

.mobile-menu-button {
    display: none;
}


/* =========================
   DRAWER
========================= */

.menu-overlay {
    position: fixed;
    inset: 0;

    z-index: 950;

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

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    width: min(360px, 88vw);
    height: 100vh;

    transform: translateX(-105%);

    transition: .32s ease;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            180deg,
            rgba(212,173,91,.05),
            transparent 24%
        ),
        #0a0a0a;

    border-right: 1px solid #282828;
}

.drawer.active {
    transform: translateX(0);
}

.drawer-head {
    min-height: 80px;

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

    padding: 0 24px;

    border-bottom: 1px solid #282828;
}

.drawer-head span {
    color: var(--gold);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
}

.drawer-head button {
    border: 0;

    background: transparent;
    color: var(--gold);

    font-size: 24px;

    cursor: pointer;
}

.drawer-nav {
    padding: 18px 22px;

    display: flex;
    flex-direction: column;
}

.drawer-nav a {
    min-height: 67px;

    border-bottom: 1px solid #262626;

    padding: 0 8px;

    display: flex;
    align-items: center;

    gap: 16px;

    color: #eee;

    text-decoration: none;

    font-size: 17px;

    transition: .22s ease;
}

.drawer-nav a:hover {
    color: var(--gold2);

    padding-left: 15px;
}

.drawer-nav a span {
    width: 28px;

    text-align: center;

    color: var(--gold);

    font-size: 21px;
}

.drawer-social {
    margin-top: auto;

    padding: 20px 25px 30px;

    text-align: center;
}

.gold-rule {
    display: flex;
    align-items: center;

    gap: 10px;
}

.gold-rule span {
    height: 1px;

    flex: 1;

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

.gold-rule span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );
}

.gold-rule i {
    font-style: normal;

    color: var(--gold);
}

.drawer-social p {
    margin: 14px 0 18px;

    color: var(--gold);

    font-size: 12px;
    letter-spacing: 3px;
}

.social-icons {
    display: flex;
    justify-content: center;

    gap: 14px;
}

.social-icons a {
    width: 50px;
    height: 50px;

    border: 1px solid #745e33;
    border-radius: 50%;

    display: grid;
    place-items: center;

    text-decoration: none;

    color: var(--gold);

    font-size: 25px;
    font-weight: 800;
}

.ig {
    position: relative;

    display: block;

    width: 20px;
    height: 20px;

    border: 2px solid currentColor;
    border-radius: 6px;
}

.ig::before {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    border: 2px solid currentColor;
    border-radius: 50%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
}

.ig::after {
    content: "";

    position: absolute;

    right: 2px;
    top: 2px;

    width: 3px;
    height: 3px;

    background: currentColor;

    border-radius: 50%;
}

body.menu-open {
    overflow: hidden;
}


/* =========================
   HERO — LAYERED VERSION
========================= */

.hero {
    position: relative;

    height: 560px;

    overflow: hidden;

    background: #050505;
}


/* الخلفية */

.hero-bg {
    position: absolute;

    inset: 0;

    z-index: 1;

    background-image: url("hero-bg.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}


/* النص */

.hero-copy {
    position: absolute;

    left: 8%;
    top: 50%;

    z-index: 4;

    width: 39%;

    transform: translateY(-42%);
}

.hero-title-image {
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;

    margin-top: 8px;
    margin-bottom: 18px;

    object-fit: contain;
    object-position: left center;

    filter: drop-shadow(0 3px 8px rgba(0,0,0,.25));
}

.hero-season {
    margin-bottom: 14px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}


.hero-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    color: #fff;

    font-family: "Courier New", monospace;
    font-weight: 900;
    text-transform: uppercase;

    line-height: .95;
}

.hero-title .line {
    display: block;

    letter-spacing: 4px;

    text-shadow:
        1px 1px 0 rgba(255,255,255,.15),
        -1px -1px 0 rgba(0,0,0,.4);
}

.hero-title .line-1 {
    font-size: clamp(55px, 5vw, 82px);
    letter-spacing: 2px;
}

.hero-title .line-2 {
    margin-top: 10px;

    font-size: clamp(34px, 3vw, 48px);

    letter-spacing: 8px;
}

.hero-title .line-3 {
    margin-top: 10px;

    font-size: clamp(34px, 3vw, 48px);

    letter-spacing: 7px;
}

.hero-lead {
    max-width: 500px;

    margin: 20px 0 24px;

    color: #d0d0d0;

    font-size: 13px;

    line-height: 1.7;

    letter-spacing: 1px;
}


.hero-shop-btn {
    min-height: 46px;

    padding: 0 20px;

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

    gap: 18px;

    width: fit-content;

    margin: 18px auto 0;

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

    color: #fff;
    text-decoration: none;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}


/* الشخص */

.hero-person {
    position: absolute;
    z-index: 950;
    right: 20%;
    top: 18px;
    height: 585px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
}


/* اللوحة اليمنى */

.hero-side-panel {
    position: absolute;

    top: 80px;
    right: 0;
    bottom: 0;

    z-index: 3;

    width: 22%;

    padding: 70px 40px 35px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: transparent;
}


.hero-side-panel > p {
    color: rgba(255,255,255,.45);

    font-family: Impact, "Arial Black", sans-serif;

    font-size: 46px;

    line-height: .95;

    transform: rotate(-7deg);
}


.hero-side-info {
    display: flex;

    align-items: center;

    gap: 15px;

    color: #fff;

    font-size: 11px;

    line-height: 1.5;

    letter-spacing: 1px;
}


.hero-side-info > span {
    color: var(--gold);

    font-size: 34px;
}



/* =========================
   SECTIONS
========================= */

.section {
    width: min(92%, 1400px);

    margin: 0 auto;

    padding: 78px 0;
}

.section-title {
    margin-bottom: 34px;

    text-align: center;
}

.section-title p {
    margin-bottom: 8px;

    color: #777;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 4px;
}

.section-title h2 {
    color: var(--gold);

    font-size: clamp(28px, 3vw, 40px);
}

.section-title > span {
    display: block;

    width: 70px;

    height: 1px;

    margin: 15px auto 0;

    background: var(--gold);
}


/* =========================================
   NOS COLLECTIONS
========================================= */

.collections-showcase {
    background: transparent;
}

.featured-section {
    background: transparent;
}

.collections-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.collections-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.collections-title h2 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .2px;
}

.collections-title > span {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold);
}

.collections-head > a {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    color: #fff;
    text-decoration: none;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .4px;

    transition: .2s ease;
}

.collections-head > a:hover {
    color: var(--gold);
}


/* ROW */

.collections-row {
    display: grid;

    grid-template-columns: repeat(6, minmax(0, 1fr));

    gap: 14px;
}


/* CARD */

.collection-image-card {
    position: relative;

    height: 180px;

    overflow: hidden;

    border: 1px solid #333;

    background: #0a0a0a;

    text-decoration: none;

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

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

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


/* IMAGE */

.collection-image-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform .35s ease;
}

.collection-image-card:hover img {
    transform: scale(1.06);
}


/* DARK GRADIENT */

.collection-image-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.03) 20%,
            rgba(0,0,0,.28) 58%,
            rgba(0,0,0,.94) 100%
        );

    pointer-events: none;
}


/* TEXT */

.collection-overlay {
    position: absolute;

    left: 14px;
    right: 14px;
    bottom: 13px;

    z-index: 2;
}

.collection-overlay h3 {
    margin: 0 0 7px;

    color: #fff;

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

    line-height: 1;
}

.collection-overlay span {
    color: #fff;

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

    letter-spacing: .3px;

    transition: .2s ease;
}

.collection-image-card:hover .collection-overlay span {
    color: var(--gold);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .collections-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .collection-image-card {
        height: 210px;
    }
}


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

@media (max-width: 760px) {

    .collections-showcase {
        width: 100%;
        padding: 26px 14px 38px;
    }

    .collections-head {
        align-items: flex-end;
    }

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

    .collections-head > a {
        font-size: 8px;
    }

    .collections-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .collection-image-card {
        height: 185px;
    }

    .collection-overlay {
        left: 11px;
        bottom: 11px;
    }

    .collection-overlay h3 {
        font-size: 15px;
    }

    .collection-overlay span {
        font-size: 9px;
    }
}



/* =========================
   PRODUCTS
========================= */

.nouveautés {
    padding-top: 25px;
}

.slider-shell {
    display: flex;

    align-items: center;

    gap: 12px;
}

.slider-viewport {
    flex: 1;

    overflow: hidden;
}

.products-track {
    display: flex;

    gap: 16px;

    transition: transform .45s ease;
}

.product-card {
    flex:
        0
        0
        calc((100% - 48px) / 4);

    min-width: 0;

    overflow: hidden;

    border: 1px solid #292929;

    border-radius: 9px;

    background: #0d0d0d;

    text-decoration: none;

    transition: .28s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    border-color: #725d32;
}

.product-photo {
    position: relative;

    aspect-ratio: 1 / 1.08;

    overflow: hidden;

    background: #151515;
}

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

    object-fit: cover;

    display: block;

    transition: .35s ease;
}

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

.product-photo > span {
    position: absolute;

    top: 12px;
    left: 12px;

    padding: 7px 9px;

    background: #080808;

    border: 1px solid #66542f;

    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.product-content {
    padding: 15px 16px 18px;
}

.product-content small {
    color: #707070;

    font-size: 9px;

    letter-spacing: 2px;
}

.product-content h3 {
    min-height: 44px;

    margin-top: 8px;

    font-size: 15px;

    line-height: 1.45;
}

.product-content strong {
    display: inline-block;

    margin-top: 10px;

    color: var(--gold);

    font-size: 17px;
}

.slider-arrow {
    flex: 0 0 44px;

    width: 44px;

    height: 44px;

    border-radius: 50%;

    border: 1px solid #735e32;

    background: #090909;

    color: var(--gold);

    cursor: pointer;
}

.slider-arrow:hover {
    background: var(--gold);

    color: #080808;
}

.slider-dots {
    margin-top: 22px;

    display: flex;

    justify-content: center;

    gap: 8px;
}

.slider-dot {
    width: 8px;

    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #383838;

    cursor: pointer;
}

.slider-dot.active {
    background: var(--gold);
}


/* =========================
   TRUST
========================= */

.trust-bar {
    width: min(92%, 1400px);

    margin: 0 auto 50px;

    display: grid;

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

    border: 1px solid #262626;

    background: #0b0b0b;
}

.trust-bar article {
    min-height: 110px;

    padding: 24px;

    display: flex;

    align-items: center;

    gap: 16px;

    border-right:
        1px solid #262626;
}

.trust-bar article:last-child {
    border-right: 0;
}

.trust-bar article > span {
    color: var(--gold);

    font-size: 24px;
}

.trust-bar strong {
    display: block;

    margin-bottom: 5px;

    font-size: 12px;

    letter-spacing: 1px;
}

.trust-bar p {
    color: #777;

    font-size: 11px;
}


/* =========================
   CONTACT
========================= */

.contact {
    padding: 90px 5%;

    text-align: center;

    border-top: 1px solid #232323;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(212,173,91,.06),
            transparent 35%
        ),
        #070707;
}

.contact > p {
    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 5px;
}

.contact h2 {
    margin-top: 14px;

    font-size:
        clamp(30px, 4vw, 54px);
}

.contact-links {
    margin-top: 30px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
}

.contact-links a {
    padding: 12px 18px;

    border: 1px solid #353535;

    color: #aaa;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 2px;
}

.contact-links a:hover {
    border-color: #725d32;

    color: var(--gold);
}

footer {
    padding: 28px 5%;

    text-align: center;

    border-top: 1px solid #1d1d1d;

    color: #6f6f6f;

    font-size: 11px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1180px) {

    .topbar {
        gap: 18px;

        padding: 0 3%;
    }

    .brand-logo img {
        width: 125px;
    }

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

.desktop-nav a {
    position: relative;

    padding: 31px 0 27px;

    color: #f2f2f2;
    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;

    white-space: nowrap;

    transition: .2s ease;
}

    .header-search {
        width: 210px;
    }

    .hero {
        grid-template-columns:
            44% 56%;
    }

    .hero-copy {
        padding-left: 4vw;
    }

    .hero h1 {
        font-size:
            clamp(48px, 5.4vw, 68px);
    }

    .collection-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .product-card {
        flex-basis:
            calc((100% - 16px) / 2);
    }
}


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

@media (max-width: 860px) {

    .topbar {
        height: 72px;

        grid-template-columns:
            auto 1fr auto;

        padding: 0 16px;

        gap: 14px;
    }

    .brand-logo img {
        width: 120px;

        max-height: 54px;
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-button {
        justify-self: end;

        width: 42px;

        height: 42px;

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 5px;

        border: 1px solid #303030;

        border-radius: 50%;

        background: #0b0b0b;

        cursor: pointer;
    }

    .mobile-menu-button span {
        display: block;

        width: 18px;

        height: 2px;

        background: var(--gold);

        border-radius: 4px;
    }

    .hero {
        height: auto;

        min-height: 0;

        padding-top: 72px;

        display: flex;

        flex-direction: column;
    }

    .hero-visual {
        order: 1;

        height: 390px;
    }

    .hero-visual::before {
        background:
            linear-gradient(
                0deg,
                #050505 0%,
                rgba(5,5,5,.08) 45%,
                transparent 70%
            );
    }

    .hero-visual img {
        object-position: 62% center;
    }

    .hero-copy {
        order: 2;

        padding:
            38px 20px 48px;
    }

    .hero h1 {
        font-size: 48px;

        line-height: .9;

        letter-spacing: -1px;
    }

    .hero-lead {
        margin: 20px 0 24px;

        font-size: 13px;
    }

    .hero-shop-btn {
        width: 100%;
    }

    .section {
        width: 100%;

        padding: 62px 14px;
    }

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

    .product-card {
        flex-basis: 100%;
    }

    .slider-shell {
        gap: 7px;
    }

    .slider-arrow {
        flex-basis: 38px;

        width: 38px;

        height: 38px;
    }

    .trust-bar {
        width:
            calc(100% - 28px);

        grid-template-columns: 1fr;
    }

    .trust-bar article {
        border-right: 0;

        border-bottom:
            1px solid #262626;
    }

    .trust-bar article:last-child {
        border-bottom: 0;
    }
}

/* =========================================
   COLLECTION EN VEDETTE — FINAL VERSION
   5 PRODUITS + NEW SEASON
   Même alignement que NOS COLLECTIONS
========================================= */

.featured-section {
    width: 100%;
    margin: 0;
    padding: 28px 5% 22px;
    background: transparent;
}

.featured-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.featured-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.featured-title h2 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .2px;
}

.featured-title > span {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold);
}

.featured-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .4px;
    transition: .2s ease;
}

.featured-heading > a:hover {
    color: var(--gold);
}

/* نفس 6 أعمدة NOS COLLECTIONS */
.featured-layout {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
    width: 100%;
}

/* منطقة المنتجات تشغل أول 5 أعمدة */
.featured-products {
    position: relative;
    grid-column: 1 / 6;
    width: 100%;
    min-width: 0;
}

/* نترك ممراً حقيقياً للسهم الأيمن داخل منطقة المنتجات */
.featured-products .slider-viewport {
    width: calc(100% - 54px);
    min-width: 0;
    overflow: hidden;
}

/* خمس بطاقات فقط */
.featured-products .products-track {
    width: 100%;
    display: flex;
    gap: 14px;
    margin: 0;
    transition: transform .45s ease;
    will-change: transform;
}

.featured-products .product-card,
.featured-products .product-placeholder {
    flex: 0 0 calc((100% - 56px) / 5);
    width: calc((100% - 56px) / 5);
    min-width: 0;
    height: 325px;
    border-radius: 2px;
    overflow: hidden;
}

/* المنتج الحقيقي */
.featured-products .product-card {
    display: flex;
    flex-direction: column;
    background: #0b0b0b;
    border: 1px solid #2b2b2b;
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease;
}

.featured-products .product-card:hover {
    transform: translateY(-3px);
    border-color: #8b6c2f;
}

.featured-products .product-photo {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    background: #151515;
}

.featured-products .product-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .3s ease;
}

.featured-products .product-card:hover .product-photo img {
    transform: scale(1.03);
}

.featured-products .product-badge {
    position: absolute;
    top: 9px;
    left: 9px;
    z-index: 3;
    padding: 3px 6px;
    border: 1px solid #9d7926;
    background: rgba(0,0,0,.82);
    color: var(--gold2);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.featured-products .product-content {
    flex: 0 0 67px;
    padding: 9px 10px 10px;
    background: rgba(5,5,5,.97);
    border-top: 1px solid rgba(212,173,91,.18);
}

.featured-products .product-content h3 {
    min-height: 0;
    margin: 0 0 8px;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: .2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-products .product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.featured-products .product-content strong {
    margin: 0;
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
}

.featured-products .product-cart {
    min-width: 66px;
    height: 30px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212,173,91,.7);
    color: #fff;
    font-size: 0;
}

.featured-products .product-cart::after {
    content: "🛒 ACHETER";
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .3px;
}

/* بطاقة الانتظار */
.featured-products .product-placeholder {
    position: relative;
    background:
        radial-gradient(circle at 50% 16%, rgba(212,173,91,.18), transparent 28%),
        linear-gradient(180deg, #090909 0%, #0c0c0c 62%, #080808 100%);
    border: 1px solid rgba(212,173,91,.72);
}

.featured-products .product-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 16px,
            rgba(212,173,91,.025) 17px
        );
}

.placeholder-light {
    position: absolute;
    top: -65px;
    left: 50%;
    width: 150px;
    height: 175px;
    transform: translateX(-50%);
    background: radial-gradient(
        ellipse,
        rgba(240,207,130,.38) 0%,
        rgba(212,173,91,.13) 36%,
        transparent 72%
    );
    filter: blur(13px);
    z-index: 1;
}

.placeholder-smoke {
    position: absolute;
    z-index: 2;
    width: 170px;
    height: 95px;
    pointer-events: none;
    opacity: .72;
    filter: blur(22px);
    background: radial-gradient(
        circle,
        rgba(190,160,105,.42),
        rgba(105,91,67,.18) 46%,
        transparent 72%
    );
}

.smoke-left {
    left: -70px;
    top: 90px;
    transform: rotate(-12deg);
}

.smoke-right {
    right: -70px;
    bottom: 72px;
    transform: rotate(14deg);
}

.placeholder-center {
    position: absolute;
    top: 39%;
    left: 50%;
    width: 100%;
    z-index: 5;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.placeholder-crown {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 18px;
    line-height: 1;
}

.placeholder-brand {
    margin-bottom: 9px;
    color: #b7b7b7;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3.4px;
}

.placeholder-center strong {
    color: #e3b84f;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3.4px;
}

.placeholder-center i {
    width: 32px;
    height: 1px;
    margin-top: 14px;
    background: var(--gold);
}

.placeholder-stage {
    position: absolute;
    left: 50%;
    bottom: 68px;
    width: 105px;
    height: 16px;
    z-index: 4;
    transform: translateX(-50%);
    border-radius: 50%;
    background: linear-gradient(180deg, #2a251d, #080808);
    border-bottom: 2px solid var(--gold);
    box-shadow:
        0 6px 16px rgba(212,173,91,.32),
        inset 0 1px 4px rgba(240,207,130,.2);
}

.placeholder-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 62px;
    z-index: 7;
    padding: 9px 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "brand buy"
        "name buy"
        "price buy";
    align-items: center;
    column-gap: 8px;
    background: rgba(5,5,5,.97);
    border-top: 1px solid rgba(212,173,91,.18);
}

.placeholder-info > span:first-child {
    grid-area: brand;
    margin: 0;
    color: #a8a8a8;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 2px;
}

.placeholder-info > strong {
    grid-area: name;
    color: #f1f1f1;
    font-size: 9px;
    font-weight: 900;
}

.placeholder-info > b {
    grid-area: price;
    color: var(--gold);
    font-size: 9px;
    font-weight: 900;
}

.placeholder-buy {
    grid-area: buy;
    min-width: 68px;
    height: 30px;
    margin: 0 !important;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212,173,91,.7);
    color: #f5f5f5 !important;
    font-size: 7px !important;
    font-weight: 900 !important;
    letter-spacing: .3px !important;
    pointer-events: none;
}

/* NEW SEASON تحت SACOCHES مباشرة */
.featured-promo {
    position: relative;
    grid-column: 6;
    width: 100%;
    min-width: 0;
    height: 325px;
    min-height: 325px;
    max-height: 325px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #8b6c2f;
    border-radius: 2px;
    text-decoration: none;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.90) 0%,
            rgba(0,0,0,.67) 42%,
            rgba(0,0,0,.08) 100%
        ),
        url("promo-sneakers.jpg");
    background-size: cover;
    background-position: center;
}

.featured-promo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.14) 100%);
}

.featured-promo .promo-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    padding: 22px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* NEW SEASON في الأعلى */
.featured-promo .promo-content h3 {
    margin: 0;

    color: #fff;

    font-size: 28px;
    font-weight: 900;
    line-height: .92;
}

/* SNEAKERS COLLECTION تحت العنوان */
.featured-promo .promo-content p {
    margin: 10px 0 0;

    color: var(--gold2);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .6px;
}

/* DÉCOUVRIR في الأسفل */
.featured-promo .promo-button {
    margin-top: auto;

    min-height: 38px;
    padding: 0 15px;

    display: inline-flex;
    align-items: center;
    gap: 16px;

    border: 1px solid #fff;

    color: #fff;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .5px;
}

.featured-promo .promo-content h3 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: .92;
}

.featured-promo .promo-content p {
    margin: 10px 0 17px;
    color: var(--gold2);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .6px;
}

.featured-promo .promo-button {
    min-height: 38px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .5px;
}

/* الأسهم */
.featured-prev,
.featured-next {
    position: absolute;
    top: 50%;
    z-index: 40;
    width: 42px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212,173,91,.78);
    border-radius: 4px;
    background: rgba(8,8,8,.96);
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    transform: translateY(-50%);
    opacity: 1;
    pointer-events: auto;
    transition: .2s ease;
}

.featured-prev:hover,
.featured-next:hover {
    background: var(--gold);
    color: #080808;
}

/* الأيسر خارج أول منتج */
.featured-prev {
    left: -50px;
}

/* الأيمن في الممر بين المنتج الخامس و NEW SEASON */
.featured-next {
    right: 2px;
}

.featured-section .slider-dots {
    display: none;
}

/* TABLET */
@media (max-width: 1180px) {
    .featured-section {
        width: 100%;
        padding-left: 3%;
        padding-right: 3%;
    }

    .featured-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .featured-products,
    .featured-promo {
        grid-column: 1;
    }

    .featured-products .slider-viewport {
        width: 100%;
    }

    .featured-products .product-card,
    .featured-products .product-placeholder {
        flex-basis: calc((100% - 28px) / 3);
        width: calc((100% - 28px) / 3);
    }

    .featured-promo {
        height: 220px;
        min-height: 220px;
        max-height: 220px;
    }

    .featured-prev {
        left: 8px;
    }

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

/* MOBILE */
@media (max-width: 860px) {
    .featured-section {
        width: 100%;
        padding: 24px 14px;
    }

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

    .featured-heading > a {
        font-size: 8px;
    }

    .featured-products .product-card,
    .featured-products .product-placeholder {
        flex: 0 0 78%;
        width: 78%;
    }

    .featured-promo {
        height: 220px;
        min-height: 220px;
        max-height: 220px;
    }
}

main {
    background:
        linear-gradient(
            135deg,
            #3a3a3a 0%,
            #242424 45%,
            #151515 100%
        );
}

/* =========================================
   ORVEX DZ — LUXURY DOUBLE WAVE
========================================= */


/* =========================================
   ORVEX DZ — FABRIC WAVE
========================================= */

.hero-wave {
    position: absolute;

    left: 0;
    bottom: -30px;

    width: 100%;
    height: 92px;

    z-index: 970;

    display: block;

    pointer-events: none;
}


/* الموجة الخلفية */

.hero-wave .wave-back {
    fill: #292929;

    opacity: .72;

    stroke: rgba(255, 255, 255, .08);
    stroke-width: 1;
}


/* الموجة الأمامية */

.hero-wave .wave-front {
    fill: #202020;

    stroke: rgba(212, 173, 91, .10);
    stroke-width: 1;
}


/* القسم التالي */

.collections-showcase {
    position: relative;

    width: 100%;
    margin: 0;

    padding: 25px 5% 42px;

    background:
        linear-gradient(
            180deg,
            #202020 0%,
            #232323 55%,
            #202020 100%
        );
}
main {
    background:
        linear-gradient(
            180deg,
            #202020 0%,
            #222222 45%,
            #1f1f1f 100%
        );
}


/* NAVBAR FINAL SIZE */

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

.desktop-nav a {
    font-size: 8px !important;
    font-weight: 600 !important;
    letter-spacing: 0.6px !important;
}

/* RIGHT HEADER — SMALLER */

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

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

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

.header-actions {
    gap: 6px !important;
}

.header-icon {
    width: 30px !important;
    height: 30px !important;
    font-size: 16px !important;
}

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

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

.desktop-nav {
    gap: 32px !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-actions {
    gap: 11px !important;
}

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

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

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

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

/* =========================================================
   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;
}