/* ============================================================
  
   
   Ye file saari theme customization k liye hai.
   Yahan se colors, fonts, sizes sab kuch aasani se badal sakte hain.
   
   SECTIONS:
   1. CSS Variables (Brand Colors / Fonts)
   2. Header & Navigation
   3. Homepage — Hero Slider
   4. Homepage — Category Boxes
   5. Homepage — Product Cards
   6. Product Detail Page
   7. Checkout Page
   8. Footer
   9. Buttons & Badges
   10. MOBILE VIEW (768px aur neeche)
   11. TABLET VIEW (769px–1024px)
   ============================================================ */
/* ======================MAIN LOGO COLORS========================================== */
/* #42107b PURPLE
    #f46f18 ORANGE
    #e7097f PINK



*/

/* ============================================================
   1. CSS VARIABLES — Yahan se puri site ka color / font badlein
   ============================================================ */
:root {
    /* Brand Colors */
    --color-primary:       #42107b;          /* Main brand color (purple) */
    --color-primary-dark:  #e7097f;       /* Hover state (pink) */
    --color-secondary:     #333333;       /* Headings, dark text */
    --color-accent:        #e8572a;       /* Sale badges, alerts */
    --color-light-bg:      #8a0000;       /* Section backgrounds */
    --color-white:         #ffffff;
    --color-border:        #ebebeb;       /* Borders, dividers */
    --color-text:          #666666;       /* Body text */
    --color-text-light:    #999999;       /* Muted text */
    

    /* Typography */
    --font-main:           'Poppins', sans-serif;   /* Primary font */
    --font-size-base:      14px;
    --font-size-sm:        12px;
    --font-size-lg:        16px;

    /* Sizes */
    --header-height:       80px;          /* Desktop header height */
    --header-height-mobile: 60px;         /* Mobile header height */
    --border-radius:       4px;           /* Card/button corner radius */
    --transition:          0.3s ease;     /* Hover animation speed */

    /* Product Card */
    --card-shadow:         0 2px 10px rgba(0,0,0,0.08);
    --card-shadow-hover:   0 6px 20px rgba(0,0,0,0.14);
}

/* =================my style========================== */


.shop-more,
.shop-more:hover,
.shop-more:focus,
.shop-more * {
    color: #fff !important;
}

.dropdown-cart-action .btn,
.dropdown-cart-action .btn span,
.dropdown-cart-action .btn i,
.dropdown-cart-action .btn:hover,
.dropdown-cart-action .btn:hover span,
.dropdown-cart-action .btn:hover i,
.dropdown-cart-action .btn:focus,
.dropdown-cart-action .btn:focus span,
.dropdown-cart-action .btn:focus i {
    color: #fff !important;
}


.product-details-action .btn-product.btn-cart:hover span {
    color: #ffffff !important;
}
.product-details-action .btn-product.btn-cart:hover::before,
.product-details-action .btn-product.btn-cart:hover::after {
    color: #ffffff !important;
}


.product-details-action .btn-product.btn-cart:hover span,
.product-action .btn-product.btn-cart:hover span,
.product-details-action .btn-product.btn-cart:hover i,
.product-action .btn-product.btn-cart:hover i,
.product-details-action .btn-product.btn-cart:hover svg,
.product-action .btn-product.btn-cart:hover svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}
.product-action .btn-product.btn-cart:hover i,
.product-action .btn-product.btn-cart:hover svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}

.product-action .btn-product.btn-cart:hover::before,
.product-action .btn-product.btn-cart:hover::after {
    color: #ffffff !important;
}

/* Dropdown open/click hone pe color fix */
.header-bottom .category-dropdown .dropdown-toggle:focus,
.header-bottom .category-dropdown .dropdown-toggle:active,
.header-bottom .category-dropdown .dropdown-toggle:focus-visible,
.header-bottom .category-dropdown.show .dropdown-toggle,
.header-bottom .category-dropdown .dropdown-toggle[aria-expanded="true"] {
    background-color: var(--color-primary) !important;
    color: #fff !important;
    box-shadow: none !important;
    outline: none !important;
}



.about-widget {
    text-align: center;
}

.footer-logo {
    display: block;
    margin: 0 auto 15px;
    max-width: 220px; /* size increase */
    width: 100%;
    height: auto;
}

.footer-desc {
    
    text-align: center;
}

.widget-call {
    text-align: center;
}


/* ============================================================
   2. HEADER & NAVIGATION
   ============================================================ */
.header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

/* Top bar (phone/language/login links) */
.header-top {
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    padding: 6px 0;
}
.header-top a {
    color: #cccccc;
    transition: color var(--transition);
}
.header-top a:hover {
    color: var(--color-primary);
}

