﻿/* ============================================================
   site.css  —  Premium ECommerce UI
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1250px;
    }
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
:root {
    --primary: #6c47ff;
    --primary-hover: #5535e0;
    --primary-light: #ede9ff;
    --accent: #ff6b35;
    --accent-light: #fff1ec;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --gray-100: #f8fafc;
    --gray-200: #f1f5f9;
    --gray-300: #e2e8f0;
    --gray-500: #64748b;
    --gray-700: #334155;
    --radius-sm: 0.5rem;
    --radius: 0.875rem;
    --radius-lg: 1.25rem;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
    --shadow: 0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.05);
    --shadow-lg: 0 20px 40px rgba(108,71,255,.12), 0 4px 12px rgba(0,0,0,.08);
    --transition: 180ms cubic-bezier(.16,1,.3,1);
    --font: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
}

body {
    font-family: var(--font);
    background: var(--gray-100);
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    margin-bottom: 0;
}

a {
    color: var(--primary);
    text-decoration: none;
}

    a:hover {
        color: var(--primary-hover);
    }

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-200);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 99px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #cbd5e1;
    }


/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
    background: #ffffff !important;
    border-bottom: 1px solid var(--gray-300);
    padding: .3rem 0 0 0;
    box-shadow: 0 1px 0 var(--gray-300);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -.03em;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: .4rem;
}

    .navbar-brand i {
        font-size: 1.6rem;
    }

.navbar .input-group {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 0 0 1.5px var(--gray-300);
    transition: box-shadow var(--transition);
}

    .navbar .input-group:focus-within {
        box-shadow: 0 0 0 2.5px var(--primary);
    }

    .navbar .input-group .form-control {
        border: none;
        background: var(--gray-100);
        padding: .55rem 1rem;
        font-size: .9rem;
    }

        .navbar .input-group .form-control:focus {
            box-shadow: none;
            background: #fff;
        }

    .navbar .input-group .btn {
        border: none;
        background: var(--primary);
        color: #fff;
        padding: .55rem 1rem;
    }

        .navbar .input-group .btn:hover {
            background: var(--primary-hover);
        }

.navbar-nav .nav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    font-size: .9rem;
    padding: .45rem .75rem !important;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}


/* Cart badge */
.cart-badge {
    position: absolute;
    top: -4px;
    right: -3px;
    font-size: .6rem;
    background: var(--accent) !important;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    font-weight: 700;
}

/* ── Mobile Fixes ──────────────────────────────────── */
@media (max-width: 991.98px) {

    /* Search bar full width on mobile */
    .navbar-search-form {
/*        width: 100% !important;*/
        margin: .5rem 0 !important;
    }

    /* Icons stay in a horizontal row, don't stack */
    .navbar-right-nav {
        flex-direction: row !important;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        margin-top: .25rem;
    }

        /* Tighter icon padding on mobile */
        .navbar-right-nav .nav-link {
            padding: .4rem .45rem !important;
        }

        /* Dropdown opens correctly on mobile */
        .navbar-right-nav .dropdown-menu {
            position: absolute !important;
            right: 0;
            left: auto;
        }

    .ntficait {
        right: -30vw !important;
    }
    /* Login/Register buttons smaller on mobile */
    .navbar-right-nav .btn {
        font-size: .8rem;
        padding: .3rem .6rem;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    min-height: 620px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s linear;
}

    .slide.active {
        opacity: 1;
        visibility: visible;
    }

.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .slide-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        /* UPDATED - Removed zoom effect */
        transform: none !important;
        transition: none !important;
    }

.slide.active .slide-bg img {
    /* UPDATED - Removed active scale */
    transform: none !important;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.42) 45%, rgba(0,0,0,0.12) 100% );
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 9%;
    padding-right: 20px;
    padding-top: 10px;
}

.slide-eyebrow {
    color: #d9b87d;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 6px;
    margin-bottom: 15px;
}

