 :root {
        --text-dark: #111;
        --text-muted: #6b6b6b;
        --border-color: #e2e2e2;
        --link-color: #1a3f7a;
        --panel-bg: #f4f4f4;
    }

    .search-spinner {
    display: none;
    text-align: center;
    padding: 30px 0;
    font-size: 24px;
}

.common_btn:hover{
    background: #fff!important;
    color: #000!important;
}

.common_btn_rev:hover{
    background: #000;
    color: #fff;
}

.wishlist-a-tag:hover{
    text-decoration: none!important;
}

.search-spinner i {
    animation: fa-spin 1s infinite linear;
}

    .bag-page .container-fluid{
        width:70%;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        color: var(--text-dark);
        margin: 0;
    }

    .bag-page {
        padding: 40px 0 60px;
    }

    .bag-row {
        display: flex;
        align-items: flex-start;
    }

    .bag-col {
        flex: 0 0 58%;
        max-width: 58%;
        padding: 0 48px 0 0;
    }

    .summary-col {
        flex: 0 0 42%;
        max-width: 42%;
        background: var(--panel-bg);
        padding: 40px 48px;
        min-height: 100%;
    }

    .page-title {
        font-size: 1.6rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 24px;
    }

    /* ---------- Shipment header ---------- */

    .shipment-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }

    .shipment-label {
        font-size: 12.5px;
        font-weight: 700;
        color: var(--link-color);
        white-space: nowrap;
    }

    .shipment-divider {
        flex: 1;
        height: 1px;
        background: var(--border-color);
    }

    .shipment-origin {
        font-size: 12.5px;
        color: var(--text-muted);
        white-space: nowrap;
    }

    .stock-pill {
        display: inline-block;
        border: 1px solid var(--border-color);
        border-radius: 3px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        padding: 4px 10px;
        margin-bottom: 16px;
        color: var(--text-dark);
    }

    /* ---------- Cart item ---------- */

    .cart-item {
        display: flex;
        gap: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 24px;
    }

    .item-img-wrap {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
        background: #fff;
        border: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .item-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .item-details {
        flex: 1;
        min-width: 0;
    }

    .item-top-row {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 6px;
    }

    .item-name {
        font-size: 13.5px;
        font-weight: 600;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        line-height: 1.4;
    }

    .item-price {
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
    }

    .item-brand {
        font-size: 12.5px;
        color: var(--link-color);
        margin-bottom: 8px;
    }

    .item-colour {
        font-size: 12.5px;
        color: var(--text-muted);
        margin-bottom: 14px;
    }

    .item-action-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 10px;
    }

    .qty-select {
        width: 64px;
        padding: 8px 10px;
        border: 1px solid var(--border-color);
        border-radius: 3px;
        font-size: 13px;
        background: #fff;
    }

    .item-links {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .item-link-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        background: none;
        border: none;
        font-size: 12.5px;
        font-weight: 600;
        color: var(--text-dark);
        cursor: pointer;
        padding: 0;
        transition: color 0.2s ease;
    }

    .item-link-btn:hover {
        color: #c41e3a;
    }

    .item-link-btn.wishlist-link:hover {
        color: #e0245e;
    }

    .item-link-btn i {
        font-size: 13px;
    }

    .estimated-delivery-row {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: var(--text-muted);
    }

    .estimated-delivery-row .delivery-dates {
        color: var(--link-color);
        font-weight: 600;
    }

    /* ---------- Why shop with us ---------- */

    .why-shop-box {
        background: var(--panel-bg);
        border-radius: 4px;
        padding: 28px 32px;
        margin-top: 8px;
    }

    .why-shop-heading {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .why-shop-item {
        display: flex;
        gap: 16px;
        margin-bottom: 20px;
    }

    .why-shop-item:last-child {
        margin-bottom: 0;
    }

    .why-shop-item i {
        font-size: 20px;
        color: var(--text-dark);
        width: 22px;
        flex-shrink: 0;
        text-align: center;
        margin-top: 2px;
    }

    .why-shop-title {
        font-size: 13.5px;
        font-weight: 700;
        margin-bottom: 2px;
    }

    .why-shop-caption {
        font-size: 12.5px;
        color: var(--text-muted);
    }

    /* ---------- Summary column ---------- */

    .summary-heading {
        font-size: 1.4rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 28px;
    }

    .summary-line {
        display: flex;
        justify-content: space-between;
        font-size: 13.5px;
        margin-bottom: 14px;
    }

    .summary-divider {
        border: none;
        border-top: 1px solid var(--border-color);
        margin: 16px 0;
    }

    .summary-total-line {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 4px;
    }

    .summary-total-label {
        font-size: 15px;
        font-weight: 700;
    }

    .summary-total-value {
        font-size: 17px;
        font-weight: 700;
    }

    .summary-duties-note {
        font-size: 12px;
        color: var(--text-muted);
        text-align: right;
        margin-bottom: 28px;
    }

    .btn-checkout {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 16px 10px;
        background: #111;
        color: #fff;
        border: none;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.2s ease;
        margin-bottom: 24px;
    }



    /* ---------- Discount accordion ---------- */

    .discount-toggle {
        width: 100%;
        background: none;
        border: none;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 2px;
        font-size: 13.5px;
        color: var(--text-dark);
        cursor: pointer;
        margin-bottom: 24px;
    }

    .discount-toggle i {
        font-size: 13px;
        transition: transform 0.25s ease;
    }

    .discount-toggle.open i {
        transform: rotate(180deg);
    }

    .discount-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: -14px;
        margin-bottom: 0;
    }

    .discount-body-inner {
        display: flex;
        gap: 10px;
        padding-bottom: 24px;
    }

    .discount-input {
        flex: 1;
        padding: 12px 14px;
        border: 1px solid var(--border-color);
        border-radius: 3px;
        font-size: 13px;
    }

    .discount-apply-btn {
        padding: 0 20px;
        background: #111;
        color: #fff;
        border: none;
        font-size: 12.5px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        cursor: pointer;
    }

    /* ---------- Payment icons ---------- */

    .payment-icons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 28px;
    }

    .payment-icon {
        width: 58px;
        height: 38px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        font-size: 10px;
        font-weight: 700;
        color: var(--text-dark);
        overflow: hidden;
    }

    .payment-icon img {
        max-width: 100%;
        max-height: 100%;
    }

    /* ---------- Free returns ---------- */

    .free-returns-block {
        text-align: center;
        margin-top: 8px;
    }

    .free-returns-title {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .free-returns-link {
        font-size: 12.5px;
        color: var(--text-muted);
        text-decoration: none;
    }

    .free-returns-link:hover {
        text-decoration: underline;
    }

    /* ---------- Mobile ---------- */

    @media (max-width: 991.98px) {
        .bag-row {
            flex-direction: column;
        }

        .bag-col,
        .summary-col {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 0;
        }

        .bag-col {
            padding-bottom: 32px;
        }

        .summary-col {
            padding: 32px 24px;
        }
    }

    @media (max-width: 575.98px) {
        .bag-page {
            padding: 24px 0 40px;
        }

        .page-title,
        .summary-heading {
            font-size: 1.25rem;
        }

        .cart-item {
            gap: 14px;
        }

        .item-img-wrap {
            width: 72px;
            height: 72px;
        }

        .item-top-row {
            flex-direction: column;
            gap: 4px;
        }

        .item-action-row {
            flex-direction: column;
            align-items: flex-start;
        }

        .why-shop-box {
            padding: 22px;
        }

        .summary-col {
            padding: 28px 18px;
        }

        .payment-icon {
            width: 50px;
            height: 34px;
        }
    }
        /* CARTVIEW END */
        /* CART START */
         :root {
        --text-dark: #111;
        --text-muted: #6b6b6b;
        --border-color: #e2e2e2;
        --link-color: #1a3f7a;
        --low-stock: #c0392b;
    }

            body {
            margin: 0;
            background: #f7f7f7;
            font-family: Arial, Helvetica, sans-serif;
            color: #000;
        }

        .mission-review-section .container-fluid{
            width: 60%;
        }

        /* =========================
           Main Section
        ========================= */

        .mission-review-section {
            padding: 20px 0;
        }

        .mission-review-wrapper {
            display: flex;
            min-height: 470px;
            background: #fff;
        }

        /* =========================
           Left Side - Mission
        ========================= */

        .mission-side {
            position: relative;
            width: 50%;
            min-height: 470px;

            background-image:
                url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1200&q=85");

            background-size: cover;
            background-position: center;
        }



        .mission-title {
            margin: 0 0 8px;

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

            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .mission-description {
            margin: 0 0 8px;

            font-size: 15px;
            line-height: 1.7;

            color: #444;
        }

        .mission-link {
            color: #000;
            font-size: 14px;
            font-weight: 500;

            text-decoration: underline;
        }

        .mission-link:hover {
            color: #555;
        }

        /* =========================
           Right Side - Reviews
        ========================= */

        .review-side {
            width: 50%;

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

            background: #fff;
        }

        .review-content {
            width: 100%;
            max-width: 390px;
            padding: 40px 20px;
        }

        .review-heading {
            margin-bottom: 22px;

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

            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* =========================
           Review Slider
        ========================= */

        .review-slider {
            position: relative;
        }

        .review-item {
            display: none;
        }

        .review-item.active {
            display: block;
        }

        .review-top {
            display: flex;
            align-items: center;
            justify-content: space-between;

            margin-bottom: 14px;
        }

        .review-stars {
            display: flex;
            gap: 3px;
        }

        .review-stars i {
            font-size: 15px;
        }

        .review-date {
            font-size: 11px;
            color: #777;
        }

        .review-text {
            margin: 0;

            font-size: 15px;
            line-height: 1.65;
            font-weight: 400;
        }

        /* =========================
           Navigation
        ========================= */

        .review-navigation {
            position: absolute;

            top: 45%;
            left: -45px;
            right: -45px;

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

            pointer-events: none;
        }

        .review-btn {
            width: 25px;
            height: 25px;

            border: none;
            border-radius: 50%;

            background: #f5f5f5;

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

            cursor: pointer;

            pointer-events: auto;

            transition: all 0.2s ease;
        }

        .review-btn:hover {
            background: #e5e5e5;
        }

        .review-btn i {
            font-size: 11px;
        }

        /* =========================
           Trustpilot
        ========================= */

        .trustpilot {
            margin-top: 10px;
        }

        .trustpilot-description {
            font-size: 11px;
            color: #777;
            margin-bottom: 3px;
        }

        .trustpilot-brand {
            display: flex;
            align-items: center;
            gap: 5px;

            font-size: 13px;
            font-weight: 600;
        }

        .trustpilot-star {
            position: relative;

            width: 17px;
            height: 17px;

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

            background: #00b67a;

            color: #fff;

            font-size: 11px;
        }

        .trustpilot-name {
            font-weight: 600;
        }

        .displaying-reviews {
            margin-top: 8px;

            font-size: 11px;
            color: #222;
        }

        /* =========================
           Responsive
        ========================= */

        @media (max-width: 991.98px) {

            .mission-review-wrapper {
                flex-direction: column;
            }

            .mission-side,
            .review-side {
                width: 100%;
            }

            .mission-side {
                min-height: 450px;
            }

            .review-side {
                min-height: 350px;
            }

            .review-content {
                max-width: 500px;
            }

            .review-navigation {
                left: -35px;
                right: -35px;
            }
        }

        @media (max-width: 575.98px) {

            .mission-review-section {
                padding: 10px;
            }

            .mission-side {
                min-height: 400px;
            }

            .mission-overlay {
                left: 20px;
                right: 20px;

                width: auto;
                max-width: none;

                padding: 22px;
            }

            .mission-title {
                font-size: 14px;
            }

            .mission-description {
                font-size: 14px;
            }


            .review-heading {
                font-size: 14px;
            }

            .review-text {
                font-size: 14px;
            }

            .review-navigation {
                left: -20px;
                right: -20px;
            }
        }

    /* ---------- Recently Viewed ---------- */

.recently-viewed-section {
    padding: 40px 0 30px;
}

.rv-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.rv-title {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.rv-slider {
    overflow: hidden;
    position: relative;
}

.rv-track {
    display: flex;
    gap: 24px;
    transition: transform 0.35s ease;
}

.rv-card {
    flex: 0 0 calc((100% - 96px) / 5);
    min-width: 0;
}

.rv-img-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    background: #f6f6f6;
    overflow: hidden;
    margin-bottom: 12px;
}

.rv-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.5s ease;
}

.rv-img-front {
    opacity: 1;
    z-index: 2;
}

.rv-img-back {
    opacity: 0;
    z-index: 1;
}

.rv-card:hover .rv-img-front {
    opacity: 0;
    transform: scale(1.04);
}

.rv-card:hover .rv-img-back {
    opacity: 1;
    transform: scale(1.04);
}

.rv-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 4px;
}

.rv-brand {
    font-size: 12.5px;
    color: var(--link-color);
    margin-bottom: 4px;
}

.rv-price {
    font-size: 13px;
    font-weight: 600;
}

/* ---------- Looking for more ---------- */

.looking-more-section {
    padding: 20px 0 40px;
}

.lm-heading {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.lm-subheading {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.lm-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.lm-img-wrap {
    aspect-ratio: 5 / 4;
    background: #eee;
    overflow: hidden;
    margin-bottom: 12px;
}

.lm-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lm-card:hover .lm-img-wrap img {
    transform: scale(1.05);
}

.lm-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--link-color);
    margin-bottom: 2px;
}

.lm-caption {
    font-size: 12.5px;
    color: var(--text-muted);
}

/* ---------- Mission + Reviews ---------- */

.mission-section {
    background: #f4f4f4;
    padding: 50px 0;
}

.mission-image-wrap {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
}

.mission-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-overlay {
    position: absolute;
    left: 11%;
    bottom: 29%;
    background: #fff;
    padding: 22px 24px;
    max-width: 434px;
}

.mission-overlay-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mission-overlay-text {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.mission-overlay-text a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: underline;
}

.reviews-panel {
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.reviews-heading {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.review-slide {
    display: none;
}

.review-slide.active {
    display: block;
}

.review-stars {
    color: #111;
    font-size: 13px;
    margin-bottom: 8px;
}

.review-meta {
    float: right;
    font-size: 12px;
    color: var(--text-muted);
}

.review-title {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 6px;
    clear: both;
}

.review-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 18px;
}

.review-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-nav-arrows {
    display: flex;
    gap: 16px;
}

.review-nav-arrows button {
    background: none;
    border: none;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.review-nav-arrows button:hover {
    opacity: 0.6;
}

.review-source {
    font-size: 12px;
    color: var(--text-muted);
}

.review-source strong {
    color: var(--text-dark);
}

@media (max-width: 991.98px) {
    .rv-card {
        flex: 0 0 calc((100% - 48px) / 3);
    }

    .mission-image-wrap {
        margin-bottom: 24px;
    }

    .reviews-panel {
        padding-left: 0;
    }
}

@media (max-width: 767.98px) {
    .rv-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .mission-overlay {
        left: 14px;
        right: 14px;
        bottom: 85px;
        max-width: none;
    }

    .mission-section {
        padding: 32px 0;
    }
}

     .col-lg-7 {
        position: sticky;
        top: 24px;
        align-self: flex-start;
        max-height: calc(100vh - 48px);
        overflow-y: auto;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        color: var(--text-dark);
    }

    .pdp-page {
        padding: 24px 0 60px;
    }

    /* ---------- Breadcrumb ---------- */

    .breadcrumb-nav {
        font-size: 12.5px;
        color: var(--text-muted);
        margin-bottom: 20px;
    }

    .breadcrumb-nav a {
        color: var(--text-muted);
        text-decoration: none;
    }

    .breadcrumb-nav a:hover {
        text-decoration: underline;
        color: var(--text-dark);
    }

    /* ---------- Gallery ---------- */

    .gallery-row {
        display: flex;
        gap: 16px;
    }

    .thumb-col {
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 0 0 76px;
    }

    .thumb-item {
        width: 76px;
        height: 76px;
        border: 1px solid var(--border-color);
        background: #fff;
        cursor: pointer;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color 0.2s ease;
    }

    .thumb-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .thumb-item.active {
        border-color: #111;
        border-width: 2px;
    }

    .main-image-col {
        flex: 1;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 480px;
    }

    .main-image-wrap {
        width: 100%;
        max-width: 420px;
        aspect-ratio: 4 / 5;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .main-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .gallery-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);

        width: 36px;
        height: 36px;

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

        background: transparent;
        border: none;
        color: var(--text-dark);
        font-size: 18px;
        cursor: pointer;

        transition: opacity 0.2s ease;
    }

    .gallery-arrow:hover {
        opacity: 0.6;
    }

    .gallery-arrow.prev {
        left: -6px;
    }

    .gallery-arrow.next {
        right: -6px;
    }

    /* ---------- Product Info ---------- */

    .product-info-col {
        padding-left: 8px;
    }

    .product-title-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 14px;
    }

    .product-title {
        font-size: 1.4rem;
        font-weight: 600;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    .wishlist-heart {
        background: none;
        border: none;
        font-size: 20px;
        color: var(--text-dark);
        cursor: pointer;
        flex-shrink: 0;
        transition: transform 0.15s ease, color 0.15s ease;
    }

    .wishlist-heart:hover {
        transform: scale(1.1);
    }

    .wishlist-heart.active {
        color: #e0245e;
    }

    .product-price {
        font-size: 1.15rem;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .product-brand {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .product-brand a {
        color: var(--text-dark);
        text-decoration: underline;
    }

    .colour-label {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .colour-swatches {
        display: flex;
        gap: 12px;
        margin-bottom: 14px;
    }

    .colour-swatch {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 2px solid transparent;
        padding: 3px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color 0.2s ease;
    }

    .colour-swatch span {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        display: block;
        border: 1px solid rgba(0,0,0,0.1);
    }

    .colour-swatch.active {
        border-color: #111;
    }

    .swatch-gold span {
        background: #d4af62;
    }

    .swatch-silver span {
        background: #c9c9c9;
    }

    .stock-note {
        font-size: 13px;
        font-weight: 600;
        color: var(--low-stock);
        margin-bottom: 18px;
    }

    .btn-add-to-bag {
        display: block;
        width: 100%;
        padding: 16px 10px;
        background: #111;
        color: #fff;
        border: none;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.2s ease;
        margin-bottom: 6px;
    }

    .btn-add-to-bag:hover {
        background: #333;
        color: #fff;
    }

    /* ---------- Perks box ---------- */

    .perks-box {
        background: #f6f6f6;
        border-radius: 4px;
        padding: 18px 20px;
        margin-bottom: 26px;
    }

    .perk-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 13.5px;
        margin-bottom: 12px;
    }

    .perk-item:last-child {
        margin-bottom: 0;
    }

    .perk-item i {
        width: 18px;
        text-align: center;
        color: var(--text-dark);
        font-size: 15px;
    }

    /* ---------- Product details ---------- */

    .details-divider {
        border: none;
        border-top: 1px solid var(--border-color);
        margin-bottom: 22px;
    }

    .details-heading {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .details-text {
        font-size: 14px;
        line-height: 1.7;
        color: #333;
        margin-bottom: 14px;
    }

    /* ---------- Side panel (Complete the Look / accordion / brand) ---------- */

    .side-panel {
        padding: 24px 0 0;
    }

    .section-heading {
        font-size: 12.5px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .top-divider {
        border: none;
        border-top: 1px solid var(--border-color);
        margin: 0 0 20px;
    }

    .look-item {
        display: flex;
        gap: 16px;
        margin-bottom: 24px;
    }

    .look-img-wrap {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
        background: #f4f4f4;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .look-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .look-info {
        position: relative;
        flex: 1;
        padding-right: 26px;
    }

    .look-name {
        font-size: 13.5px;
        color: var(--link-color);
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .look-brand {
        font-size: 12.5px;
        color: var(--text-muted);
        margin-bottom: 4px;
    }

    .look-price {
        font-size: 13.5px;
        font-weight: 600;
    }

    .look-wishlist {
        position: absolute;
        top: 0;
        right: 0;
        background: none;
        border: none;
        font-size: 15px;
        color: var(--text-dark);
        cursor: pointer;
        transition: transform 0.15s ease, color 0.15s ease;
    }

    .look-wishlist:hover {
        transform: scale(1.1);
    }

    .look-wishlist.active {
        color: #e0245e;
    }

    .accordion-section {
        border-top: 1px solid var(--border-color);
    }

    .accordion-section:last-of-type {
        border-bottom: 1px solid var(--border-color);
    }

    .accordion-toggle {
        width: 100%;
        background: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
        font-size: 12.5px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--text-dark);
        cursor: pointer;
    }

    .accordion-toggle .toggle-icon {
        position: relative;
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    .accordion-toggle .toggle-icon::before,
    .accordion-toggle .toggle-icon::after {
        content: "";
        position: absolute;
        background: var(--text-dark);
        transition: transform 0.25s ease;
    }

    .accordion-toggle .toggle-icon::before {
        top: 50%;
        left: 0;
        width: 14px;
        height: 1.5px;
        transform: translateY(-50%);
    }

    .accordion-toggle .toggle-icon::after {
        top: 0;
        left: 50%;
        width: 1.5px;
        height: 14px;
        transform: translateX(-50%);
    }

    .accordion-toggle.open .toggle-icon::after {
        transform: translateX(-50%) rotate(90deg);
        opacity: 0;
    }

    .accordion-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        font-size: 13.5px;
        line-height: 1.7;
        color: #333;
    }

    .accordion-body-inner {
        padding-bottom: 18px;
    }

    .verified-row {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12.5px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin: 26px 0 10px;
    }

    .verified-row i {
        color: #111;
        font-size: 14px;
    }

    .verified-text {
        font-size: 13.5px;
        line-height: 1.6;
        color: #333;
        margin-bottom: 18px;
    }

    .verified-text a {
        color: var(--text-dark);
        text-decoration: underline;
    }

    .guarantee-box {
        background: #f6f6f6;
        border-radius: 4px;
        padding: 18px 20px;
        margin-bottom: 6px;
    }

    .guarantee-brand {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--text-muted);
        margin-bottom: 14px;
    }

    .guarantee-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 13.5px;
        color: var(--link-color);
        margin-bottom: 12px;
    }

    .guarantee-item:last-child {
        margin-bottom: 0;
    }

    .guarantee-item i {
        width: 18px;
        text-align: center;
        color: var(--text-dark);
        font-size: 15px;
    }

    .brand-section {
        margin-top: 34px;
    }

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

    .brand-nav-arrows {
        display: flex;
        gap: 14px;
    }

    .brand-nav-arrows button {
        background: none;
        border: none;
        font-size: 14px;
        color: var(--text-dark);
        cursor: pointer;
        transition: opacity 0.2s ease;
    }

    .brand-nav-arrows button:hover {
        opacity: 0.6;
    }

    .brand-slider {
        position: relative;
        overflow: hidden;
        aspect-ratio: 4 / 5;
        background: #f4f4f4;
        margin-bottom: 12px;
    }

    .brand-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .brand-slide.active {
        opacity: 1;
        z-index: 1;
    }

    .brand-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .brand-dots {
        display: flex;
        justify-content: center;
        gap: 7px;
        margin-bottom: 18px;
    }

    .brand-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #ccc;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .brand-dot.active {
        background: #111;
        transform: scale(1.2);
    }

    .brand-name {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 2px;
    }

    .brand-location {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-muted);
        margin-bottom: 12px;
    }

    .brand-description {
        font-size: 13.5px;
        line-height: 1.7;
        color: #333;
    }

    /* ---------- Mobile ---------- */

    @media (max-width: 767.98px) {
        .pdp-page {
            padding: 16px 0 44px;
        }

        .gallery-row {
            flex-direction: column;
            gap: 12px;
        }

        .thumb-col {
            flex-direction: row;
            flex: none;
            overflow-x: auto;
            padding-bottom: 4px;
        }

        .thumb-item {
            flex: 0 0 60px;
            width: 60px;
            height: 60px;
        }

        .main-image-col {
            min-height: 340px;
        }

        .main-image-wrap {
            max-width: 100%;
        }

        .gallery-arrow.prev {
            left: 0;
        }

        .gallery-arrow.next {
            right: 0;
        }

        .product-info-col {
            padding-left: 0;
            margin-top: 24px;
        }

        .product-title {
            font-size: 1.15rem;
        }

        .perks-box {
            padding: 14px 16px;
        }

        .side-panel {
            padding: 18px 0 0;
        }

        .look-img-wrap {
            width: 76px;
            height: 76px;
        }
    }
        /* CART END */
    /* WISHLIST CSS START */
    :root {
        --text-dark: #111;
        --text-muted: #6b6b6b;
        --border-color: #e0e0e0;
        --out-of-stock: #8a8a8a;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        color: var(--text-dark);
    }

    .wishlist-page {
        padding: 48px 0 80px;
    }

    .wishlist-title {
        text-align: center;
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .wishlist-subtitle {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 32px;
        color: var(--text-dark);
        font-size: 14.5px;
        line-height: 1.6;
    }

    .wishlist-divider {
        border: none;
        border-top: 1px solid var(--border-color);
        margin-bottom: 0;
    }

    .wishlist-grid {
        margin-top: 0;
    }

    .wishlist-item {
        position: relative;
        padding: 24px 14px 0;
        border-right: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
    }

    .wishlist-item.no-border {
        border-right: none;
    }

    .remove-item {
        position: absolute;
        top: 20px;
        right: 22px;
        z-index: 3;

        background: none;
        border: none;
        font-size: 18px;
        color: var(--text-dark);
        line-height: 1;
        cursor: pointer;
        padding: 4px;
        transition: transform 0.15s ease, color 0.15s ease;
    }

    .remove-item:hover {
        color: #c41e3a;
        transform: scale(1.1);
    }

    .wishlist-img-wrap {
        width: 100%;
        aspect-ratio: 1 / 1;
        background: #fafafa;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .wishlist-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .wishlist-name {
        font-size: 14px;
        font-weight: 500;
        color: #1a3f7a;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    .wishlist-brand {
        font-size: 13px;
        color: var(--text-muted);
        margin-bottom: 6px;
    }

    .wishlist-price {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .wishlist-item-footer {
        margin-top: auto;
        padding-bottom: 24px;
    }

    .btn-wishlist-action {
        display: block;
        width: 100%;
        padding: 14px 10px;
        border: 1px solid #000;
        background: #111;
        color: #fff;
        font-size: 12.5px;
        font-weight: 300;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-align: center;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .btn-wishlist-action:hover {
        background: #fff;
        color: #000;
    }

    .btn-wishlist-action.out-of-stock {
        background: var(--out-of-stock);
        cursor: not-allowed;
        pointer-events: none;
    }

    .stock-note {
        font-size: 11.5px;
        color: #b8860b;
        margin-top: 8px;
        text-align: center;
    }

    /* Empty state, shown once every item is removed */
    .wishlist-empty {
        display: none;
        text-align: center;
        padding: 60px 20px;
        color: var(--text-muted);
        font-size: 14px;
    }

    .wishlist-empty.show {
        display: block;
    }

    /* Fade-out animation on remove */
    .wishlist-item.removing {
        animation: fadeOutItem 0.25s ease forwards;
    }

    @keyframes fadeOutItem {
        from {
            opacity: 1;
            transform: scale(1);
        }

        to {
            opacity: 0;
            transform: scale(0.92);
        }
    }

    /* ---------- Mobile ---------- */

    @media (max-width: 767.98px) {
        .wishlist-page {
            padding: 32px 0 56px;
        }

        .wishlist-title {
            font-size: 1.4rem;
            letter-spacing: 1.5px;
        }

        .wishlist-subtitle {
            font-size: 13px;
            padding: 0 12px;
        }

        .wishlist-item {
            padding: 18px 10px 0;
        }

        /* 2-up on mobile: border only on the left column */
        .wishlist-item:nth-child(2n) {
            border-right: none;
        }

        .wishlist-item:not(:nth-last-child(-n+2)) {
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 18px;
            margin-bottom: 18px;
        }

        .remove-item {
            top: 14px;
            right: 14px;
            font-size: 15px;
        }

        .wishlist-name {
            font-size: 12.5px;
        }

        .wishlist-brand,
        .wishlist-price {
            font-size: 12px;
        }

        .btn-wishlist-action {
            font-size: 11px;
            padding: 12px 8px;
        }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
        .wishlist-item:nth-child(2n) {
            border-right: none;
        }

        .wishlist-item:not(:nth-last-child(-n+2)) {
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 18px;
            margin-bottom: 18px;
        }
    }

    /* WISHLIST CSS START */
    /* STORE CSS START */
    :root {
        --black: #111;
        --dark: #1a1a1a;
        --gray: #666;
        --muted: #999;
        --border: #e5e5e5;
        --border-color: #e5e5e5;
        --border-light: #e5e5e5;
        --light: #f8f8f8;
        --light-gray: #f5f5f5;
        --white: #fff;
        --sale: #e11d48;
        --text-dark: #1a1a1a;
        --text-muted: #6b6b6b;
        --brand-color: #6b7a99;
        --accent-teal: #1abc9c;
    }

    * {
        box-sizing: border-box;
    }

    .center-div {
        position: relative;
        z-index: 2;
        margin-top: -100px;
        background: #fff;
    }

    body {
        font-family: "Inter", sans-serif;
        color: var(--dark);
        background: var(--white);
        margin: 0;
        line-height: 1.5;
        font-size: 14px;
    }

    a:hover{
        text-decoration: underline;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: 0.2s;
    }


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

    .top-promo {
        background: #111;
        color: #fff;
        font-size: 12px;
        letter-spacing: 0.4px;
        text-align: center;
        padding: 9px 16px;
    }

    .top-promo a {
        color: #fff;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .main-header {
        border-bottom: 1px solid var(--border);
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 1050;
    }

    .logo-main {
        font-family: "Playfair Display", serif;
        font-size: 1.35rem;
        font-weight: 600;
        letter-spacing: 1px;
        color: #111;
        line-height: 1.05;
    }

    .logo-main span {
        font-weight: 400;
    }

    .logo-tag {
        font-size: 8.5px;
        letter-spacing: 1.4px;
        color: #666;
        text-transform: uppercase;
        margin-top: 2px;
    }

    .nav-link-custom {
        font-size: 12.5px;
        font-weight: 500;
        letter-spacing: 0.7px;
        text-transform: uppercase;
        color: var(--dark) !important;
        padding: 0.45rem 0.7rem !important;
    }

    .nav-link-custom:hover {
        opacity: 0.7;
    }

    .sale-link {
        color: var(--sale) !important;
        text-decoration: underline !important;
        text-underline-offset: 3px;
    }

    .header-icons a {
        font-size: 17px;
        color: var(--dark);
        margin-left: 16px;
    }

    .header-search {
        border: 1px solid var(--border);
        border-radius: 50px;
        padding: 7px 38px 7px 16px;
        font-size: 13px;
        width: 160px;
        outline: none;
    }

    .header-search:focus {
        border-color: #111;
    }

    .brand-hero {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        min-height: 420px;
        background: #f0ebe3;
    }

    .brand-hero-img {
        background-size: cover;
        background-position: center 20%;
        min-height: 420px;
    }

    .brand-hero-side {
        background-size: cover;
        background-position: center;
        min-height: 420px;
    }

    .brand-info-card {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        width: min(520px, 92%);
        padding: 36px 40px 32px;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
        z-index: 2;
    }

    .brand-info-card h1 {
        font-family: "Playfair Display", serif;
        font-size: 1.75rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
        text-transform: uppercase;
    }

    .brand-info-card .desc {
        font-size: 13px;
        color: #555;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .btn-follow {
        background: #111;
        color: #fff;
        border: none;
        padding: 11px 22px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-follow:hover {
        background: #333;
        color: #fff;
    }

    .guarantees-box {
        border: 1px solid var(--border);
        padding: 14px 16px;
        margin-top: 20px;
        font-size: 12px;
    }

    .guarantees-box .title {
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 12.5px;
    }

    .guarantees-box .badge-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-right: 14px;
        color: #444;
    }

    .guarantees-box .badge-item i {
        color: #00a86b;
        font-size: 13px;
    }

    .main-content {
        padding: 32px 0 60px;
    }

    /* ========== UNIFIED FILTER SIDEBAR (identical to PLP) ========== */
    .filter-sidebar {
        font-size: 13px;
    }

    .filter-title {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 16px;
        text-transform: uppercase;
    }

    .filter-item {
        border-bottom: 1px solid var(--border);
        padding: 12px 0;
    }

    .filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 13px;
        font-weight: 500;
        user-select: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .filter-header .icon {
        font-size: 16px;
        font-weight: 300;
    }



    .price-inputs {
        display: flex;
        gap: 10px;
        margin-bottom: 12px;
    }

    .price-inputs>div {
        flex: 1;
    }

    .price-inputs label {
        font-size: 11px;
        color: var(--gray);
        display: block;
        margin-bottom: 4px;
    }

    .price-inputs input {
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 20px;
        padding: 7px 12px;
        font-size: 13px;
    }

    .btn-search,
    .btn-remove {
        width: 100%;
        padding: 9px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.5px;
        border: 1px solid #111;
        cursor: pointer;
        transition: all 0.2s;
    }

    .btn-search {
        background: #111;
        color: #fff;
        margin-bottom: 8px;
    }

    .btn-search:hover {
        background: #333;
    }

    .btn-remove {
        background: #fff;
        color: #111;
    }

    .btn-remove:hover {
        background: #111;
        color: #fff;
    }

    .size-search {
        position: relative;
        margin-bottom: 12px;
    }

    .size-search input {
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 20px;
        padding: 8px 36px 8px 14px;
        font-size: 13px;
    }

    .size-search i {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        font-size: 13px;
    }

    .form-check {
        margin-bottom: 7px;
        padding-left: 1.6em;
    }

    .form-check-input {
        margin-top: 0.2em;
        cursor: pointer;
    }

    .form-check-label {
        font-size: 13px;
        cursor: pointer;
    }

    .results-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        font-size: 13px;
        color: #555;
    }

    .results-meta .sort-select {
        border: 1px solid var(--border);
        padding: 6px 28px 6px 12px;
        font-size: 12px;
        background: #fff;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
    }

    .center-div .product-card {
        text-align: center;
        margin-bottom: 28px;
    }

    .center-div .product-card .img-wrap {
        position: relative;
        aspect-ratio: 1 / 1.05;
        overflow: hidden;
        background: #f7f5f2;
        margin-bottom: 12px;
    }

    .center-div .product-card .img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition:
            opacity 0.35s ease,
            transform 0.4s ease;
    }

    .center-div .product-card .img-wrap .img-primary,
    .center-div .product-card .img-wrap .img-secondary {
        position: absolute;
        inset: 0;
        padding: 12px;
    }

    .center-div .product-card .img-wrap .img-primary {
        opacity: 1;
        z-index: 1;
    }

    .center-div .product-card .img-wrap .img-secondary {
        opacity: 0;
        z-index: 2;
    }

    .center-div .product-card:hover .img-wrap .img-primary {
        opacity: 0;
    }

    .center-div .product-card:hover .img-wrap .img-secondary {
        opacity: 1;
    }

    .center-div .product-card:hover .img-wrap img {
        transform: scale(1.03);
    }

    .center-div .product-card .name {
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 2px;
        line-height: 1.35;
        color: #222;
    }

    .center-div .product-card .brand {
        font-size: 12px;
        color: var(--muted);
        margin-bottom: 4px;
    }

    .center-div .product-card .price {
        font-size: 13px;
        font-weight: 500;
        color: #222;
    }

    .pagination-custom {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 12px;
        margin-bottom: 40px;
    }

    .pagination-custom .page-btn {
        width: 34px;
        height: 34px;
        border: 1px solid var(--border);
        background: #fff;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
    }

    .pagination-custom .page-btn.active {
        background: #111;
        color: #fff;
        border-color: #111;
    }

    .pagination-custom .page-btn:hover:not(.active) {
        border-color: #111;
    }

    .thanks-section {
        border-top: 1px solid var(--border);
        padding: 48px 0 40px;
    }

    .thanks-section h3 {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .thanks-section p {
        font-size: 13px;
        color: #666;
        max-width: 420px;
    }

    .btn-upload {
        background: #111;
        color: #fff;
        border: none;
        padding: 12px 24px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .btn-upload:hover {
        background: #333;
        color: #fff;
    }

    .community-img {
        width: 180px;
        height: 180px;
        object-fit: cover;
    }

    .features-bar {
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 22px 0;
        background: #faf9f7;
        font-size: 13px;
    }

    .features-bar .feat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #444;
    }

    .features-bar i {
        font-size: 16px;
    }

    .modal-content {
        border: none;
        border-radius: 0;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .modal-header {
        border-bottom: none;
        padding: 28px 32px 8px;
    }

    .modal-title {
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .modal-body {
        padding: 8px 32px 32px;
    }

    .auth-tabs {
        display: flex;
        gap: 24px;
        border-bottom: 1px solid var(--border);
        margin-bottom: 24px;
    }

    .auth-tabs button {
        background: none;
        border: none;
        padding: 0 0 10px;
        font-size: 14px;
        color: #888;
        position: relative;
        cursor: pointer;
    }

    .auth-tabs button.active {
        color: #111;
        font-weight: 500;
    }

    .form-label {
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 6px;
    }

    .form-control {
        border-radius: 0;
        border: 1px solid #ccc;
        padding: 11px 14px;
        font-size: 14px;
    }

    .form-control:focus {
        border-color: #111;
        box-shadow: none;
    }

    .forgot-link {
        font-size: 13px;
        color: #555;
        text-decoration: underline;
        text-underline-offset: 2px;
        display: inline-block;
        margin: 8px 0 18px;
    }

    .btn-signin {
        background: #111;
        color: #fff;
        border: none;
        width: 100%;
        padding: 14px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
    }

    .btn-signin:hover {
        background: #333;
        color: #fff;
    }

    .or-divider {
        display: flex;
        align-items: center;
        gap: 16px;
        margin: 22px 0;
        color: #999;
        font-size: 12px;
    }

    .or-divider::before,
    .or-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: var(--border);
    }

    .btn-social {
        flex: 1;
        border: 1px solid #ccc;
        background: #fff;
        padding: 11px 12px;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #333;
    }

    .btn-social:hover {
        border-color: #111;
        background: #fafafa;
    }

    .btn-social .fa-facebook-f {
        color: #1877f2;
    }

    .btn-social .fa-google {
        color: #ea4335;
    }

    .spinner-wrapper {
        display: none;
        text-align: center;
        padding: 80px 0;
    }

    .spinner-wrapper.show {
        display: block;
    }

    .spinner-border {
        width: 2.5rem;
        height: 2.5rem;
        border-width: 0.2em;
    }

    @media (max-width: 991.98px) {
        .brand-hero {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .brand-hero-img,
        .brand-hero-side {
            min-height: 280px;
        }

        .brand-info-card {
            position: relative;
            left: auto;
            top: auto;
            transform: none;
            width: 100%;
            margin: -40px 16px 0;
            padding: 28px 24px;
        }

        .filter-sidebar {
            margin-bottom: 24px;
        }

        .nav-desktop {
            display: none !important;
        }
    }

    @media (max-width: 767.98px) {
        .logo-main {
            font-size: 1.15rem;
        }

        .header-search {
            display: none;
        }

        .brand-info-card h1 {
            font-size: 1.4rem;
        }

        .results-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .community-img {
            width: 140px;
            height: 140px;
        }

        .features-bar .feat-item {
            margin-bottom: 10px;
        }
    }

    .center-div {
        position: relative;
    }

    .center-div .btn-follow {
        position: absolute;
        top: -20px;
        right: 0;
        margin-right: 10px;
    }

    /* STORE CSS END */

    /*CATEGORY MAIN CSS START  */
    .grid-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        font-size: 13px;
        letter-spacing: 0.4px;
    }

    .item-count {
        color: var(--text-dark);
        font-weight: 500;
    }

    .grid-header .sort-select {
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--text-dark);
        font-size: 13px;
        letter-spacing: 0.4px;
    }

    .grid-header .sort-select::after {
        margin-left: 6px;
        vertical-align: middle;
    }

    .plp-sort-dropdown {
        position: relative;
    }

    .plp-sort-menu {
        min-width: 220px;
        padding: 6px 0;
        border: 1px solid #e5e5e5;
        border-radius: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        margin-top: 8px !important;
    }

    .plp-sort-menu .dropdown-item {
        font-size: 13px;
        padding: 10px 16px;
        color: #111;
        background: transparent;
        border: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
    }

    .plp-sort-menu .dropdown-item:hover,
    .plp-sort-menu .dropdown-item.active {
        background: #f5f5f5;
        font-weight: 600;
        color: #111;
    }

    /* ---------- Product Card ---------- */

    .product-card {
        position: relative;
        margin-bottom: 32px;
    }

    .product-image-wrap {
        position: relative;
        width: 100%;
        aspect-ratio: 3 / 4;
        overflow: hidden;
        background: #f4f4f4;
        border-radius: 4px;
    }

    .product-image-wrap img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.4s ease, transform 0.5s ease;
    }

    .product-image-wrap .img-front {
        opacity: 1;
        z-index: 2;
    }

    .product-image-wrap .img-back {
        opacity: 0;
        z-index: 1;
    }

    /* Flip on hover — front fades out, back fades in, both with a slight zoom */
    .product-card:hover .img-front {
        opacity: 0;
        transform: scale(1.03);
    }

    .product-card:hover .img-back {
        opacity: 1;
        transform: scale(1.03);
    }

    /* Single-image cards just get a subtle zoom, no flip */
    .product-image-wrap.single-image:hover img {
        transform: scale(1.03);
    }

    /* ---------- Wishlist Icon ---------- */

    .wishlist-btn {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 3;

        width: 34px;
        height: 34px;

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

        background: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;

        color: var(--text-dark);
        font-size: 15px;

        opacity: 0;
        transform: translateY(-4px);
        transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease;

        cursor: pointer;
    }

    .product-card:hover .wishlist-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .wishlist-btn:hover {
        background: #111;
        color: #fff;
    }

    .wishlist-btn.active {
        opacity: 1;
        transform: translateY(0);
        color: #e0245e;
    }

    .wishlist-btn.active i {
        font-weight: 900;
    }

    /* ---------- Card Text ---------- */

    .product-info {
        padding-top: 12px;
    }

    .product-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.35;
        margin-bottom: 4px;
    }

    .product-brand {
        font-size: 13px;
        color: var(--brand-color);
        margin-bottom: 6px;
    }

    .product-price {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .product-price .old-price {
        text-decoration: line-through;
        color: #9a9a9a;
        font-weight: 400;
        margin-right: 6px;
    }

    /* ---------- Product badges ---------- */
    .product-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 6px;
    }

    .badge-featured,
    .badge-trending {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: #888;
    }

    .badge-trending {
        border: 1px solid #ddd;
        padding: 2px 6px;
        color: #333;
    }

    /* ---------- PLP page layout ---------- */
    .plp-page {
        padding-bottom: 40px;
    }

    .plp-container {
        padding-top: 16px;
    }

    .plp-breadcrumb {
        font-size: 12px;
        color: #888;
        margin-bottom: 8px;
    }

    .plp-breadcrumb a {
        color: #888;
        text-decoration: none;
    }

    .plp-breadcrumb a:hover {
        color: #111;
        text-decoration: underline;
    }

    .plp-bc-sep {
        margin: 0 4px;
    }

    .plp-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(1.4rem, 3vw, 1.85rem);
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 18px;
        color: #111;
    }

    .plp-chips {
        margin-bottom: 18px;
    }

    .plp-mobile-bar {
        display: flex;
        margin-bottom: 14px;
        gap: 10px;
    }

    .plp-bar-btn {
        flex: 1;
        background: #f3f3f3;
        border: none;
        border-right: 1px solid #e5e5e5;
        padding: 14px 10px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #111;
        cursor: pointer;
        font-family: inherit;
    }

    .plp-bar-btn:last-child {
        border-right: none;
    }

    .plp-bar-btn:active {
        background: #e9e9e9;
    }

    .plp-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        color: #666;
        margin-bottom: 16px;
    }

    .plp-featured-count {
        color: #888;
    }

    .plp-layout {
        display: flex;
        gap: 28px;
        align-items: flex-start;
    }

    .plp-sidebar {
        flex: 0 0 260px;
        max-width: 260px;
    }

    .plp-grid-wrap {
        flex: 1;
        min-width: 0;
    }

    /* Left drawers for filter & sort */
    .plp-drawer {
        max-width: 80%;
        width: min(360px, 92vw);
        z-index: 1060 !important;
    }

    .plp-drawer .offcanvas-body .filter-sidebar {
        max-width: none;
        position: static;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .plp-drawer .filter-title {
        display: none;
    }

    .plp-sort-list {
        display: flex;
        flex-direction: column;
    }

    .plp-sort-option {
        width: 100%;
        text-align: left;
        background: transparent;
        border: none;
        border-bottom: 1px solid #eee;
        padding: 16px 20px;
        font-size: 14px;
        color: #111;
        cursor: pointer;
        font-family: inherit;
    }

    .plp-sort-option:hover,
    .plp-sort-option.active {
        background: #fafafa;
        font-weight: 600;
    }

    /* ---------- Mobile ---------- */

    @media (max-width: 767.98px) {
        .grid-header {
            font-size: 12px;
            margin-bottom: 16px;
        }

        .wishlist-btn {
            opacity: 1;
            transform: translateY(0);
            width: 30px;
            height: 30px;
            font-size: 13px;
            top: 8px;
            right: 8px;
            background: transparent;
        }

        .product-name {
            font-size: 13px;
            line-height: 1.3;
        }

        .product-brand,
        .product-price {
            font-size: 12px;
        }

        .product-card {
            margin-bottom: 8px;
        }

        .plp-container {
            padding-left: 16px !important;
            padding-right: 16px !important;
            padding-top: 12px;
        }

        .plp-title {
            font-size: 1.35rem;
            margin-bottom: 14px;
            text-align: center;
        }

        .plp-layout {
            display: block;
        }

        .plp-sidebar {
            display: none !important;
        }

        /* Hide desktop meta duplicate on mobile — use plp-meta only */
        .plp-grid-wrap .grid-header {
            display: none !important;
        }

        .plp-meta {
            display: flex;
        }

        .category-scroll.plp-chips {
            margin-left: -16px;
            margin-right: -16px;
            padding-left: 16px;
            padding-right: 16px;
        }
    }

    @media (min-width: 768px) {
        .plp-meta {
            display: none;
        }

        .plp-mobile-bar {
            display: none !important;
        }
    }

    /*CATEGORY MAIN CSS END  */

    /*FILTER LEFT SIDEBAR CSS START  */

    .filter-sidebar {
        max-width: 340px;

        /* Sticky */
        position: sticky;
        top: 90px;

        /* Scroll */
        max-height: calc(100vh - 40px);
        overflow-y: auto;

        /* Optional */
        padding-right: 10px;
    }

    .filter-title {
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .breadcrumb-mini {
        font-size: 0.78rem;
        color: var(--text-muted);
        margin-bottom: 6px;
    }

    /* Favourites box */
    .fav-box {
        background-color: #f4f4f4;
        border-radius: 6px;
        padding: 16px;
    }

    .fav-box .fav-label {
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .fav-box .fav-desc {
        font-size: 0.82rem;
        color: var(--text-muted);
    }

    .form-switch .form-check-input {
        width: 2.4em;
        height: 1.3em;
        cursor: pointer;
    }

    .form-switch .form-check-input:checked {
        background-color: var(--accent-teal);
        border-color: var(--accent-teal);
    }

    /* Filter sections */
    .filter-section {
        border-bottom: 1px solid var(--border-light);
        padding: 8px 0;
    }

    .filter-heading {
        font-size: 0.8rem;
        font-weight: 300;
        letter-spacing: 0.5px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .filter-heading .toggle-icon {
        font-weight: 100;
        font-size: 27px;
        color: var(--text-muted);
    }

    .form-check {
        margin-bottom: 10px;
    }

    .form-check-label {
        font-size: 0.88rem;
        color: var(--text-dark);
        font-weight: 300;
    }

    .form-check-input {
        cursor: pointer;
    }

    .form-check-input[type="radio"] {
        border-color: #b5b5b5;
    }

    .form-check-input[type="checkbox"] {
        border-color: #b5b5b5;
        border-radius: 11px;
    }

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

    /* Search pill (reused everywhere) */
    .search-pill {
        position: relative;
        margin-bottom: 14px;
    }

    .search-pill input {
        border-radius: 20px;
        border: 1.5px solid var(--text-dark);
        padding: 8px 40px 8px 16px;
        font-size: 0.88rem;
    }

    .search-pill input:focus {
        box-shadow: none;
        border-color: var(--text-dark);
    }

    .search-pill .search-icon {
        position: absolute;
        top: 50%;
        right: 14px;
        transform: translateY(-50%);
        color: var(--text-dark);
        font-size: 0.85rem;
        pointer-events: none;
    }

    .no-results {
        font-size: 0.82rem;
        color: var(--text-muted);
        display: none;
        padding: 4px 0;
    }

    .show-more-link {
        font-size: 0.82rem;
        font-weight: 600;
        text-decoration: underline;
        color: var(--text-dark);
        cursor: pointer;
        display: inline-block;
        margin-top: 4px;
    }

    /* Price range */
    .price-range-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
    }

    .price-range-row label {
        font-size: 0.82rem;
        font-weight: 600;
        width: 45px;
        flex-shrink: 0;
    }

    .price-input-wrap {
        position: relative;
        flex: 1;
    }

    .price-input-wrap input {
        border-radius: 20px;
        border: 1.5px solid var(--text-dark);
        padding: 8px 34px 8px 14px;
        font-size: 0.88rem;
        width: 100%;
    }

    .price-input-wrap input:focus {
        box-shadow: none;
        border-color: var(--text-dark);
    }

    .price-clear-btn {
        position: absolute;
        top: 50%;
        right: 8px;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--text-dark);
        color: #fff;
        border: none;
        font-size: 0.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .btn-apply {
        border: 1.5px solid var(--text-dark);
        background: #fff;
        color: var(--text-dark);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.8px;
        padding: 10px 30px;
        border-radius: 2px;
    }

    .btn-apply:hover {
        background: var(--text-dark);
        color: #fff;
    }

    /*FILTER LEFT SIDEBAR CSS END  */

    /* CATEGORY HORIZONTAL SCROLLBAR CSS START  */
    /* Scrollable wrapper */
    .category-scroll {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 14px;
        /* space for scrollbar */
        scrollbar-width: thin;
        scrollbar-color: #b5b5b5 #f0f0f0;
    }

    /* Webkit browsers (Chrome, Edge, Safari) scrollbar styling */
    .category-scroll::-webkit-scrollbar {
        height: 8px;
    }

    .category-scroll::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
    }

    .category-scroll::-webkit-scrollbar-thumb {
        background: #b5b5b5;
        border-radius: 10px;
    }

    .category-scroll::-webkit-scrollbar-thumb:hover {
        background: #999;
    }

    /* Individual pill/button */
    .category-pill {
        flex: 0 0 auto;
        background-color: #f2f2f2;
        color: #1a1a2e;
        border: none;
        border-radius: 6px;
        padding: 14px 22px;
        font-size: 0.95rem;
        font-weight: 500;
        white-space: nowrap;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .category-pill:hover {
        background-color: #e6e6e6;
    }

    .category-pill:active,
    .category-pill.active {
        background-color: #e0e0e0;
    }

    /* CATEGORY HORIZONTAL SCROLLBAR CSS END  */

    .underline-hover {
        font-weight: 400;
    }

    .underline-hover:hover {
        text-decoration: underline;
    }

    /* RESET CSS END HERE */


    /* GLOBAL / REUSABLE CSS START HERE */
    /* Section wrapper + heading, used by Editor's Picks, Shop By, Collection, Brands, Stores, Community, etc. */
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 30px;
    }

    .section-title span {
        padding-bottom: 4px;
    }

    /* Prev/next arrow buttons, used above every slider (Editor's Picks, Shop By, Collection) */
    .navigation-buttons {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: 0.2s ease;
    }

    .nav-btn svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: #5f6368;
        stroke-width: 3.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: 0.2s ease;
    }

    .nav-btn:hover svg {
        stroke: #111;
    }

    .nav-btn:focus-visible {
        outline: 2px solid #111;
        outline-offset: 2px;
    }

    .nav-btn.disabled {
        opacity: 0.35;
        pointer-events: none;
    }

    /* Horizontal card slider engine, used by Editor's Picks, Shop By, Collection */
    .wb-slider {
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .wb-track {
        display: flex;
        gap: 1.5rem;
        transition: transform 0.35s ease;
        will-change: transform;
    }

    .wb-slide {
        flex: 0 0 auto;
        min-width: 0;
    }

    .wb-slider[data-visible="4"] .wb-slide {
        flex: 0 0 calc((100% - 4.5rem) / 4);
    }

    .wb-slider[data-visible="3"] .wb-slide {
        flex: 0 0 calc((100% - 3rem) / 3);
    }

    .wb-slider[data-visible="5"] .wb-slide {
        flex: 0 0 calc((100% - 6rem) / 5);
    }

    @media (max-width: 991.98px) {

        .wb-slider[data-visible="4"] .wb-slide,
        .wb-slider[data-visible="5"] .wb-slide {
            flex: 0 0 calc((100% - 1.5rem) / 2);
        }

        .wb-slider[data-visible="3"] .wb-slide {
            flex: 0 0 calc((100% - 1.5rem) / 2);
        }
    }

    @media (max-width: 575.98px) {
        /* overridden in full homepage responsive block below — keep 2-up / peek */
        .wb-slider .wb-slide {
            flex: 0 0 72%;
        }
    }

    /* Tab buttons, used by Editor's Picks (Sale/New) and Our Stores (London/New York) */
    .editors-tabs {
        display: flex;
        gap: 0;
    }

    .editors-tab {
        background: none;
        border: none;
        border-bottom: 1px solid transparent;
        margin-bottom: -1px;
        padding: 10px;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: #888;
        cursor: pointer;
        transition:
            color 0.2s,
            border-color 0.2s;
    }

    .editors-tab:hover {
        color: #111;
    }

    .editors-tab.active {
        color: #111;
        border-bottom-color: #111;
    }

    .editors-tab-panel {
        animation: fadeTab 0.25s ease;
    }

    @keyframes fadeTab {
        from {
            opacity: 0;
            transform: translateY(6px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* GLOBAL / REUSABLE CSS END HERE */


    /* UPLOAD PHOTO MODAL CSS START HERE */
    .upload-right-content {
        flex: 1;
        padding: 24px 20px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .upload-placeholder {
        color: #bbb;
        font-size: 14px;
        text-align: center;
        margin: 0;
    }

    .upload-modal {
        border: none;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    }

    .upload-close {
        position: absolute;
        top: 12px;
        right: 14px;
        z-index: 20;
        background: none;
        border: none;
        font-size: 18px;
        color: #555;
        cursor: pointer;
        padding: 4px 8px;
    }

    .upload-close:hover {
        color: #111;
    }

    .upload-body {
        display: flex;
        min-height: 560px;
        padding: 10px 10px 0 10px;
    }

    .upload-left {
        flex: 2;
        display: flex;
        flex-direction: column;
        border-right: 1px solid #eee;
    }

    .upload-left-header {
        background: #111;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        position: relative;
    }

    .upload-left-header::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #111;
    }

    .upload-left-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 30px;
        text-align: center;
    }

    .upload-icon {
        font-size: 42px;
        color: #3b82f6;
        margin-bottom: 12px;
    }

    .upload-browse-text {
        color: #3b82f6;
        font-size: 14px;
        margin-bottom: 22px;
        cursor: pointer;
    }

    .upload-browse-text:hover {
        text-decoration: underline;
    }

    .btn-upload-photos {
        background: #111;
        color: #fff;
        border: none;
        padding: 14px 48px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: pointer;
    }

    .btn-upload-photos:hover {
        background: #333;
    }

    .upload-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        background: #f7f7f7;
    }

    .upload-right-header {
        background: #e8e8e8;
        height: 48px;
        display: flex;
        align-items: center;
        padding: 0 20px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #555;
        justify-content: center;
    }

    .media-card {
        width: 100%;
        max-width: 220px;
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 6px;
        padding: 12px;
        margin-bottom: 16px;
        text-align: center;
    }

    .media-card img {
        width: 100%;
        height: auto;
        max-height: 240px;
        object-fit: contain;
        display: block;
        margin: 0 auto 12px;
    }

    .media-card .caption-input {
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 8px 10px;
        font-size: 13px;
        margin-bottom: 10px;
        outline: none;
    }

    .media-card .caption-input:focus {
        border-color: #999;
    }

    .media-card .btn-delete-photo {
        width: 100%;
        background: none;
        border: none;
        color: #888;
        font-size: 12px;
        padding: 6px 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .media-card .btn-delete-photo:hover {
        color: #c41e3a;
    }

    .upload-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 24px;
        border-top: 1px solid #eee;
        background: #fff;
    }

    .powered-by {
        font-size: 12px;
        color: #888;
    }

    .powered-by strong {
        color: #333;
        letter-spacing: 0.5px;
    }

    .btn-finish {
        background: #e5e5e5;
        color: #999;
        border: none;
        padding: 11px 40px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        cursor: not-allowed;
        min-width: 140px;
    }

    .btn-finish.enabled {
        background: #111;
        color: #fff;
        cursor: pointer;
    }

    .btn-finish.enabled:hover {
        background: #333;
    }

    @media (max-width: 767.98px) {
        .upload-body {
            flex-direction: column;
            min-height: auto;
        }

        .upload-left {
            border-right: none;
            border-bottom: 1px solid #eee;
        }

        .media-card {
            max-width: 180px;
        }
    }

    /* UPLOAD PHOTO MODAL CSS END HERE */


    /* CHAT BUTTON CSS START HERE */
    .chat-button {
        position: fixed;
        right: 55px;
        bottom: 113px;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #000;
        color: #fff;
        font-size: 22px;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        z-index: 9999;
    }

    .chat-button:hover {
        color: #fff;
        transform: scale(1.05);
    }

    /* CHAT BUTTON CSS END HERE */


    /* SEARCH OVERLAY CSS START HERE */
    .search-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 9999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .search-overlay.active {
        display: block;
        opacity: 1;
    }

    .search-overlay-content {
        background: #fff;
        padding-bottom: 40px;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-20px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .search-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 32px;
        border-bottom: 1px solid #eee;
        gap: 20px;
    }

    .search-logo {
        font-family: "Playfair Display", serif;
        font-size: 1.3rem;
        font-weight: 600;
        letter-spacing: 1px;
        color: #111;
        line-height: 1.1;
        flex-shrink: 0;
    }

    .search-logo small {
        display: block;
        font-size: 8px;
        font-weight: 400;
        letter-spacing: 1px;
        color: #666;
        margin-top: 2px;
    }

    .search-input-wrapper {
        flex: 1;
        max-width: 640px;
        position: relative;
        display: flex;
        align-items: center;
    }

    .search-input-wrapper input {
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 50px;
        padding: 12px 110px 12px 20px;
        font-size: 15px;
        outline: none;
    }

    .search-input-wrapper input:focus {
        border-color: #111;
    }

    .search-submit-btn {
        position: absolute;
        right: 6px;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #111;
        border: none;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .search-clear-btn {
        position: absolute;
        right: -53px;
        background: none;
        border: none;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: #666;
        cursor: pointer;
        padding: 0;
    }

    .search-clear-btn:hover {
        color: #111;
    }

    .search-close-btn {
        background: none;
        border: none;
        font-size: 22px;
        color: #333;
        cursor: pointer;
        padding: 4px 8px;
        flex-shrink: 0;
    }

    .search-close-btn:hover {
        color: #000;
    }

    .search-suggestions .container-fluid {
        width: 27%;
    }

    .search-suggestions {
        padding: 28px 0 10px;
    }

    .search-suggestions h6 {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #999;
        margin-bottom: 14px;
    }

    .search-suggestions ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .search-suggestions li {
        margin-bottom: 8px;
    }

    .search-suggestions a {
        font-size: 14px;
        color: #333;
    }

    .search-suggestions a:hover {
        color: #000;
        text-decoration: underline;
    }

    /* SEARCH OVERLAY CSS END HERE */


    /* TOP BAR CSS START HERE */
    .top-bar {
        background: #f8f8f8;
        font-size: 12px;
        padding: 8px 0;
        text-align: center;
        letter-spacing: 0.3px;
    }

    /* TOP BAR CSS END HERE */


    /* HEADER / LOGO / NAV CSS START HERE */
    .main-header {
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 1050;
    }

    .logo {
        font-family: "Playfair Display", serif;
        font-size: 1.6rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .logo span {
        font-weight: 400;
    }

    .nav-link {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        padding: 0.5rem 0.9rem !important;
    }

    .nav-link:hover {
        text-decoration: underline;
    }

    .sale-link {
        color: #af3d33 !important;
        text-underline-offset: 4px;
    }

    .header-icons a {
        font-size: 18px;
        margin-left: 18px;
        color: var(--dark);
    }

    .search-box {
        border: 1px solid var(--border);
        border-radius: 50px;
        padding: 6px 16px;
        font-size: 13px;
        width: 180px;
    }

    .search-input {
        border: 1px solid #ddd;
        border-radius: 50px;
        padding: 6px 14px 6px 16px;
        font-size: 13px;
        width: 150px;
    }

    .swiper {
        position: relative;
        overflow: hidden;
        list-style: none;
        padding: 0;
        z-index: 1;
    }

    .swiper-wrapper {
        position: relative;
        z-index: 1;
        display: flex;
        width: 100%;
        height: 100%;
        box-sizing: content-box;
        transition-property: transform;
    }

    .swiper-slide {
        position: relative;
        flex-shrink: 0;
        width: 100%;
        height: 100%;
        transition-property: transform;
    }

    .header-category-nav {
        flex: 1 1 auto;
        min-width: 0;
        max-width: 1241px;
        margin: 0 18px;
        gap: 4px;
    }

    .headerCategorySwiper {
        flex: 1 1 auto;
        min-width: 0;
    }

    .headerCategorySwiper .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-category-item,
    .header-category-item .nav-link {
        width: 100%;
    }

    .header-category-item .nav-link {
        display: block;
        overflow: hidden;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header-category-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
        padding: 0;
        border: 1px solid #ddd;
        border-radius: 50%;
        background: #fff;
        color: #111;
        font-size: 11px;
        line-height: 1;
        cursor: pointer;
        transition: border-color 0.15s ease, background 0.15s ease, opacity 0.15s ease;
    }

    .header-category-arrow:hover,
    .header-category-arrow:focus {
        border-color: #111;
        background: #f7f7f7;
        outline: none;
    }

    .header-category-arrow.swiper-button-disabled {
        opacity: 0.35;
        cursor: default;
        pointer-events: none;
    }

    .header-category-arrow.swiper-button-lock {
        display: none;
    }

    /* HEADER / LOGO / NAV CSS END HERE */

    /* ========== MOBILE HEADER + DRAWER (match screenshots) ========== */
    .logo-main-text {
        font-family: "Playfair Display", serif;
        font-size: 1.5rem;
        font-weight: 600;
        letter-spacing: 1px;
        color: #111;
        line-height: 1;
    }

    .logo-tagline {
        font-size: 9px;
        letter-spacing: 1.5px;
        color: #666;
        text-transform: uppercase;
        margin-top: 2px;
    }

    .bag-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .bag-badge {
        position: absolute;
        top: -6px;
        right: -8px;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        background: #111;
        color: #fff;
        font-size: 10px;
        font-weight: 600;
        line-height: 16px;
        text-align: center;
        border-radius: 50%;
    }

    /* ========== Account dropdown (hover card) ========== */
    .account-dropdown {
        position: relative;
        display: inline-flex;
        align-items: center;
    }

    .account-dropdown .account-trigger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #111;
        text-decoration: none;
        line-height: 1;
    }

    .account-dropdown-menu {
        position: absolute;
        top: 100%;
        right: -12px;
        min-width: 260px;
        background: #fff;
        border: 1px solid #e8e8e8;
        border-radius: 4px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        padding: 0;
        margin-top: 12px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
        z-index: 1080;
        pointer-events: none;
    }

    /* Invisible bridge so hover doesn't break between icon and menu */
    .account-dropdown-menu::after {
        content: "";
        position: absolute;
        top: -14px;
        left: 0;
        right: 0;
        height: 14px;
        background: transparent;
    }

    /* Arrow pointing up to the icon */
    .account-dropdown-menu::before {
        content: "";
        position: absolute;
        top: -7px;
        right: 18px;
        width: 12px;
        height: 12px;
        background: #fff;
        border-left: 1px solid #e8e8e8;
        border-top: 1px solid #e8e8e8;
        transform: rotate(45deg);
        z-index: 1;
    }

    .account-dropdown:hover .account-dropdown-menu,
    .account-dropdown:focus-within .account-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .account-dropdown-header {
        padding: 16px 20px 12px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: #111;
        border-bottom: 1px solid #f0f0f0;
    }

    .account-dropdown-links {
        padding: 8px 0;
    }

    .account-dropdown-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 20px;
        font-size: 14px;
        color: #222;
        text-decoration: none;
        transition: background 0.15s ease;
    }

    .account-dropdown-link i {
        width: 18px;
        text-align: center;
        font-size: 14px;
        color: #333;
    }

    .account-dropdown-link:hover {
        background: #f7f7f7;
        color: #111;
    }

    .account-dropdown-footer {
        padding: 12px 16px 16px;
        border-top: 1px solid #f0f0f0;
    }

        .account-signin-btn {
        display: block;
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-align: center;
        color: #fff;
        background: #000;
        border: 1px solid #111;
        border-radius: 2px;
        cursor: pointer;
        transition: background 0.15s ease, color 0.15s ease;
        text-decoration: none;
    }

    .account-signin-btn:hover {
        background: #fff;
        color: #000;
    }

    .account-signout-btn {
        display: block;
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-align: center;
        color: #111;
        background: #fff;
        border: 1px solid #111;
        border-radius: 2px;
        cursor: pointer;
        transition: background 0.15s ease, color 0.15s ease;
        text-decoration: none;
    }

    .account-signout-btn:hover {
        background: #111;
        color: #fff;
    }

    /* ========== Mobile Search Panel (slides from left, covers header) ========== */
    .mobile-search-panel {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        background: #fff;
        z-index: 1070; /* above sticky header so panel covers it */
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        visibility: hidden;
        pointer-events: none;
    }

    .mobile-search-panel.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-search-panel-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1065;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-search-panel-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-search-panel-body {
        flex: 1;
        overflow-y: auto;
        padding: 20px 16px 32px;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-search-input-wrap {
        position: relative;
        margin-bottom: 28px;
    }

    .mobile-search-input-wrap input {
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 50px;
        padding: 12px 40px 12px 18px;
        font-size: 15px;
        color: #111;
        outline: none;
        background: #fff;
        box-sizing: border-box;
    }

    .mobile-search-input-wrap input::placeholder {
        color: #999;
    }

    .mobile-search-input-wrap input:focus {
        border-color: #111;
    }

    /* X control inside the search field (right corner) */
    .mobile-search-clear {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        display: none; /* shown only when input has text */
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: #b0b0b0;
        color: #fff;
        font-size: 9px;
        line-height: 1;
        cursor: pointer;
    }

    .mobile-search-clear.visible {
        display: flex;
    }

    .mobile-search-clear:hover {
        background: #888;
    }

    /* Always-visible close (when field is empty) — plain × like screenshot */
    .mobile-search-dismiss {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        padding: 0;
        border: none;
        background: none;
        color: #555;
        font-size: 16px;
        cursor: pointer;
        line-height: 1;
    }

    .mobile-search-dismiss:hover {
        color: #111;
    }

    .mobile-search-input-wrap.has-text .mobile-search-dismiss {
        display: none;
    }

    .mobile-search-popular-title {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #111;
        margin-bottom: 12px;
    }

    .mobile-search-popular-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-search-popular-list li {
        margin-bottom: 2px;
    }

    .mobile-search-popular-list a {
        display: block;
        padding: 9px 0;
        font-size: 15px;
        color: #333;
        text-decoration: none;
    }

    .mobile-search-popular-list a:hover,
    .mobile-search-popular-list a:active {
        color: #111;
        text-decoration: underline;
    }

    body.mobile-search-open {
        overflow: hidden;
    }

    /* Hide on desktop — mobile only */
    @media (min-width: 992px) {
        .mobile-search-panel,
        .mobile-search-panel-backdrop {
            display: none !important;
        }
    }

    /* Mobile nav drawer — must sit above sticky header (z-index 1050) */
    .mobile-nav-drawer {
        max-width: 80%;
        width: 100%;
        border: none;
        z-index: 1060 !important;
    }

    .mobile-nav-drawer.show,
    .offcanvas.mobile-nav-drawer {
        z-index: 1060 !important;
    }

    /* Backdrop also above header so it covers the bar */
    .offcanvas-backdrop {
        z-index: 1055 !important;
    }

    .mobile-nav-drawer .offcanvas-body {
        overflow-y: auto;
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px 14px;
        border-bottom: 1px solid #eee;
    }

    .mobile-nav-username {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: #111;
    }

    .mobile-nav-close {
        color: #111;
        line-height: 1;
    }

    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        padding: 8px 0 0;
    }

    .mobile-nav-group {
        border: none;
    }

    .mobile-nav-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        color: #111;
        text-decoration: none;
        border: none;
        background: transparent;
        cursor: pointer;
        text-align: left;
        font-family: inherit;
        line-height: 1.3;
    }

    .mobile-nav-item:hover,
    .mobile-nav-item:focus {
        color: #111;
        background: #fafafa;
        outline: none;
    }

    a.mobile-nav-item-link {
        text-decoration: none;
        color: inherit;
        box-sizing: border-box;
    }

    a.mobile-nav-item-link:hover,
    a.mobile-nav-item-link:focus {
        color: #111;
        background: #fafafa;
        outline: none;
    }

    .mobile-nav-plus {
        font-size: 18px;
        font-weight: 300;
        color: #111;
        line-height: 1;
        flex-shrink: 0;
        width: 20px;
        text-align: center;
        position: relative;
    }

    /* Hide the literal text; use ::after so we can switch + / − */
    .mobile-nav-plus {
        font-size: 0;
    }

    .mobile-nav-plus::after {
        content: "+";
        font-size: 18px;
        font-weight: 300;
        line-height: 1;
        color: inherit;
    }

    .mobile-nav-item[aria-expanded="true"] .mobile-nav-plus::after {
        content: "−";
    }

    .mobile-nav-sale {
        color: #c41e3a !important;
    }

    .mobile-nav-sale .mobile-nav-plus {
        color: #c41e3a;
    }

    .mobile-submenu {
        background: #fafafa;
        padding: 4px 0 10px;
    }

    .mobile-sub-link {
        display: block;
        padding: 10px 20px 10px 28px;
        font-size: 14px;
        font-weight: 400;
        color: #333;
        text-decoration: none;
        letter-spacing: 0.2px;
    }

    .mobile-sub-link:hover,
    .mobile-sub-link:focus {
        color: #111;
        background: #f0f0f0;
    }

    .mobile-nav-account {
        margin-top: 8px;
        padding: 20px 20px 28px;
        border-top: 1px solid #eee;
    }

    .mobile-nav-account-title {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #888;
        margin-bottom: 14px;
    }

    .mobile-nav-account-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        font-size: 14px;
        color: #111;
        text-decoration: none;
    }

    .mobile-nav-account-link i {
        width: 18px;
        text-align: center;
        font-size: 14px;
        color: #333;
    }

    .mobile-nav-account-link:hover {
        color: #111;
        opacity: 0.75;
    }

    /* Mobile header layout: 3-column (left | logo | right) */
    @media (max-width: 991.98px) {
        .header-inner {
            position: relative;
            min-height: 52px;
        }

        .header-logo {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 1;
            pointer-events: auto;
        }

        .logo-main-text {
            font-size: 1.2rem;
            letter-spacing: 0.5px;
        }

        .mobile-header-left,
        .header-right-icons {
            position: relative;
            z-index: 2;
        }

        .header-right-icons {
            gap: 1rem !important;
        }

        .mobile-menu-btn {
            line-height: 1;
            color: #111;
        }
    }

    @media (min-width: 992px) {
        .mobile-nav-drawer {
            display: none !important;
        }
    }

    /* FULL-WIDTH MEGA MENU CSS START HERE */
    .nav-item {
        position: static !important;
    }

    .mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        max-width: 100vw;
        background: #fff;
        border-bottom: 1px solid #e5e5e5;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        display: none;
        z-index: 1040;
        padding: 0;
        animation: fadeIn 0.18s ease;
    }

    .mega-menu-width {
        width: 73%;
    }

    .nav-item:hover>.mega-menu,
    .header-mega-panel.is-active {
        display: block;
    }

    .mega-menu a:hover {
        text-decoration: underline;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(-6px);
        }

        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }

    /* FULL-WIDTH MEGA MENU CSS END HERE */


    /* HERO SECTION CSS START HERE */
    .hero-section {
        display: grid;
        grid-template-columns: 1fr 1.1fr 1fr;
        min-height: 520px;
    }

    .hero-left,
    .hero-right {
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .hero-left {
        background-image: url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?w=800&q=80");
    }

    .hero-right {
        background-image: url("https://images.unsplash.com/photo-1543163521-1bf539c55dd2?w=800&q=80");
    }

    .hero-center {
        background: #f4f0e8;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 30px;
    }

    .hero-center h1 {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.2rem, 4vw, 3.2rem);
        font-weight: 500;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .hero-center p {
        font-size: 14px;
        color: var(--gray);
        margin-bottom: 28px;
    }

    .hero-btns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    .hero-btns a {
        background: #111;
        color: #fff;
        padding: 16px 10px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-align: center;
        border: 1px solid #000;
    }

    .hero-btns a:hover {
        background: #fff;
        color: #000;
        text-decoration: none;
    }

    /* HERO SECTION CSS END HERE */


    /* TRUST BAR CSS START HERE */
    .trust-bar {
        border-bottom: 1px solid var(--border);
        padding: 20px 0;
        font-size: 13px;
        background-color: #ebebeb;
        margin-top: 8px;
    }

    .trust-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        text-align: center;
        min-height: 48px;
    }

    .trust-item i {
        color: #00b67a;
    }

    .trust-item img {
        height: 23px;
    }

    .trust-item p {
        margin: 0;
        font-size: 20px;
        font-weight: 500;
        color: #1d1a1a;
    }

    /* Mobile trust-bar carousel */
    .trust-bar-carousel .carousel-item {
        padding: 4px 12px;
    }

    .trust-bar-carousel .trust-item {
        justify-content: center;
        gap: 10px;
    }

    /* TRUST BAR CSS END HERE */


    /* PRODUCT CARD CSS START HERE (Editor's Picks slides) */
    .wb-slide .product-card {
        text-align: start;
    }

    .wb-slide .product-card .img-wrap {
        position: relative;
        aspect-ratio: 3/4;
        overflow: hidden;
        background: #f8f8f8;
        margin-bottom: 14px;
    }

    .wb-slide .product-card .img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition:
            opacity 0.4s ease,
            transform 0.4s ease;
    }

    .wb-slide .product-card .img-wrap .img-primary,
    .wb-slide .product-card .img-wrap .img-secondary {
        position: absolute;
        inset: 0;
    }

    .wb-slide .product-card .img-wrap .img-primary {
        opacity: 1;
        z-index: 1;
    }

    .wb-slide .product-card .img-wrap .img-secondary {
        opacity: 0;
        z-index: 2;
    }

    .wb-slide .product-card:hover .img-wrap .img-primary {
        opacity: 0;
    }

    .wb-slide .product-card:hover .img-wrap .img-secondary {
        opacity: 1;
    }

    .wb-slide .product-card:hover .img-wrap img {
        transform: scale(1.05);
    }

    .wb-slide .product-card .brand {
        font-size: 11px;
        color: var(--gray);
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }

    .wb-slide .product-card .name {
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .wb-slide .product-card .price {
        font-size: 13px;
    }


    .wb-slide .product-card .price .old {
        text-decoration: line-through;
        color: #999;
        margin-right: 6px;
    }

    /* PRODUCT CARD CSS END HERE */


    /* SHOP BY CSS START HERE */
    .shop-by-card {
        position: relative;
        overflow: hidden;
        aspect-ratio: 3/4;
    }

    .shop-by-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.5s ease;
    }

    .shop-by-card:hover img {
        transform: scale(1.06);
    }

    .shop-by:hover .overlay {
        border-bottom: 1px solid #000;
    }

    .overlay {
        text-transform: uppercase;
        display: inline-block;
        margin-top: 10px;
    }

    /* SHOP BY CSS END HERE */


    /* COLLECTION CSS START HERE */
    .collection-card {
        text-align: center;
    }

    .collection-card .img-wrap {
        aspect-ratio: 3/4;
        overflow: hidden;
        background: #f8f8f8;
        margin-bottom: 16px;
    }

    .collection-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .collection-card h5 {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 6px;
    }

    .collection-card p {
        font-size: 13px;
        color: var(--gray);
        margin-bottom: 8px;
    }

    .collection-card a {
        font-size: 12px;
        font-weight: 500;
        text-underline-offset: 3px;
    }

    .collection-card a:hover {
        text-decoration: underline;
    }

    /* COLLECTION CSS END HERE */


    /* BRANDS CSS START HERE */
    .brand-card .img-wrap {
        aspect-ratio: 1;
        overflow: hidden;
        margin-bottom: 16px;
    }

    .brand-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .brand-card h5 {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }

    .brand-card p {
        font-size: 13px;
        color: var(--gray);
        line-height: 1.5;
    }

    /* BRANDS CSS END HERE */


    /* STORES + MAGAZINE CSS START HERE */
    .store-mag-card {
        position: relative;
        overflow: hidden;
    }

    .store-mag-card img {
        width: 100%;
        aspect-ratio: 16/10;
        object-fit: cover;
    }

    .store-mag-card h5 {
        font-size: 14px;
        font-weight: 600;
        margin: 14px 0 4px;
    }

    .store-mag-card p {
        font-size: 13px;
        color: var(--gray);
    }

    .mag-sub {
        margin-bottom: 38px;
    }

    .mag-sub:hover a {
        border-bottom: 1px solid #000;
    }

    .stores-tabs {
        display: flex;
        gap: 25px;
        margin-bottom: 15px;
    }

    .stores-tab {
        background: none;
        border: none;
        padding: 0 0 8px;
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        color: #777;
        border-bottom: 1px solid transparent;
    }

    .stores-tab.active {
        color: #111;
        border-bottom-color: #111;
    }

    .store-card {
        width: 100%;
    }

    .store-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        display: block;
    }

    /* STORES + MAGAZINE CSS END HERE */


    /* COMMUNITY / REVIEWS CSS START HERE */
    .community-grid img {
        aspect-ratio: 1;
        object-fit: cover;
        width: 100%;
    }

    .review-card {
        padding: 24px;
        height: 100%;
    }

    .review-card .stars {
        color: #00b67a;
        margin-bottom: 10px;
    }

    .review-card .title {
        font-weight: 600;
        font-size: 13px;
        margin-bottom: 6px;
    }

    .review-card .text {
        font-size: 13px;
        color: var(--gray);
        margin-bottom: 12px;
    }

    .review-card .author {
        font-size: 12px;
        color: #999;
    }

    .review {
        min-height: 18vh;
    }

    .reviews-carousel {
        height: 100%;
    }

    .reviews-carousel {
        position: relative;
        padding: 0 40px;
    }

    .reviews-carousel .carousel-control-prev,
    .reviews-carousel .carousel-control-next {
        width: 36px;
        height: 36px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        opacity: 1;
    }

    .reviews-carousel .carousel-control-prev {
        left: 0;
    }

    .reviews-carousel .carousel-control-next {
        right: 0;
    }

    .review-arrow {
        color: #111;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none !important;
        border: none;
        opacity: 1 !important;
    }

    .carousel-control-next:focus,
    .carousel-control-next:hover,
    .carousel-control-prev:focus,
    .carousel-control-prev:hover {
        color: #000 !important;
    }

    .reviews-carousel .col-md-4:not(:last-child) .review-card {
        border-right: 1px solid #e5e5e5;
        padding-right: 20px;
        margin-right: -1px;
    }

    /* COMMUNITY / REVIEWS CSS END HERE */


    /* CTA SECTION CSS START HERE */
    .cta-section {
        background: #f8f8f8;
        text-align: center;
        padding: 70px 20px;
    }

    .cta-section h2 {
        font-family: "Playfair Display", serif;
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 500;
        margin-bottom: 12px;
    }

    .cta-section p {
        color: var(--gray);
        max-width: 750px;
        margin: 0 auto 28px;
        font-size: 15px;
    }

    .btn-dark-custom {
        background: #111;
        color: #fff;
        border: none;
        padding: 20px 38px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        border: 1px solid #111;
        text-transform: uppercase;
    }

    .btn-dark-custom:hover {
        background: #fff;
        color: #111;
        text-decoration: none;
    }

    /* CTA SECTION CSS END HERE */


    /* FEATURES BAR CSS START HERE */
    .features-bar {
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 28px 0;
        text-align: center;
        font-size: 13px;
    }

    .features-bar .row > [class*="col-"] {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: left;
    }

    .features-bar .row > [class*="col-"] svg,
    .features-bar .row > [class*="col-"] i {
        flex-shrink: 0;
        order: 0;
    }

    .features-bar .row > [class*="col-"] span {
        order: 1;
    }

    .features-bar .row > [class*="col-"] svg {
        width: 24px;
        height: 24px;
    }

    .features-bar i {
        margin-right: 0;
        font-size: 16px;
    }

    .features-bar p {
        font-size: 25px;
        text-transform: uppercase;
        font-weight: 500;
        color: #1a1a1a;
    }

    /* FEATURES BAR CSS END HERE */


    /* FOOTER CSS START HERE */
    footer {
        background: #111;
        color: #fff;
        padding: 60px 0 30px;
        font-size: 13px;
    }

    footer h6 {
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    footer a {
        color: #fff;
        display: block;
        margin-bottom: 8px;
        text-decoration: none;
    }

    footer a:hover {
        text-decoration: underline;
        color: #fff;
    }

    .footer-newsletter h6.fs-4 {
        font-size: 1.35rem;
        letter-spacing: 0.5px;
        text-transform: none;
        font-weight: 500;
    }

    .footer-newsletter-text {
        color: #ccc;
        max-width: 520px;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        margin-top: 40px;
        padding-top: 24px;
        font-size: 12px;
        color: #fff;
    }

    .footer-bottom img {
        height: 36px;
    }

    footer .email-field {
        width: 70%;
        height: 55px;
        padding: 10px 14px;
        border: none;
        outline: none;
    }

    footer .sign-up {
        width: 28%;
        background: #fff;
        color: #111;
        text-transform: uppercase;
        font-weight: 600;
        border: none;
        letter-spacing: 0.8px;
    }

    footer .sign-up:hover {
        background: #000;
        color: #fff;
    }

    /* Mobile accordion */
    .footer-accordion {
        border-top: 1px solid #444;
        margin-top: 8px;
    }

    .footer-acc-item {
        border-bottom: 1px solid #444;
    }

    .footer-acc-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        border: none;
        color: #fff;
        padding: 16px 0;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        cursor: pointer;
        text-align: left;
        font-family: inherit;
    }

    .footer-acc-icon {
        position: relative;
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    .footer-acc-icon::before,
    .footer-acc-icon::after {
        content: "";
        position: absolute;
        background: #fff;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .footer-acc-icon::before {
        width: 12px;
        height: 1.5px;
    }

    .footer-acc-icon::after {
        width: 1.5px;
        height: 12px;
        opacity: 1;
        transition: opacity 0.15s ease;
    }

    .footer-acc-btn:not(.collapsed) .footer-acc-icon::after {
        opacity: 0;
    }

    .footer-acc-body {
        padding: 0 0 14px;
    }

    .footer-acc-body a {
        color: #ccc;
        font-size: 13px;
        margin-bottom: 10px;
        letter-spacing: 0.2px;
        text-transform: none;
    }

    .footer-acc-body a:hover {
        color: #fff;
    }

    /* Social icons — circular white buttons */
    .footer-social {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 28px;
        margin-bottom: 8px;
    }

    .footer-social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        color: #111 !important;
        margin-bottom: 0;
        font-size: 15px;
        transition: opacity 0.15s ease;
    }

    .footer-social-link:hover {
        opacity: 0.85;
        text-decoration: none;
        color: #111 !important;
    }

    /* FOOTER CSS END HERE */


    /* RESPONSIVE CSS START HERE — match W&B mobile screenshot */

    /* Do NOT set overflow-x:hidden on html/body — it breaks position:sticky */
    html {
        max-width: 100%;
    }

    body {
        max-width: 100%;
        overflow-x: clip; /* clip avoids sticky bug that overflow:hidden causes */
    }

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

    /* Ensure header sticks above page content while scrolling */
    .main-header.sticky-top,
    header.main-header {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1050;
        background: #fff;
    }

    @media (max-width: 991.98px) {
        .hero-section {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        /* Image → text → image (stacked promo banners) */
        .hero-left {
            order: 1;
            height: 320px;
        }

        .hero-center {
            order: 2;
            padding: 40px 24px 36px;
        }

        .hero-right {
            order: 3;
            height: 320px;
        }

        .nav-link {
            padding: 0.4rem 0.6rem !important;
            font-size: 12px;
        }

        .section .d-flex.justify-content-between.mb-4 {
            flex-direction: column;
            gap: 0.75rem;
        }

        .section .d-flex.justify-content-between.mb-4 > .col-md-3,
        .section .d-flex.justify-content-between.mb-4 > .col-md-9 {
            width: 100%;
            max-width: 100%;
        }

        .section .d-flex.justify-content-between.mb-4 .mt-5 {
            margin-top: 0.5rem !important;
        }

        .wb-track {
            gap: 0.75rem;
        }
    }

    @media (max-width: 767.98px) {
        .logo-main-text {
            font-size: 1.1rem;
        }

        .search-box {
            display: none;
        }

        .section {
            padding: 40px 0 28px;
        }

        .section.pt-0 {
            padding-top: 8px !important;
        }

        .container,
        .container-fluid {
            padding-left: 16px !important;
            padding-right: 16px !important;
        }

        .top-bar {
            font-size: 11px !important;
            padding-top: 10px !important;
            padding-bottom: 10px !important;
            letter-spacing: 0.2px;
            line-height: 1.35;
        }

        /* Hero full-bleed */
        .hero-left,
        .hero-right {
            height: 55vw;
            min-height: 220px;
            max-height: 340px;
        }

        .hero-center {
            background: #f7f3eb;
            padding: 36px 20px 32px;
        }

        .hero-center h1 {
            font-family: "Playfair Display", serif;
            font-size: 1.55rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
        }

        .hero-center p {
            font-size: 13px;
            color: #555;
            margin-bottom: 22px;
            max-width: 280px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.45;
        }

        .hero-btns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            max-width: 320px;
            width: 100%;
            margin: 0 auto;
        }

        .hero-btns a {
            display: block;
            padding: 14px 12px;
            font-size: 11px;
            letter-spacing: 1.2px;
        }

        /* Show all hero category buttons on mobile (was previously hiding all but first) */
        .hero-btns a:not(:first-child) {
            display: block;
        }

        .section-title {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.8px;
            margin-bottom: 16px;
        }

        /* Editor's Picks: keep as slider (2 visible) so arrows work */
        .wb-slider[data-slider^="editors"] {
            overflow: hidden;
        }

        .wb-slider[data-slider^="editors"] .wb-track {
            display: flex;
            gap: 10px;
        }

        .wb-slider[data-slider^="editors"] .wb-slide {
            flex: 0 0 calc((100% - 10px) / 2) !important;
            width: auto !important;
            max-width: none;
        }

        .wb-slide .product-card .brand a,
        .wb-slide .product-card .brand {
            font-size: 11px;
            color: #666;
        }

        .wb-slide .product-card .name,
        .wb-slide .product-card .name a {
            font-size: 12px;
            line-height: 1.3;
        }

        .wb-slide .product-card .price {
            font-size: 12px;
        }

        .wb-slide .product-card .img-wrap {
            margin-bottom: 10px;
            aspect-ratio: 1 / 1.15;
        }

        /* Shop By: keep as slider (2 visible) so arrows work */
        .wb-slider[data-slider="shop-by"] {
            overflow: hidden;
        }

        .wb-slider[data-slider="shop-by"] .wb-track {
            display: flex;
            gap: 10px;
        }

        .wb-slider[data-slider="shop-by"] .wb-slide {
            flex: 0 0 calc((100% - 10px) / 2) !important;
            width: auto !important;
        }

        /* Meet Our Brands: same arrow slider as Shop By */
        .wb-slider[data-slider="brands"] {
            overflow: hidden;
        }

        .wb-slider[data-slider="brands"] .wb-track {
            display: flex;
            gap: 10px;
        }

        .wb-slider[data-slider="brands"] .wb-slide {
            flex: 0 0 calc((100% - 10px) / 2) !important;
            width: auto !important;
        }

        .wb-slider[data-slider="brands"] .brand-card {
            height: 100%;
        }

        .shop-by-card {
            aspect-ratio: 3 / 4;
        }

        .overlay {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.6px;
            margin-top: 8px;
            text-transform: uppercase;
        }

        /* Collection: peek slider */
        .wb-slider[data-slider="collection"] {
            overflow: hidden;
            margin-right: -16px;
            padding-right: 16px;
        }

        .wb-slider[data-slider="collection"] .wb-track {
            display: flex;
            gap: 12px;
        }

        .wb-slider[data-slider="collection"] .wb-slide {
            flex: 0 0 78% !important;
            width: 78% !important;
        }

        .collection-card {
            text-align: left;
        }

        .collection-card h5 {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-top: 12px;
            margin-bottom: 6px;
        }

        .collection-card p {
            font-size: 12px;
            color: #666;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .collection-card a,
        .collection-card .discover {
            font-size: 12px;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        /* Brands horizontal scroll */
        .brand-mobile-scroll {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            gap: 12px;
            margin: 0 -16px;
            padding: 0 16px 8px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .brand-mobile-scroll::-webkit-scrollbar {
            display: none;
        }

        .brand-mobile-scroll > [class*="col-"] {
            flex: 0 0 72%;
            max-width: 72%;
            scroll-snap-align: start;
            padding-left: 0;
            padding-right: 0;
            width: 72%;
        }

        .brand-card h5 {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-top: 10px;
        }

        .brand-card p {
            font-size: 12px;
            line-height: 1.4;
            color: #666;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .editors-tabs {
            gap: 0;
            border-bottom: 1px solid #e5e5e5;
            margin-bottom: 18px !important;
        }

        .editors-tab {
            padding: 10px 14px 12px;
            font-size: 12px;
            letter-spacing: 0.5px;
        }

        .trust-bar {
            padding: 16px 0;
            font-size: 12px;
            margin-top: 0;
        }

        .trust-item {
            min-height: 36px;
            gap: 8px;
            font-size: 12px;
        }

        .trust-item p {
            font-size: 15px;
        }

        .store-mag-card img,
        .store-mag-card .img-fluid {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
        }

        .mag-sub {
            font-size: 14px;
            margin-bottom: 12px;
        }

        .community-grid {
            margin-bottom: 28px !important;
        }

        .community-grid > [class*="col-"] {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .community-grid img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
        }

        .btn-dark-custom {
            display: block;
            width: 100%;
            text-align: center;
            padding: 14px 16px;
            font-size: 12px;
            letter-spacing: 1px;
        }

        .review .col-md-10 {
            display: none;
        }

        .review .col-md-2 {
            width: 100%;
            max-width: 100%;
        }

        .review-card {
            text-align: center;
            padding: 8px 0 16px;
        }

        .cta-section {
            padding: 48px 20px;
        }

        .cta-section h2 {
            font-size: 1.35rem;
            letter-spacing: 1px;
        }

        .cta-section p {
            font-size: 13px;
            max-width: 320px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-bar {
            padding: 28px 16px;
        }

        .features-bar p {
            font-size: 13px;
            letter-spacing: 1px;
            margin-bottom: 1.25rem !important;
            line-height: 1.35;
            max-width: 280px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-bar .row > [class*="col-"] {
            flex: 0 0 50%;
            max-width: 50%;
            font-size: 11px;
            line-height: 1.3;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-align: left;
            padding: 12px 6px;
        }

        .features-bar .row > [class*="col-"] svg,
        .features-bar .row > [class*="col-"] i {
            margin: 0 !important;
            flex-shrink: 0;
            order: 0;
        }

        .features-bar .row > [class*="col-"] span {
            order: 1;
        }

        .features-bar .row > [class*="col-"] svg {
            width: 22px;
            height: 22px;
        }

        .features-bar .row > [class*="col-"] .ms-2 {
            margin-left: 0 !important;
        }

        footer {
            padding: 36px 0 24px;
            font-size: 12px;
        }

        footer h6.fs-4,
        .footer-newsletter h6.fs-4 {
            font-size: 1.1rem !important;
            letter-spacing: 0.5px;
        }

        .footer-newsletter-text {
            font-size: 12px;
            line-height: 1.45;
            margin-bottom: 16px !important;
        }

        footer .footer-signup.input-group,
        footer .input-group {
            flex-direction: row !important;
            flex-wrap: nowrap;
            gap: 8px !important;
        }

        footer .email-field {
            width: auto;
            height: 48px;
            border: none;
            flex: 1 1 auto;
            min-width: 0;
        }

        footer .sign-up {
            width: auto;
            min-width: 96px;
            height: 48px;
            border: none;
            padding: 0 16px;
            flex-shrink: 0;
        }

        .footer-social {
            margin-top: 24px;
            gap: 10px;
        }

        .footer-social-link {
            width: 38px;
            height: 38px;
            font-size: 14px;
        }

        .footer-bottom {
            margin-top: 24px;
            padding-top: 20px;
            border-top-color: #333;
        }

        .footer-bottom img {
            height: 28px;
        }

        .footer-bottom .d-flex {
            flex-wrap: wrap;
            gap: 6px !important;
        }
    }

    @media (max-width: 575.98px) {
        .hero-left,
        .hero-right {
            height: 62vw;
            min-height: 200px;
        }

        .hero-center h1 {
            font-size: 1.4rem;
        }

        .wb-slider[data-slider="collection"] .wb-slide {
            flex: 0 0 82% !important;
            width: 82% !important;
        }

        .brand-mobile-scroll > [class*="col-"] {
            flex: 0 0 78%;
            max-width: 78%;
            width: 78%;
        }
    }