/* Logo area */
.header-middle {
    padding: 12px 0;
}

/* Search bar */
.header-search .form-control {
    border-color: var(--color-border);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: var(--font-size-base);
}
.header-search .btn {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}
.header-search .btn:hover {
    background-color: var(--color-primary-dark);
}

/* Cart icon count badge */
.cart-count {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Main navigation */
.main-nav .sf-menu > li > a {
    font-size: var(--font-size-base);
    color: var(--color-secondary);
    font-weight: 600;
    transition: color var(--transition);
}
.main-nav .sf-menu > li > a:hover,
.main-nav .sf-menu > li.active > a {
    color: var(--color-primary);
}


/* ============================================================
   3. HOMEPAGE — HERO SLIDER
   ============================================================ */
.intro-section {
    /* Slider container */
    background-color: var(--color-light-bg);
}

.intro-content .intro-subtitle {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.intro-content .intro-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
}
.intro-content .intro-text {
    color: var(--color-text);
    font-size: 15px;
}


/* ============================================================
   4. HOMEPAGE — CATEGORY BOXES
   ============================================================ */
.cat-blocks-container .cat-block figure {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition);
}
.cat-blocks-container .cat-block figure:hover {
    transform: translateY(-4px);
}
.cat-blocks-container .cat-block-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
}

/* Section headings (e.g. "New Arrivals", "Best Sellers") */
.title-lg {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
}
.title-tab-line a,
.nav-tabs .nav-link {
    color: var(--color-text);
    font-size: 13px;
}
.title-tab-line a.active,
.nav-tabs .nav-link.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}


/* ============================================================
   5. HOMEPAGE — PRODUCT CARDS
   ============================================================ */
.product {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background: var(--color-white);
    transition: box-shadow var(--transition), transform var(--transition);
    overflow: hidden;
}
.product:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-3px);
}

/* Product image wrapper */
.product-media {
    background-color: var(--color-light-bg);
}

/* Product title */
.product-title {
    font-size: 14px;
    font-weight: 600;
}
.product-title a {
    color: var(--color-secondary);
    transition: color var(--transition);
}
.product-title a:hover {
    color: var(--color-primary);
}

/* Price */
.product-price {
    color: #f46f18;
    font-size: 16px;
    font-weight: 700;
}
.old-price {
    color: var(--color-text-light);
    font-size: 13px;
    text-decoration: line-through;
}
.new-price {
    color: #f46f18;
}

/* Star ratings */
.ratings-container .ratings-val {
    background-color: transparent;
}

/* Badges (New / Sale / Hot) */
.product-label.label-new {
    background-color: var(--color-primary);
}
.product-label.label-sale {
    background-color: var(--color-accent);
}
.product-label.label-top {
    background-color: var(--color-secondary);
}

/* Action buttons on hover (wishlist, cart, compare) */
.product-action .btn-product {
    background-color: var(--color-white);
    color: var(--color-secondary);
    border: 1px solid var(--color-border);
    font-size: 12px;
    transition: all var(--transition);
}
.product-action .btn-product:hover,
.product-action .btn-product.btn-cart:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}


/* ============================================================
   6. PRODUCT DETAIL PAGE
   ============================================================ */

/* Breadcrumb */
.breadcrumb-item a {
    color: var(--color-primary);
}
.breadcrumb-item.active {
    color: var(--color-text);
}

/* Product image gallery */
.product-gallery .product-image-full {
    color: var(--color-primary);
}

/* Product name */
.product-details .product-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
}

/* Price on detail page */
.product-details .product-price {
    font-size: 26px;
    color: #f46f18;
    font-weight: 700;
}

/* Size / color selectors */
.details-filter-row label {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-size a,
.product-color-swatch a {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    color: var(--color-text);
    transition: all var(--transition);
}
.product-size a.active,
.product-size a:hover,
.product-color-swatch a.active {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Quantity input */
.product-details .input-spinner input {
    border-color: var(--color-border);
    font-size: 15px;
    font-weight: 600;
}

/* Add to cart button (main) */
.product-details .btn-product.btn-cart {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    transition: background-color var(--transition);
}
.product-details .btn-product.btn-cart:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

/* Wishlist & Compare buttons */
.product-details .btn-product.btn-wishlist,
.product-details .btn-product.btn-compare {
    color: var(--color-text);
    transition: color var(--transition);
}
.product-details .btn-product.btn-wishlist:hover,
.product-details .btn-product.btn-compare:hover {
    color: var(--color-primary);
}

/* Tabs (Description, Reviews, etc.) */
.product-details-tab .nav-link {
    color: var(--color-text);
    font-weight: 600;
    font-size: 13px;
    border: none;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}
.product-details-tab .nav-link.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: none;
}

/* Related products section */
.product-related h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
}