.slide-headline {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

    .slide-headline em {
        color: #d9b87d;
        font-style: normal;
    }

.slide-subtext {
    max-width: 440px;
    color: rgba(255,255,255,.75);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.slide-cta-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: #fff;
    color: #111;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: .3s;
}

    .btn-primary-cta:hover {
        background: #d9b87d;
        color: #fff;
    }

.btn-ghost-link {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    color: #fff;
    z-index: 10;
    cursor: pointer;
    /* UPDATED - Removed arrow animation */
    transition: none !important;
}

    .slider-arrow:hover {
        /* UPDATED - No hover effect */
        transform: translateY(-50%);
        background: rgba(255,255,255,.08);
    }

.arrow-prev {
    left: 25px;
}

.arrow-next {
    right: 25px;
}

/* PAGINATION */
.slider-pagination {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .slider-pagination .dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: rgba(255,255,255,0.35);
        border: none;
        cursor: pointer;
        transition: all .3s ease;
    }

        .slider-pagination .dot.active {
            width: 28px;
            border-radius: 30px;
            background: #d9b87d;
        }

/* MOBILE */
@media(max-width:768px) {
    .hero-slider {
        height: 78vh;
        min-height: 540px;
    }

    .slide-bg img {
        object-position: 68% center;
    }

    .slide-content {
        padding: 0 25px;
        padding-top: 25px;
        max-width: 100%;
        left: 0;
    }

    .slide-headline {
        font-size: 46px;
        line-height: 1.08;
        margin-bottom: 15px;
    }

    .slide-subtext {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .slide-eyebrow {
        font-size: 10px;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }

    .slider-arrow {
        display: none;
    }

    .btn-primary-cta {
        width: auto;
        padding: 14px 28px;
    }

    .slider-pagination {
        bottom: 12px;
    }

        .slider-pagination .dot {
            width: 7px;
            height: 7px;
        }

            .slider-pagination .dot.active {
                width: 22px;
            }
}

/* FORCE REMOVE ALL IMAGE EFFECTS */
/* FINAL FIX - NO IMAGE EFFECT */
/* FINAL FIX - NO IMAGE EFFECT */
.slide,
.slide-bg,
.slide-bg img,
.slide.active,
.slide.active .slide-bg,
.slide.active .slide-bg img {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
}

    .slide:hover .slide-bg img,
    .slide:focus .slide-bg img,
    .slide:active .slide-bg img {
        transform: none !important;
    }

/* ARROWS NO EFFECT */
.slider-arrow,
.slider-arrow:hover,
.slider-arrow:focus,
.slider-arrow:active {
    transform: translateY(-50%) !important;
    transition: none !important;
    animation: none !important;
}

/* ==============================
       SLIDE COUNTER
    ============================== */
.slide-counter {
    position: absolute;
    bottom: 2.4rem;
    right: clamp(1.5rem, 4vw, 4rem);
    z-index: 20;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    color: rgba(245, 237, 224, 0.35);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
}

    .slide-counter .num-current {
        color: #c8a96e;
        font-size: 1.05rem;
        font-weight: 300;
    }

    .slide-counter .num-sep {
        margin: 0 0.2rem;
    }

/* ==============================
       SCROLL HINT
    ============================== */
.scroll-hint {
    position: absolute;
    bottom: 3.8rem;
    left: clamp(1.8rem, 5vw, 5.5rem);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0.4;
}

    .scroll-hint span {
        font-size: 0.56rem;
        font-weight: 400;
        letter-spacing: 0.32em;
        text-transform: uppercase;
        color: #f5ede0;
        writing-mode: vertical-rl;
    }

    .scroll-hint::after {
        content: '';
        display: block;
        width: 1px;
        height: 46px;
        background: linear-gradient(to bottom, #c8a96e, transparent);
        animation: scrollPulse 1.9s ease-in-out infinite;
    }

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.25;
        transform: scaleY(0.55);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }
}

@media (max-width: 768px) {
    .scroll-hint {
        display: none;
    }
}

/* ==============================
       PROGRESS BAR
    ============================== */
.progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(200, 169, 110, 0.12);
    z-index: 20;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #c8a96e, #e2c99a);
}

    .progress-fill.go {
        width: 100%;
        transition: width 7000ms linear;
    }

    .progress-fill.reset {
        width: 0%;
        transition: none;
    }







/* ══════════════════════════════════════════════
   SECTION HEADINGS
══════════════════════════════════════════════ */
.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--dark);
}