/* ============================================================
   7. CHECKOUT PAGE
   ============================================================ */

/* Checkout heading */
.checkout-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
}

/* Form labels */
.checkout .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-secondary);
}

/* Form inputs */
.checkout .form-control {
    border-color: var(--color-border);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    color: var(--color-secondary);
    transition: border-color var(--transition);
}
.checkout .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(204, 153, 102, 0.2);
}

/* Order summary box */
.order-summary {
    background: var(--color-light-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 24px;
}
.order-summary .table thead th {
    border-color: var(--color-border);
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.order-summary .table td {
    border-color: var(--color-border);
    color: var(--color-text);
    font-size: 14px;
}
.order-summary .order-total td {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 16px;
}

/* Payment Method Radio List */
.pm-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 16px;
}
.pm-item {
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
    transition: background 0.15s ease;
}
.pm-item:last-child {
    border-bottom: none;
}
.pm-item--selected {
    background: #f9f5ff;
}
.pm-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    cursor: pointer;
    margin: 0;
    width: 100%;
}
.pm-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.pm-radio-custom {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s ease;
    background: var(--color-white);
}
.pm-radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    display: none;
}
.pm-item--selected .pm-radio-custom {
    border-color: var(--color-primary);
}
.pm-item--selected .pm-radio-custom::after {
    display: block;
}
.pm-label-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}
.pm-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1;
}
.pm-item--selected .pm-name {
    color: var(--color-primary);
}
.pm-logo-img {
    height: 36px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
    display: block;
}
.pm-description {
    display: none;
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    padding: 0 16px 13px 46px;
}
.pm-description--visible {
    display: block;
}

/* Place order button */
.btn-order {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: var(--border-radius);
    width: 100%;
    transition: background-color var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-order:hover,
.btn-order:focus {
    background-color: var(--color-primary-dark) !important;
    border-color: var(--color-primary-dark) !important;
    color: var(--color-white) !important;
}


/* ============================================================
   8. FOOTER
   ============================================================ */
.footer {
    background-color: #222222;          /* Footer background — yahan badlein */
    color: #aaaaaa;
}
.footer-middle {
    padding: 50px 0 30px;
}
.footer .widget-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}
.footer a {
    color: #aaaaaa;
    transition: color var(--transition);
}
.footer a:hover {
    color: var(--color-primary);
}
.footer-bottom {
    background-color: #111111;
    padding: 16px 0;
    font-size: 12px;
    color: #777777;
}


/* ============================================================
   9. BUTTONS & BADGES (global)
   ============================================================ */
.btn-primary {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}
.btn-primary:hover {
    background-color: var(--color-primary-dark) !important;
    border-color: var(--color-primary-dark) !important;
}
.btn-outline-primary-2 {
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}
.btn-outline-primary-2:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}



/* ============================================================
   10. MOBILE VIEW — 768px aur neeche
   ============================================================ */
@media (max-width: 768px) {

    /* ── MOBILE: Variables Override ─────────────────────────
       Mobile pe koi bhi size/spacing alag chahiye toh yahan badlein */
    :root {
        --font-size-base:  13px;
        --font-size-sm:    11px;
        --font-size-lg:    15px;
        --border-radius:   6px;
    }

    /* ── MOBILE: Header ──────────────────────────────────── */
    .header-top {
        display: none;         /* Mobile pe top bar hide — dikhana ho toh "block" karo */
    }
    .header-middle {
        padding: 8px 0;
    }
    .mobile-menu-toggler {
        color: var(--color-secondary);
    }

    /* ── MOBILE: Search bar ───────────────────────────────── */
    .header-search-visible.d-none {
        display: none !important;  /* Mobile search toggle */
    }

    /* ── MOBILE: Hero Slider ──────────────────────────────── */
    .intro-content .intro-title {
        font-size: 22px;           /* Mobile title chhota */
        line-height: 1.3;
    }
    .intro-content .intro-subtitle {
        font-size: 11px;
    }
    .intro-section .owl-dot {
        width: 8px;
        height: 8px;
    }

    /* ── MOBILE: Category boxes ───────────────────────────── */
    .cat-blocks-container {
        /* Yahan mobile category boxes adjust karein */
    }
    .cat-block-title {
        font-size: 12px;
    }

    /* ── MOBILE: Product Cards ────────────────────────────── */
    .product {
        margin-bottom: 16px;
    }
    .product-title {
        font-size: 13px;
    }
    .product-price {
        font-size: 14px;
    }
    /* Mobile pe action buttons hamesha visible rahein (hover nahi hai) */
    .product-action {
        opacity: 1 !important;
        visibility: visible !important;
        bottom: 0 !important;
    }

    /* ── MOBILE: Product Detail Page ─────────────────────── */
    .product-details .product-title {
        font-size: 18px;
    }
    .product-details .product-price {
        font-size: 20px;
    }
    .product-details .btn-product.btn-cart {
        width: 100%;
        padding: 14px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    /* Image gallery — full width on mobile */
    .product-gallery {
        margin-bottom: 24px;
    }
    .product-gallery-separated .product-image-gallery {
        display: none;   /* Side thumbnails hide on mobile */
    }

    /* ── MOBILE: Checkout ─────────────────────────────────── */
    .checkout-info-box {
        padding: 12px;
        font-size: 13px;
    }
    .checkout-title {
        font-size: 16px;
    }
    .order-summary {
        padding: 16px;
        margin-top: 24px;
    }
    .btn-order {
        padding: 13px;
        font-size: 14px;
    }

    /* ── MOBILE: Footer ───────────────────────────────────── */
    .footer-middle {
        padding: 30px 0 20px;
    }
    .footer .widget-title {
        font-size: 13px;
        margin-bottom: 12px;
    }
    .footer-bottom {
        text-align: center;
        font-size: 11px;
    }

    /* ── MOBILE: Section Titles ───────────────────────────── */
    .title-lg {
        font-size: 18px;
    }
}


/* ============================================================
   11. TABLET VIEW — 769px se 1024px tak
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {

    /* ── TABLET: Header ───────────────────────────────────── */
    .header-top {
        font-size: 11px;
    }

    /* ── TABLET: Hero Slider ──────────────────────────────── */
    .intro-content .intro-title {
        font-size: 30px;
    }

    /* ── TABLET: Product Cards ────────────────────────────── */
    .product-title {
        font-size: 13px;
    }
    .product-price {
        font-size: 15px;
    }

    /* ── TABLET: Product Detail ───────────────────────────── */
    .product-details .product-title {
        font-size: 20px;
    }
    .product-details .product-price {
        font-size: 22px;
    }

    /* ── TABLET: Checkout ─────────────────────────────────── */
    .order-summary {
        padding: 20px;
    }
}


/* ============================================================
   12. MOBILE BOTTOM NAVIGATION
   ============================================================ */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 991px) {
    /* ── Show bottom nav on mobile/tablet ── */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #ffffff;
        border-top: 1px solid #ebebeb;
        box-shadow: 0 -2px 12px rgba(0,0,0,0.10);
        height: 60px;
        align-items: stretch;
        padding: 0;
    }
    .mobile-bottom-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #777777;
        text-decoration: none;
        font-size: 10px;
        gap: 3px;
        transition: color 0.2s ease;
        position: relative;
    }
    .mobile-bottom-nav-item i {
        font-size: 20px;
        line-height: 1;
    }
    .mobile-bottom-nav-item span {
        font-size: 10px;
        font-weight: 500;
    }
    .mobile-bottom-nav-item.active,
    .mobile-bottom-nav-item:hover {
        color: #e7097f;
    }
    .mobile-cart-badge {
        background: #42107b;
        color: white;
        font-size: 9px;
        border-radius: 50%;
        padding: 1px 4px;
        position: absolute;
        top: 4px;
        right: calc(50% - 18px);
        font-style: normal;
    }

    /* ── Give page bottom padding so content not hidden behind bottom nav ── */
    .page-wrapper {
        padding-bottom: 60px;
    }

    /* ── Mobile Header: Only logo visible, hide compare/wishlist/cart icons text ── */
    .header-top {
        display: none !important;
    }
    .header-middle .header-right {
        display: none !important;
    }
    .header-middle .mobile-menu-toggler {
        display: none !important;
    }
    .header-middle {
        padding: 10px 0;
        text-align: center;
    }
    .header-middle .container {
        justify-content: center;
    }
    .header-middle .header-left {
        justify-content: center;
        width: 100%;
    }
    .header-middle .header-center {
        display: none !important;
    }
    .header-middle .logo {
        margin: 0 auto;
    }
    /* Hide header bottom (nav bar) on mobile */
    .header-bottom {
        display: none !important;
    }

    /* ── Fix scroll-top so it appears above bottom nav ── */
    #scroll-top {
        bottom: 70px !important;
    }
}