/* ══════════════════════════════════════════════
   CATEGORY CARDS
══════════════════════════════════════════════ */
.category-card {
    border-radius: var(--radius) !important;
    transition: transform var(--transition), box-shadow var(--transition) !important;
    box-shadow: var(--shadow-sm) !important;
    border: 1.5px solid var(--gray-200) !important;
    background: #fff !important;
}

    .category-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg) !important;
        border-color: var(--primary-light) !important;
    }

    .category-card img {
        border-radius: 50%;
        border: 2px solid var(--primary-light);
    }

/* ══════════════════════════════════════════════
   PRODUCT CARD
══════════════════════════════════════════════ */
.product-card {
    border-radius: var(--radius) !important;
    border: 1.5px solid var(--gray-200) !important;
    box-shadow: var(--shadow-sm) !important;
    background: #fff !important;
    transition: transform var(--transition), box-shadow var(--transition) !important;
    overflow: hidden;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg) !important;
        border-color: var(--primary-light) !important;
    }

.product-card-img-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 1;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 360ms ease;
}



.product-img1 {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

    .product-img2 {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

  






.product-card:hover .product-card-img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: .7rem;
    font-weight: 700;
    padding: .3em .7em;
    border-radius: var(--radius-sm);
    background: var(--danger) !important;
    letter-spacing: .03em;
}

.product-badge-top {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: .7rem;
    font-weight: 700;
    padding: .3em .7em;
    border-radius: var(--radius-sm);
}

.out-of-stock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

    .out-of-stock-overlay span {
        color: #fff;
        font-weight: 700;
        font-size: .85rem;
        letter-spacing: .06em;
        text-transform: uppercase;
        background: rgba(239,68,68,.8);
        padding: .35em .9em;
        border-radius: var(--radius-sm);
    }

.product-card-name {
    font-weight: 600;
    font-size: .95rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Add to Cart button in product card */
.btn-add-cart {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .85rem;
    padding: .5rem .9rem;
    width: 100%;
    transition: background var(--transition), transform var(--transition);
}

    .btn-add-cart:hover {
        background: var(--primary-hover);
        transform: translateY(-1px);
    }

/* ══════════════════════════════════════════════
   BUTTONS (global override)
══════════════════════════════════════════════ */
.btn {
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    letter-spacing: .01em;
}

    .btn:active {
        transform: scale(.97);
    }

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

    .btn-primary:hover, .btn-primary:focus {
        background: var(--primary-hover);
        border-color: var(--primary-hover);
        box-shadow: 0 4px 14px rgba(108,71,255,.4);
        color: #fff;
    }

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

    .btn-outline-primary:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
    }

.btn-danger {
    background: var(--danger);
    border-color: var(--danger);
}

.btn-success {
    background: var(--success);
    border-color: var(--success);
}

/* ══════════════════════════════════════════════
   CARDS (generic)
══════════════════════════════════════════════ */
.card {
    border-radius: var(--radius) !important;
    border: 1.5px solid var(--gray-200) !important;
}

.card-body {
    padding: 1.5rem;
}

/* ══════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════ */
.form-control, .form-select {
    border-radius: 100px;
    border: 1.5px solid var(--gray-300);
    padding: .6rem .9rem;
    font-size: .9375rem;
    background: var(--gray-100);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.btnround {
    border-radius: 100px;
    width: 20%;
    border: 1.5px solid var(--gray-300);
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(108,71,255,.12);
    }

.form-label {
    font-weight: 500;
    font-size: .875rem;
    color: var(--gray-700);
}

/* ══════════════════════════════════════════════
   BADGES
══════════════════════════════════════════════ */
.badge {
    font-weight: 600;
    letter-spacing: .03em;
    border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════════════
   ALERTS
══════════════════════════════════════════════ */
.alert {
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: .9rem;
}

.alert-info {
    background: #eff6ff;
    color: #1e40af;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
}

.alert-warning {
    background: #fffbeb;
    color: #92400e;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
}

.validation-summary-errors, .validation-summary-valid {
    display: none !important;
}

/* ══════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════ */
.breadcrumb {
    background: transparent;
    padding: 0;
    font-size: .82rem;
    gap: .25rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-500);
}

.breadcrumb-item a {
    color: var(--gray-500);
}

    .breadcrumb-item a:hover {
        color: var(--primary);
    }

.breadcrumb-item.active {
    color: var(--dark);
    font-weight: 500;
}

/* ══════════════════════════════════════════════
   CART PAGE
══════════════════════════════════════════════ */
.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-200);
}