/* ============================================================
   13. GENERAL RESPONSIVE ALIGNMENT FIXES
   ============================================================ */

/* Fix category blocks alignment */
.cat-blocks-container .row {
    margin-left: -8px;
    margin-right: -8px;
}
.cat-blocks-container [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}

/* Fix product grid alignment */
.products .product {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.products .product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.products .product-action {
    margin-top: auto;
}

/* Fix brand carousel alignment */
.brand-display img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}
.brand-display img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Banner alignment fixes */
.banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.banners-container .banner {
    overflow: hidden;
    border-radius: 4px;
}

/* ── MOBILE specific product grid ── */
@media (max-width: 575px) {
    .products .col-6 {
        padding-left: 6px;
        padding-right: 6px;
    }
    .product-media {
        min-height: 150px;
    }
    .product-media img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    /* Category images full width on tiny screens */
    .cat-block figure img {
        width: 100%;
        height: 100px;
        object-fit: cover;
    }
}

/* Fix intro slider on mobile */
@media (max-width: 575px) {
    .intro-slide .intro-content {
        padding: 20px !important;
        max-width: 100% !important;
    }
    .intro-content .intro-title {
        font-size: 20px !important;
    }
    .intro-slide img {
        display: none;
    }
}

/* Brands section fix */
.brands-section .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* ============================================================
   14. COLOUR OVERRIDES — Applied last to ensure correct colors
   ============================================================ */

/* All prices → orange */
.new-price,
.product-price,
.product-details .product-price,
.order-summary .order-total td {
    color: #f46f18 !important;
}

/* Deal cards — let inline color from admin override the global orange */
.vv-deal-card .new-price,
.vv-deal-card .old-price {
    color: inherit !important;
}

/* Deal cards — fix button sizing so admin-set sm/md/lg actually changes button size.
   Problems being fixed:
   1. base .btn has min-width:170px — makes button always wide regardless of padding
   2. demo-4.css has .deal .btn { padding: 0 0 .2rem } — but NO !important,
      so PHP inline style="padding:..." already beats it naturally.
   Solution: remove min-width so button shrinks/grows with the inline padding. */
.vv-deal-card .btn {
    min-width: 0 !important;
    width: auto !important;
    height: auto !important;
    line-height: 1.5;
}

/* Star ratings background → transparent */
.ratings-val,
.ratings-container .ratings-val,
.ratings-primary .ratings-val {
    background-color: transparent !important;
}

/* All hovers → pink
   NOTE: category-dropdown toggle aur nav-pills.active Section 15 mein handle hain */
a:hover, a:focus,
.header-top a:hover,
.footer a:hover, .footer a:focus,
.product-title a:hover, .product-title a:focus,
.main-nav .sf-menu > li > a:hover,
.main-nav .sf-menu > li.active > a,
.menu li:hover > a, .menu li.show > a, .menu li.active > a,
.nav.nav-tabs .nav-link:hover, .nav.nav-tabs .nav-link:focus,
.title-tab-line a.active, .nav-tabs .nav-link.active,
.btn-product:hover span, .btn-product:focus span,
.ratings-text a:hover, .ratings-text a:focus,
.search-toggle:hover, .search-toggle:focus,
.wishlist-link:hover, .wishlist-link:focus,
.account a:hover, .wishlist a:hover,
.page-link:hover, .page-link:focus,
.social-icon:hover, .social-icon:focus,
.breadcrumb-item a:hover {
    color: #e7097f !important;
}

/* Hover backgrounds → pink */
.btn-primary:hover, .btn-primary:focus,
.product-action .btn-product:hover,
.product-action .btn-product.btn-cart:hover,
.product.product-4 .btn-product:hover,
.product.product-5 .btn-product:hover,
.product.product-7 .btn-product:hover,
.product.product-8 .btn-product:hover,
.product.product-list .btn-product.btn-cart:hover,
.header-search .btn:hover,
.btn-order:hover,
.product-size a:hover, .product-color-swatch a:hover,
.product-size a.active {
    background-color: #e7097f !important;
    border-color: #e7097f !important;
}

/* btn-primary hover/focus — text white rakho (pink background pe pink text nahi aana chahiye) */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:hover span,
.btn-primary:focus span,
.btn-primary:hover i,
.btn-primary:focus i {
    color: #ffffff !important;
}


/* ============================================================
   15. WHITE TEXT FIXES — Buttons jahan text hamesha white rahe
   ============================================================ */

/* --- Modal: LOG IN / SIGN UP buttons (btn-outline-primary-2) ---
   Hover/Active: pink background, WHITE text */
.btn-outline-primary-2:hover,
.btn-outline-primary-2:focus,
.btn-outline-primary-2:not(:disabled):not(.disabled):active,
.btn-outline-primary-2:hover span,
.btn-outline-primary-2:focus span,
.btn-outline-primary-2:not(:disabled):not(.disabled):active span,
.btn-outline-primary-2:hover i,
.btn-outline-primary-2:focus i {
    color: #ffffff !important;
}

/* --- Place Order button (btn-order) ---
   btn-outline-primary-2 bhi hai — normal + hover dono mein white */
.btn-order,
.btn-order:hover,
.btn-order:focus,
.btn-order span,
.btn-order:hover span,
.btn-order:focus span,
.btn-order .btn-text,
.btn-order .btn-hover-text,
.btn-order:hover .btn-text,
.btn-order:hover .btn-hover-text {
    color: #ffffff !important;
}

/* --- Browse Categories dropdown toggle ---
   Hover: pink bg + white text
   Click (.show): purple bg + white text
   Mouse hata lo: wapis original dark text (#333) */
.category-dropdown .dropdown-toggle {
    color: #333333 !important;
}
.category-dropdown .dropdown-toggle:hover,
.category-dropdown .dropdown-toggle:focus,
.category-dropdown:not(.is-on):hover .dropdown-toggle,
.category-dropdown.show .dropdown-toggle,
.category-dropdown.show .dropdown-toggle:hover,
.category-dropdown.show .dropdown-toggle:focus {
    color: #ffffff !important;
    background-color: var(--color-primary) !important;
}
.category-dropdown .dropdown-toggle:hover,
.category-dropdown .dropdown-toggle:focus,
.category-dropdown:not(.is-on):hover .dropdown-toggle {
    background-color: #e7097f !important;
}

/* --- Modal tabs: Sign In / Register nav-pills ---
   Active tab: purple text (original)
   Hover on non-active: pink text
   Active tab pe hover: purple rahe, pink na ho */
.nav.nav-pills .nav-link:hover,
.nav.nav-pills .nav-link:focus {
    color: #e7097f !important;
}
.nav.nav-pills .nav-item .nav-link.active,
.nav.nav-pills .nav-item .nav-link.active:hover,
.nav.nav-pills .nav-item .nav-link.active:focus {
    color: var(--color-primary) !important;
}

/* --- Checkout cart dropdown button (Proceed to Checkout) ---
   Hover pe white rahe */
.dropdown-cart-total .btn:hover,
.dropdown-cart-total .btn:hover span,
.dropdown-cart-action .btn:hover span {
    color: #ffffff !important;
}


/* ============================================================
   16. TRENDING PRODUCTS & RECOMMEND FOR YOU — Card & Badge Fixes
   ============================================================ */

/* ── Card wrapper: no border, smooth shadow, no overflow clip so image fills ── */
.new-arrivals .product.product-2,
.trending-products .product.product-2 {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.09);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.new-arrivals .product.product-2:hover,
.trending-products .product.product-2:hover {
    box-shadow: 0 8px 28px rgba(66,16,123,0.18);
    transform: translateY(-4px);
}

/* ── Product image — fills full card top, zero white gap ── */
.new-arrivals .product-media,
.trending-products .product-media {
    background: none;
    overflow: hidden;
    position: relative;
    height: 240px;
    flex-shrink: 0;
    border-radius: 0;
    margin: 0;
}
.new-arrivals .product-media > a,
.trending-products .product-media > a {
    display: block;
    height: 100%;
    width: 100%;
}
.new-arrivals .product-image,
.trending-products .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.4s ease;
    padding: 0;
}
.new-arrivals .product.product-2:hover .product-image,
.trending-products .product.product-2:hover .product-image {
    transform: scale(1.04);
}

/* ── Overlay gradient on hover for depth ── */
.new-arrivals .product-media::after,
.trending-products .product-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(66,16,123,0.45) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}
.new-arrivals .product.product-2:hover .product-media::after,
.trending-products .product.product-2:hover .product-media::after {
    opacity: 1;
}