/* ══════════════════════════════════════════════
   ORDER CONFIRMATION
══════════════════════════════════════════════ */
.confirmation-icon .checkmark-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(34,197,94,.35);
    animation: popIn .5s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
    background: var(--dark);
    color: rgba(255,255,255,.65);
    padding: 3rem 0 1.5rem;
}

    footer .footer-brand {
        font-weight: 800;
        font-size: 1.3rem;
        color: #fff;
        letter-spacing: -.02em;
        display: flex;
        align-items: center;
        gap: .4rem;
        margin-bottom: .75rem;
    }

    footer h6 {
        color: #fff;
        font-weight: 600;
        font-size: .8rem;
        text-transform: uppercase;
        letter-spacing: .08em;
        margin-bottom: 1rem;
    }

    footer a {
        color: rgba(255,255,255,.55);
        font-size: .875rem;
        display: block;
        margin-bottom: .45rem;
        transition: color var(--transition);
    }

        footer a:hover {
            color: #fff;
        }

    footer .footer-bottom {
        border-top: 1px solid rgba(255,255,255,.1);
        padding-top: 1.25rem;
        margin-top: 2rem;
        font-size: .8rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: .5rem;
    }

/* ══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════════ */
.product-gallery .main-image-wrapper {
    border-radius: var(--radius) !important;
    overflow: hidden;
    border: 1.5px solid var(--gray-200) !important;
    background: var(--gray-100);
}

.thumb-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: border-color var(--transition), transform var(--transition);
}

    .thumb-img:hover, .thumb-img.active {
        border-color: var(--primary);
        transform: scale(1.05);
    }

/* Star ratings */
.bi-star-fill.text-warning {
    color: #f59e0b !important;
}

/* ══════════════════════════════════════════════
   CHECKOUT STEPS
══════════════════════════════════════════════ */
.checkout-step-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .8rem;
    margin-right: .5rem;
}

/* ══════════════════════════════════════════════
   NOTIFICATION BELL
══════════════════════════════════════════════ */
.notification-dropdown {
    width: 320px;
    border-radius: var(--radius) !important;
    border: 1.5px solid var(--gray-200) !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 0 !important;
    overflow: hidden;
}

.notification-item {
    padding: .85rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    font-size: .875rem;
    transition: background var(--transition);
}

    .notification-item:hover {
        background: var(--gray-100);
    }

    .notification-item.unread {
        background: var(--primary-light);
    }

    .notification-item:last-child {
        border-bottom: none;
    }

/* ══════════════════════════════════════════════
   RESPONSIVE UTILITIES
══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }

        .hero-section h1 {
            font-size: 1.75rem;
        }
}

/* Focus ring */
.btn:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(108,71,255,.18);
    outline: none;
}


.space { padding-top:50px;
       
}

.space2 {
    padding-bottom: 50px;
}


/* ── Promo Banners ─────────────────────────────────── */
.promo-section {
    padding-block: 2rem;
}

.promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    min-height: 160px;
    padding: 2rem;
}

/* Gradient backgrounds */
.promo-deal {
    background: linear-gradient(135deg, #ff6b35, #f59e0b);
}

.promo-arrivals {
    background: linear-gradient(135deg, #6c47ff, #a855f7);
}

/* Text content layer — sits above the image */
.promo-content {
    position: relative;
    z-index: 1;
}

.promo-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.promo-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0.3rem 0;
}

.promo-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.promo-btn {
    border-radius: var(--radius-sm);
}

/* Decorative background image (deal card only) */
.promo-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 220px;
    object-fit: cover;
    opacity: 0.35;
}

.btn-ghost-white {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1rem;
    line-height:30px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

    .btn-ghost-white:hover {
        background: rgba(255, 255, 255, 0.25);
        color: #fff;
        border-color: rgba(255, 255, 255, 0.6);
    }

/* ── Stats Bar ─────────────────────────────────────── */
.stats-bar {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
}

.stats-number {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
}

.stats-label {
    font-size: .78rem;
    font-weight: 500;
    color: var(--gray-500);
}







/* ══════════════════════════════════════════════
   SIDEBAR FILTERS — Premium Look
══════════════════════════════════════════════ */

aside .filter-section {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 1.25rem;
}

    aside .filter-section:last-of-type {
        border-bottom: none;
    }

.filter-heading {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 0.75rem !important;
}

/* Category links */
aside a.text-muted {
    color: #fff !important;
    font-size: 0.875rem;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}

    aside a.text-muted:hover {
        background: #f5f5f8;
        color: var(--primary) !important;
        text-decoration: none !important;
    }

aside a.fw-semibold.text-primary {
    background: #ede9fe;
    color: var(--primary) !important;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.875rem;
}

/* Price inputs */
aside .form-control-sm {
    border-radius: 8px;
    border: 1.5px solid #e5e5ea;
    font-size: 0.82rem;
    padding: 6px 10px;
    background: #fafafa;
    transition: border-color 0.2s;
}

    aside .form-control-sm:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        background: #fff;
    }