/* ── Badges ── */
.new-arrivals .product-media .product-label.label-circle,
.trending-products .product-media .product-label.label-circle {
    position: absolute;
    width: 38px;
    height: 38px;
    font-size: 9px;
    font-weight: 800;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    top: 10px;
    left: 10px;
    right: auto;
    z-index: 3;
    letter-spacing: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.20);
}
.new-arrivals .product-media .rfy-label-discount,
.trending-products .product-media .rfy-label-discount {
    left: auto !important;
    right: 10px !important;
    top: 10px !important;
    width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
    font-size: 9px !important;
    font-weight: 800 !important;
}
.new-arrivals .rfy-label-soldout,
.trending-products .rfy-label-soldout {
    background: linear-gradient(135deg, #555, #333) !important;
    color: #fff !important;
}
.new-arrivals .product-media .label-sale,
.trending-products .product-media .label-sale {
    background: linear-gradient(135deg, #e8572a, #f46f18) !important;
    color: #fff !important;
}
.new-arrivals .product-media .label-new,
.trending-products .product-media .label-new {
    background: linear-gradient(135deg, #42107b, #6a2aad) !important;
    color: #fff !important;
}
.new-arrivals .rfy-label-discount,
.trending-products .rfy-label-discount {
    background: linear-gradient(135deg, #e7097f, #c4066b) !important;
    color: #fff !important;
}

/* ── Wishlist icon — hidden ── */
.new-arrivals .product-action-vertical,
.trending-products .product-action-vertical {
    display: none !important;
}

/* ── ADD TO CART — slides up from bottom, full width, beautiful ── */
.new-arrivals .product-action,
.trending-products .product-action {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    z-index: 5;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease;
    background: transparent;
}
.new-arrivals .product.product-2:hover .product-action,
.trending-products .product.product-2:hover .product-action {
    transform: translateY(0);
    opacity: 1;
}
.new-arrivals .product-action .btn-product.btn-cart,
.trending-products .product-action .btn-product.btn-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 9px 0;
    text-transform: uppercase;
    background: linear-gradient(90deg, #42107b 0%, #6a1aad 50%, #e7097f 100%);
    background-size: 200% 100%;
    background-position: left center;
    color: #fff !important;
    border: none;
    border-radius: 0;
    transition: background-position 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 -3px 12px rgba(66,16,123,0.25);
    cursor: pointer;
}
.new-arrivals .product-action .btn-product.btn-cart:hover,
.new-arrivals .product-action .btn-product.btn-cart:focus,
.trending-products .product-action .btn-product.btn-cart:hover,
.trending-products .product-action .btn-product.btn-cart:focus {
    background-position: right center;
    box-shadow: 0 -4px 20px rgba(231,9,127,0.40);
    color: #fff !important;
    background-color: transparent !important;
    border-color: transparent !important;
}
.new-arrivals .product-action .btn-product.btn-cart span,
.trending-products .product-action .btn-product.btn-cart span {
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px;
}
/* Cart icon before the text */
.new-arrivals .product-action .btn-product.btn-cart::before,
.trending-products .product-action .btn-product.btn-cart::before {
    font-size: 13px !important;
    margin-right: 5px;
    color: #fff !important;
}

/* ── Product body — no gap between image and body ── */
.new-arrivals .product-body,
.trending-products .product-body {
    padding: 14px 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    margin-top: 0;
}
.new-arrivals .product-title,
.trending-products .product-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.new-arrivals .product-title a,
.trending-products .product-title a {
    color: #222;
    transition: color 0.2s ease;
}
.new-arrivals .product-title a:hover,
.trending-products .product-title a:hover {
    color: #42107b !important;
}
.new-arrivals .product-price,
.trending-products .product-price {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #f46f18 !important;
}
.new-arrivals .new-price,
.trending-products .new-price {
    color: #f46f18 !important;
    font-size: 16px;
    font-weight: 800;
}
.new-arrivals .old-price,
.trending-products .old-price {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 4px;
}

/* ── Star ratings ── */
.new-arrivals .ratings-container,
.trending-products .ratings-container {
    margin-top: 4px;
    margin-bottom: 0;
}
.new-arrivals .ratings,
.trending-products .ratings {
    color: #e0e0e0;
}
.new-arrivals .ratings-val,
.trending-products .ratings-val {
    color: #f4a535;
}
.new-arrivals .ratings-text,
.trending-products .ratings-text {
    font-size: 11px;
    color: #bbb;
}

/* ── Mobile ── */
@media (max-width: 575px) {
    .new-arrivals .product-media,
    .trending-products .product-media {
        height: 170px;
    }
    .new-arrivals .product-media .product-label.label-circle,
    .new-arrivals .product-media .rfy-label-discount,
    .trending-products .product-media .product-label.label-circle,
    .trending-products .product-media .rfy-label-discount {
        width: 30px !important;
        height: 30px !important;
        font-size: 8px !important;
        line-height: 30px !important;
    }
    .new-arrivals .product-title,
    .trending-products .product-title {
        font-size: 12px;
        min-height: 34px;
    }
    .new-arrivals .product-price,
    .new-arrivals .new-price,
    .trending-products .product-price,
    .trending-products .new-price {
        font-size: 14px;
    }
    /* Mobile: tap card to reveal Add to Cart (.mob-tapped added by JS) */
    .new-arrivals .product-action,
    .trending-products .product-action {
        transform: translateY(0) !important;
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease !important;
    }
    .new-arrivals .product.product-2.mob-tapped .product-action,
    .trending-products .product.product-2.mob-tapped .product-action {
        opacity: 1 !important;
        pointer-events: auto;
    }
    .new-arrivals .product-media::after,
    .trending-products .product-media::after {
        opacity: 0;
    }
}

/* ============================================================
   Cart Side Drawer (slide-in from right)
   ============================================================ */
.cart-drawer-modal {
    padding-right: 0 !important;
}

#cart-modal.cart-drawer-modal .modal-dialog.cart-drawer-dialog {
    position: fixed;
    top: 0;
    right: 0;
    margin: 0;
    height: 100%;
    max-width: 420px;
    width: 100%;
    transform: translateX(100%);
    transition: transform .35s ease;
}

#cart-modal.cart-drawer-modal.show .modal-dialog.cart-drawer-dialog {
    transform: translateX(0) !important;
}

#cart-modal .modal-content.cart-drawer-content {
    height: 100%;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    box-shadow: -6px 0 24px rgba(51, 51, 51, .12);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 2.2rem;
    border-bottom: 1px solid #ebebeb;
    flex-shrink: 0;
}

.cart-drawer-title {
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 0;
    color: #333;
}

.cart-drawer-title i {
    margin-right: .6rem;
    color: #c96;
    font-size: 1.8rem;
    vertical-align: -2px;
}

.cart-drawer-close {
    position: static;
    font-size: 1.6rem;
    line-height: 1;
}

.cart-drawer-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 0;
}