/* Radio & Checkbox */
aside .form-check {
    padding: 3px 0 3px 1.75rem;
    
}

aside .form-check-input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    border: 1.5px solid #d1d1d6;
    cursor: pointer;
}

    aside .form-check-input:checked {
        background-color: var(--primary);
        border-color: var(--primary);
    }

aside .form-check-label {
    font-size: 0.855rem;
    color: #fff;
    cursor: pointer;
}

/* Buttons */
aside .btn-primary {
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px;
    letter-spacing: 0.02em;
}

aside .btn-outline-secondary {
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px;
    color: #666;
    border-color: #ddd;
}

    aside .btn-outline-secondary:hover {
        background: #f5f5f8;
        color: #333;
        border-color: #ccc;
    }

/* Sidebar wrapper card feel */
@media (min-width: 992px) {
    aside form {
/*        background: #0b1361;*/
        border-radius: 16px;
        padding: 1.25rem;
        box-shadow: 0 2px 12px rgba(0,0,0,0.07);
        border: 1px solid #f0f0f0;
        position: sticky;
        top: 80px;

    }
}


.relatedProductsWrap {
    position: relative;
    padding: 0 56px 46px;
    overflow: visible;
}

.relatedProductsSwiper {
    overflow: hidden;
}

    .relatedProductsSwiper .swiper-slide {
        height: auto;
        display: flex;
    }

        .relatedProductsSwiper .swiper-slide > * {
            width: 100%;
        }

/* arrows outside swiper */
.relatedProductsWrap .related-prev,
.relatedProductsWrap .related-next {
    top: 42%;
    width: 40px;
    height: 40px;
    background: #6c47ff;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 12px 22px rgba(15,23,42,.14);
    z-index: 20;
}

.relatedProductsWrap .related-prev {
    left: 6px;
}

.relatedProductsWrap .related-next {
    right: 6px;
}

    .relatedProductsWrap .related-prev:after,
    .relatedProductsWrap .related-next:after {
        font-size: 14px;
        font-weight: 900;
    }

/* pagination below cards */
.relatedProductsWrap .related-pagination {
    bottom: 8px !important;
    left: 0 !important;
    width: 100% !important;
    text-align: center;
    z-index: 15;
}

.relatedProductsWrap .swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
    margin: 0 4px !important;
}

.relatedProductsWrap .swiper-pagination-bullet-active {
    background: #6c47ff;
}

@media (max-width: 576px) {
    .product-action-group {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: .5rem !important;
    }

        

}




/* ─── ANNOUNCEMENT BAR ───────────────────────────── */
.announce-bar {
    background: #6fa3d8;
    color: #000;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .02em;
    position: relative;
    z-index: 100;
}

    .announce-bar a {
        color: #000;
        text-decoration: underline;
        text-underline-offset: 2px
    }

    .announce-bar strong {
        color: #fde68a
    }


.product-action-group {
    display:block!important;
}
.btnone { width:100%; margin-bottom:15px;
}

.btntwo {
    width: 49%;
  
}




@media (max-width: 991.98px) {
     .slide-content {
        padding: 0 clamp(0.2rem, 9vw, 10rem);
    }
    .slide-accent-line { display:none;}
    .slider-arrow {
        display: none;
    }
    .btnone {
        width: 100%!important;
        margin-bottom: 10px;
    }
    .btntwo {
        width: 49%!important;
        margin-bottom: 12px;
    }
    .result-count {
        display: none;
    }
}

.fw-semibold {
    font-weight: 500 !important;
}

footer {
    margin-top: 50px;
}



    footer .footer-brand img {
        width: 150px;
    }