/* Empty state */
.cart-drawer-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.cart-drawer-empty i {
    font-size: 5rem;
    color: #e0e0e0;
    margin-bottom: 1.6rem;
}

.cart-drawer-empty p {
    color: #999;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Item list */
.cart-drawer-items {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 0 2.2rem;
}

.cart-drawer-item {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: opacity .2s ease;
}

.cart-drawer-item.is-removing {
    opacity: .35;
    pointer-events: none;
}

.cart-drawer-item-media {
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    margin: 0;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    overflow: hidden;
}

.cart-drawer-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-drawer-item-body {
    flex: 1 1 auto;
    min-width: 0;
}

.cart-drawer-item-title {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: .5rem;
}

.cart-drawer-item-title a {
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-drawer-item-title a:hover {
    color: #c96;
}

.cart-drawer-item-price {
    font-size: 1.3rem;
    color: #999;
    margin-bottom: .8rem;
}

.cart-drawer-item-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    overflow: hidden;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.cart-qty-btn:hover {
    background: #c96;
    color: #fff;
}

.cart-qty-input {
    width: 34px;
    height: 28px;
    border: none;
    border-left: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
    text-align: center;
    font-size: 1.3rem;
    color: #333;
    background: #fff;
    padding: 0;
}

.cart-drawer-item-side {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 70px;
}

.cart-drawer-item-remove {
    color: #999;
    font-size: 1.1rem;
    transition: color .2s ease;
}

.cart-drawer-item-remove:hover {
    color: #e02020;
}

.cart-drawer-item-total {
    font-size: 1.35rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

/* Footer (subtotal + actions), pinned to bottom */
.cart-drawer-footer {
    flex-shrink: 0;
    padding: 1.8rem 2.2rem 2.2rem;
    border-top: 1px solid #ebebeb;
}

.cart-drawer-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 1.4rem;
}

.cart-drawer-subtotal .cart-total-price {
    color: #c96;
    font-size: 1.7rem;
}

.cart-drawer-actions {
    display: flex;
    gap: 1rem;
}

.cart-drawer-actions .btn {
    flex: 1 1 50%;
    font-size: 1.25rem;
    padding: 1rem .8rem;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 420px) {
    #cart-modal.cart-drawer-modal .modal-dialog.cart-drawer-dialog {
        max-width: 100%;
    }
}

/* ── Cart drawer above mobile bottom nav on small screens ── */
#cart-modal.cart-drawer-modal {
    z-index: 100000;
}
#cart-modal.cart-drawer-modal + .modal-backdrop {
    z-index: 99999;
}
@media (max-width: 991px) {
    /* Push cart footer above the 60px mobile bottom nav */
    #cart-modal .modal-content.cart-drawer-content {
        padding-bottom: 60px;
    }
}

/* ============================================================
   Payment Methods — Radio List (legacy accordion styles removed)
   ============================================================ */
