/* ===== GLOBAL SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: #cccccc; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #b0b0b0; }
* { scrollbar-width: thin; scrollbar-color: #cccccc #f0f0f0; }

/* ===== SHRADHA FASHION – NEW HEADER ===== */

/* Base header – fully transparent always */
.shradha-header {
    background: #ffffff;
    border-bottom: 1px solid #f0e6f6;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1020;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}
/* White background on hover OR scroll */
.shradha-header:hover,
.shradha-header.header-scrolled {
    background: #ffffff;
    border-bottom: 1px solid #f0e6f6;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.shradha-header-inner {
    height: 68px;
}

/* Header is fixed – push all page content below it */
.aiz-main-wrapper {
    padding-top: 68px;
    margin-top: 0 !important;
}

/* Logo */
.shradha-logo-img {
    height: 40px;
    max-height: 50px;
    width: auto;
    object-fit: contain;
}
@media (min-width: 768px) {
    .shradha-logo-img { height: 50px; }
}

/* Nav links */
.shradha-nav {
    gap: 0;
}
.shradha-nav-link {
    font-size: 13px;
    font-weight: 600;
    color: #2d2d2d;
    padding: 8px 14px;
    text-decoration: none !important;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}
.shradha-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary, #bd2e95);
    border-radius: 2px;
    transition: width 0.22s ease;
}
.shradha-nav-link:hover,
.shradha-nav-link.active {
    color: var(--primary, #bd2e95);
    text-decoration: none !important;
}
.shradha-nav-link:hover::after,
.shradha-nav-link.active::after {
    width: calc(100% - 28px);
}

/* Action icons */
.shradha-actions { gap: 4px; align-items: center; }
.shradha-action-btn { margin-left: 0; }

.shradha-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--primary, #bd2e95);
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
    padding: 0;
}

/* Unified icon size — user & search */
.shradha-icon-btn i { font-size: 26px; line-height: 1; }

/* Cart icon — same visual size as user & search */
.shradha-cart-wrap { display: flex; align-items: center; }
.shradha-cart-trigger { display: flex !important; align-items: center !important; }
.shradha-cart-wrap svg { width: 26px; height: 26px; }

/* User icon — plain, no border/background */
.user-menu-container .shradha-icon-btn {
    background: transparent;
    color: #bd2e95;
    border: none;
}
.user-menu-container .shradha-icon-btn:hover,
.user-menu-container .shradha-icon-btn:focus {
    background: transparent;
    color: #9a2478;
    border: none;
    text-decoration: none !important;
    outline: none;
}

/* Search icon — plain, no border/background */
#shradha-search-toggle {
    background: transparent;
    color: #bd2e95;
    border: none;
}
#shradha-search-toggle:hover,
#shradha-search-toggle:focus {
    background: transparent;
    color: #9a2478;
    border: none;
    outline: none;
}

/* Wishlist icon — same visual size as user & search */
.shradha-wishlist-wrap { display: flex; align-items: center; }
.shradha-wishlist-wrap > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary, #bd2e95) !important;
    transition: background 0.2s, color 0.2s;
}
.shradha-wishlist-wrap svg { width: 22px; height: 22px; }
.shradha-wishlist-wrap .badge {
    background: var(--primary, #bd2e95) !important;
    top: -4px !important;
    right: -8px !important;
}

/* Cart button inside new header */
.shradha-cart-wrap > a.d-flex {
    padding: 0 6px !important;
    height: 38px;
    border-radius: 20px;
    transition: background 0.2s;
}

.shradha-cart-wrap .nav-box-text { display: none !important; }
.shradha-cart-wrap .fs-14.fw-700 {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--primary, #bd2e95) !important;
}

/* Search overlay – full width minimal bar */
@keyframes shradha-search-slide-down {
    from { transform: translateY(-16px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}
.shradha-search-overlay {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    z-index: 1050;
}
.shradha-search-overlay.active {
    display: block;
    animation: shradha-search-slide-down 0.22s ease forwards;
}
.shradha-search-form {
    display: flex;
    align-items: center;
    padding: 0 32px;
    height: 68px;
}
.shradha-search-icon-left {
    color: #888;
    flex-shrink: 0;
    margin-right: 16px;
    display: flex;
    align-items: center;
}
.shradha-search-big-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #222;
    text-transform: uppercase;
    padding: 0;
    box-shadow: none !important;
}
.shradha-search-big-input::placeholder {
    color: #aaa;
    letter-spacing: 2px;
    font-size: 18px;
    text-transform: uppercase;
}
.shradha-search-close-btn {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    margin-left: 16px;
    transition: color 0.2s;
}
.shradha-search-close-btn:hover {
    color: var(--primary, #bd2e95);
}

/* Mobile burger */
.shradha-burger {
    color: #333;
    background: none;
    border: none;
}
.shradha-burger:hover { color: var(--primary, #bd2e95); }

/* ===== SHRADHA FASHION – BRAND COLORS ===== */
:root {
    --primary: #bd2e95;
    --hov-primary: #9a2478;
    --soft-primary: rgba(189, 46, 149, 0.12);
    --secondary-base: #FDF4DC;
}

/* Glass state nav link colors */
.shradha-header .shradha-nav-link {
    color: #1a1a1a;
}
.shradha-header.header-scrolled .shradha-nav-link {
    color: #2d2d2d;
}

/* Mobile bottom nav accent */
.aiz-mobile-bottom-nav a:hover,
.aiz-mobile-bottom-nav a.text-primary {
    color: var(--primary) !important;
}

/* ===== END BRAND COLORS ===== */

/* ===== GLOBAL DESIGN IMPROVEMENTS ===== */

/* Primary buttons - brand consistent */
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--hov-primary) !important;
    border-color: var(--hov-primary) !important;
}

/* Section Wrapper - secondary cream bg for alternating sections */
.section-bg-secondary {
    background-color: #FDF4DC;
}

/* Minimal badge - ensure brand color */
.minimal-badge span {
    background: var(--primary) !important;
}

/* Top Sellers / Top Brands section headings */
.p-4 .d-flex.mb-3 h3,
.p-4 .d-flex.mb-4 h3 {
    font-weight: 800;
    color: #1a1a1a;
}

/* Animate underline primary (used in View All links) */
.animate-underline-primary {
    color: var(--primary) !important;
}

/* Coupon section label text */
.btn.hov-bg-white:hover {
    background: #fff !important;
    color: var(--primary) !important;
}

/* Breadcrumb text active */
.text-blue {
    color: var(--primary) !important;
}

/* ===== END GLOBAL DESIGN IMPROVEMENTS ===== */

/* Metro Theme Header Style - Moved from Blade */

.logo-bar-area {
    padding: 10px 0 !important;
    background: linear-gradient(135deg, #ffffff 0%, #fdf5fc 100%);
}

.metro-search-bar {
    max-width: 460px !important;
    height: 42px !important;
    border: 1.5px solid rgba(189, 46, 149, 0.2) !important;
    border-radius: 40px !important;
    background: #fdf5fc !important;
    margin: 0 15px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.metro-search-bar:hover {
    border-color: rgba(189, 46, 149, 0.4) !important;
    box-shadow: 0 2px 10px rgba(189, 46, 149, 0.08);
}

.metro-search-bar:focus-within {
    border-color: var(--primary) !important;
    background: #fff !important;
    box-shadow: 0 5px 15px rgba(189, 46, 149, 0.15) !important;
}

.metro-search-bar form {
    margin-bottom: 0;
    padding: 0 15px !important;
}

.metro-search-bar input {
    height: 40px !important;
    font-size: 13px !important;
    padding-left: 5px !important;
    border: none !important;
    background: transparent !important;
    color: #444 !important;
}

.metro-search-bar input:focus {
    box-shadow: none !important;
}

.metro-search-bar button {
    height: 40px;
    display: flex;
    align-items: center;
    color: var(--primary) !important;
}

.metro-search-bar svg {
    width: 18px !important;
    height: 18px !important;
    transition: transform 0.2s ease;
}

.metro-search-bar:focus-within svg {
    transform: scale(1.1);
}

.header_menu_links {
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding: 8px 12px !important;
    font-weight: 600;
}

/* Improved Text Button Hover Property */
.header_menu_links:hover {
    color: var(--primary) !important;
    background: rgba(189, 46, 149, 0.06);
    border-radius: 4px;
    transform: translateY(-1px);
}

.header_menu_links.active {
    color: var(--primary) !important;
    /* border-bottom-color: var(--primary); */
}

.nav-cart-box .nav-box-link,
.nav-cart-box .nav-box-text,
.nav-cart-box .fs-14.fw-700,
.nav-cart-box svg {
    color: var(--primary) !important;
}
.nav-cart-box .cart-count {
    color: #fff !important;
}

.nav-cart-box svg path,
.nav-cart-box svg circle {
    fill: var(--primary) !important;
}

.single-row-container {
    gap: 12px;
}

@media (max-width: 1200px) {
    .front-header-search {
        max-width: none;
        margin-right: 0 !important;
    }
}

/* Premium Enhancements */

.metro-nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.metro-nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.metro-nav-link:hover:after,
.metro-nav-link.active:after {
    transform: scaleX(1);
}

/* ===== FEATURED CATEGORIES – OVAL DESIGN ===== */
.fc-section {
    padding: 40px 0 30px;
    background: #fff;
}
.fc-carousel {
    position: relative;
    z-index: 1;
}
.fc-card {
    padding: 10px 6px 14px;
    text-decoration: none !important;
}
.fc-oval-wrap {
    width: 145px;
    height: 185px;
    overflow: hidden;
    margin: 0 auto 14px;
    box-shadow: none !important;
    transition: none !important;
}
.fc-oval-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.fc-name {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #666;
    text-align: center;
    text-decoration: none !important;
}

/* Slick Carousel Custom Arrows */
.aiz-carousel .slick-arrow {
    width: 40px !important;
    height: 40px !important;
    background: #ffff !important;
    box-shadow: none !important;
    border-radius: 50% !important;
    color: var(--primary) !important;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(189, 46, 149, 0.25) !important;
}

.aiz-carousel .slick-arrow:before {
    font-size: 20px !important;
    color: var(--primary) !important;
}

.aiz-carousel:hover .slick-arrow {
    opacity: 1;
}

.aiz-carousel .slick-prev {
    left: -12px !important;
}

.aiz-carousel .slick-next {
    right: -12px !important;
}

.aiz-carousel .slick-arrow:hover {
    background: var(--primary) !important;
}

.aiz-carousel .slick-arrow:hover i {
    color: #fff;
}

.aiz-carousel .slick-arrow:hover:before {
    color: #fff !important;
}

/* ===== CART SIDE PANEL ===== */
.scp-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1055;
}
.scp-backdrop.scp-open { display: block; }

.scp-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100vw;
    background: #fff;
    z-index: 1056;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -4px 0 32px rgba(0,0,0,0.12);
}
.scp-panel.scp-open { transform: translateX(0); }

/* Header */
.scp-header {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 58px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
    gap: 10px;
}
.scp-back-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #222;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.scp-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111;
    flex-grow: 1;
}
.scp-count-badge {
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* Login bar */
.scp-login-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff5f0;
    border: 1px solid #ffd5c0;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 14px 16px 0;
    font-size: 13px;
    color: #444;
    gap: 12px;
}
.scp-login-btn {
    background: #e8734a;
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 6px;
    white-space: nowrap;
    text-decoration: none !important;
    flex-shrink: 0;
}

/* Body */
.scp-body {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 16px;
}
.scp-empty {
    text-align: center;
    padding: 60px 20px;
    color: #555;
}

/* Items */
.scp-items { padding: 0 16px; }
.scp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}
.scp-item-img-wrap {
    flex-shrink: 0;
    width: 100px;
    height: 130px;
    border-radius: 6px;
    overflow: hidden;
    background: #f7f7f7;
    display: block;
}
.scp-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.scp-item-info {
    flex: 1;
    min-width: 0;
    padding-right: 28px;
}
.scp-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin-bottom: 6px;
}
.scp-item-name a { color: inherit; }
.scp-item-variant {
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
}
.scp-item-qty-row {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}
.scp-qty-label { margin-right: 4px; }
.scp-qty-val { font-weight: 600; color: #222; }
.scp-item-price-row { font-size: 14px; font-weight: 700; color: #222; }
.scp-remove-btn {
    position: absolute;
    top: 18px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    padding: 4px;
}
.scp-remove-btn:hover { color: #e53935; }

/* Footer */
.scp-footer {
    border-top: 1px solid #f0f0f0;
    padding: 16px 16px;
    flex-shrink: 0;
    background: #fff;
}
.scp-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.scp-total-amount {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}
.scp-total-label {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}
.scp-checkout-btn {
    background: var(--primary);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none !important;
    white-space: nowrap;
}
.scp-checkout-btn:hover { background: var(--hov-primary, #9a2478); }

/* Cart badge on icon */
.shradha-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary);
    color: #fff !important;
    font-size: 10px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

@media (max-width: 480px) {
    .scp-panel { width: 100vw; }
    .scp-item-img-wrap { width: 80px; height: 105px; }
}

/* User Dropdown Position & Hover Fix */
.user-menu-container {
    position: relative;
}

.hover-user-top-menu {
    display: none;
    top: 100%;
    right: 0;
    padding-top: 10px;
    min-width: 200px;
}

.user-menu-container:hover .hover-user-top-menu {
    display: block;
}

.aiz-user-top-menu {
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Product Card Modernization - Minimalist Style */
.product-card-minimal {
    background: #ffffff;
    border: 1px solid rgba(189, 46, 149, 0.1) !important;
    border-radius: 12px;
    padding: 10px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
}

.product-card-minimal:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 8px 24px rgba(189, 46, 149, 0.12) !important;
    transform: translateY(-2px);
}


.product-card-minimal .image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 12px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.product-card-minimal .image-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-minimal:hover .image-wrap img {
    transform: scale(1.1);
}


/* Hover Action Buttons */
.product-card-minimal .image-wrap .hov-container {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.product-card-minimal:hover .image-wrap .hov-container {
    opacity: 1;
    transform: translateX(0);
}

.product-card-minimal .image-wrap .hov-icon-btn {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.product-card-minimal .image-wrap .hov-icon-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.product-card-minimal .image-wrap .hov-icon-btn i {
    font-size: 16px;
}

.product-card-minimal .image-wrap .minimal-cart-btn {
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 35px;
    background: var(--primary);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(189, 46, 149, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none !important;
    z-index: 4;
}

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

.product-card-minimal .image-wrap .minimal-cart-btn:hover {
    background: #000;
    color: #fff !important;
}

.product-card-minimal .product-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
    margin-bottom: 6px;
    text-align: center;
    transition: color 0.3s ease;
}

.product-card-minimal:hover .product-name a {
    color: var(--primary) !important;
}

.product-card-minimal .price-wrap {
    text-align: center;
    margin-top: 5px;
}

.product-card-minimal .current-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.product-card-minimal .old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.minimal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 5;
}

.minimal-badge span {
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
}

.minimal-badge span.wholesale-badge {
    background: #444;
}

.minimal-badge span.custom-badge {
    /* Dynamics handled by inline styles */
}

/* Rating */
.minimal-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.minimal-rating i {
    color: #ff9800;
    font-size: 12px;
}



/* Section Header Modernization */
.section-header-minimal {
    position: relative;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 14px;
}

.section-header-minimal h3 {
    margin-bottom: 0;
    font-weight: 800;
    color: #1a1a1a;
    font-size: 22px;
    letter-spacing: -0.3px;
}

.section-header-minimal:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(189, 46, 149, 0.3));
    border-radius: 2px;
}

.section-header-minimal .view-all-link {
    font-weight: 600;
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(189, 46, 149, 0.3);
}

.section-header-minimal .view-all-link:hover {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
}

/* ===== SHRADHA FASHION – HOME CATEGORIES GRID ===== */
.shc-section {
    margin-bottom: 30px;
}
.shc-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px 8px;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 0;
}
.shc-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0;
}
.shc-view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}
.shc-view-all:hover {
    color: var(--primary);
    text-decoration: underline;
}
.shc-grid {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}
.shc-card {
    flex: 0 0 20%;
    max-width: 20%;
    background: #fff;
    border: 1px solid #f0e0ec;
    box-shadow: none !important;
    transition: border-color .2s;
    overflow: hidden;
}
.shc-card:hover {
    border-color: #d4a0c8;
}
.shc-card:last-child {
    border-right: 1px solid #f0e0ec;
}
.shc-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 120%;
    overflow: hidden;
    background: #f9f9f9;
}
.shc-img-wrap > a {
    position: absolute;
    inset: 0;
}
.shc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Badges */
.shc-badge-discount {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    z-index: 2;
    line-height: 1.6;
}
.shc-badge-label {
    position: absolute;
    top: 34px;
    left: 8px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    z-index: 2;
    line-height: 1.6;
}
/* ── Card hover action icons (right side, slide in from right) ── */
.shc-action-group {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
}
.shc-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    border: none !important;
    background: rgba(255,255,255,0.92) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    text-decoration: none !important;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.22s ease, transform 0.22s ease, color 0.15s, background 0.15s;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
}
/* Staggered slide-in delays */
.shc-action-group .shc-action-btn:nth-child(1) { transition-delay: 0s; }
.shc-action-group .shc-action-btn:nth-child(2) { transition-delay: 0.06s; }
.shc-action-group .shc-action-btn:nth-child(3) { transition-delay: 0.12s; }

/* Show on card hover */
.shc-card:hover .shc-action-btn {
    opacity: 1;
    transform: translateX(0);
}

/* Wishlist button — gray heart by default, red when wishlisted */
.shc-btn-wish { color: #999 !important; }
.shc-btn-wish i { font-weight: 900 !important; }
.shc-btn-wish:hover,
.shc-btn-wish:focus,
.shc-btn-wish:active {
    background: rgba(255,255,255,0.92) !important;
    color: #999 !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
    outline: none !important;
}
.shc-btn-wish.wishlisted,
.shc-btn-wish.wishlisted i,
.shc-btn-wish.wishlisted:hover,
.shc-btn-wish.wishlisted:focus {
    color: #dc3545 !important;
}

/* Cart icon — primary color */
.shc-action-cart { color: var(--primary); }
.shc-action-cart:hover { color: var(--primary) !important; background: #fff !important; }

/* View icon */
.shc-action-view { color: #555; }
.shc-action-view:hover { color: var(--primary) !important; background: #fff !important; }
/* Info area */
.shc-info {
    padding: 14px 16px 16px;
}
.shc-name {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 5px;
    max-height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.shc-name a:hover {
    color: var(--primary);
}
.shc-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
.shc-price-old {
    font-size: 11px;
    color: #999;
}
.shc-price-new {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}
.shc-price-off {
    font-size: 11px;
    font-weight: 700;
    color: #e62e04;
}
/* ===== PRODUCT LISTING PAGE ===== */
/* Plain breadcrumb */
.pl-breadcrumb .breadcrumb {
    font-size: 13px;
    font-weight: 500;
}
.pl-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #999;
}
.pl-breadcrumb .breadcrumb-item a {
    color: #555;
    text-decoration: none;
}
.pl-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary);
}

/* When inside a Bootstrap grid column (search/listing page) */
.col > .shc-card {
    flex: 1 1 auto;
    max-width: 100%;
}

/* When inside an aiz-carousel / slick slide (home sections, related products) */
.carousel-box > .shc-card {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
}

/* Responsive */
@media (max-width: 767px) {
    .shc-card { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 480px) {
    .shc-card { flex: 0 0 50%; max-width: 50%; }
}

/* ===== SHRADHA FASHION – CTA (shared: about page + home page) ===== */
.ab-cta {
    background: linear-gradient(135deg, #bd2e95 0%, #d44aaa 100%);
    padding: 56px 0;
    text-align: center;
}
.ab-cta h2 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.ab-cta p { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 26px; font-weight: 400; }
.ab-cta-btn {
    display: inline-block;
    background: #fff;
    color: #bd2e95;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: box-shadow 0.2s, transform 0.2s;
}
.ab-cta-btn:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transform: translateY(-2px);
    color: #bd2e95;
}

/* ===== SHRADHA FASHION – NEW FOOTER ===== */
.shradha-footer {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    font-size: 14px;
    font-size: 14px;
}

.shradha-footer-main {
    padding: 60px 0 30px;
}

.sf-col {
    padding-bottom: 30px;
}

.sf-logo-link {
    display: inline-block;
    margin-bottom: 14px;
}

.sf-logo-img {
    max-height: 50px;
    width: auto;
    display: block;
}

.sf-brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-decoration: none !important;
    display: inline-block;
}

.sf-brand-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 350px;
}

.sf-col-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.sf-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sf-links li {
    margin-bottom: 11px;
}

.sf-links a {
    color: #555;
    font-size: 13px;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.sf-links a:hover {
    color: var(--primary);
}

.sf-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sf-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.sf-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(189, 46, 149, 0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.sf-contact-label {
    display: block;
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    font-weight: 600;
}

.sf-contact-value {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    text-decoration: none !important;
    transition: color 0.2s;
}

.sf-contact-value:hover {
    color: var(--primary);
}

.shradha-footer-bottom {
    background: #1a1a1a;
    padding: 18px 0;
    color: #aaa;
    font-size: 13px;
}

.sf-bottom-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #bbb;
    font-size: 13px;
}

.sf-bottom-info a {
    color: #bbb;
    text-decoration: none !important;
    transition: color 0.2s;
}

.sf-bottom-info a:hover {
    color: var(--primary);
}

.sf-copyright {
    color: #888;
    font-size: 13px;
}

.sf-social-brand {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.sf-social-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(189, 46, 149, 0.10);
    border: 1.5px solid transparent;
    color: var(--primary);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none !important;
}

.sf-social-brand-icon:hover,
.sf-social-brand-icon:focus {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(189, 46, 149, 0.28);
}

@media (max-width: 991px) {
    .shradha-footer-main { padding: 40px 0 10px; }
    .sf-col { padding-bottom: 30px; }
    .sf-social-brand { justify-content: center; }
    .shradha-footer-bottom .text-right { text-align: center !important; }
    .shradha-footer-bottom .text-md-left { text-align: center !important; }
}

/* Home Categories Section Enhancements */
.category-banner-premium {
    height: 100%;
}

.absolute-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hov-scale-img {
    overflow: hidden;
}

.hov-scale-img img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hov-scale-img:hover img {
    transform: scale(1.1);
}

.btn-outline-white {
    color: #fff;
    border-color: #fff;
    background: transparent;
}

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

/* Section Header Underline Effect */
.section-title-wrap {
    position: relative;
    border-bottom: 2px solid #f1f1f1 !important;
}

.section-title-main {
    position: relative;
    padding-bottom: 10px;
}

.section-title-main:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.view-all-link {
    color: var(--primary) !important;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #333 !important;
    transform: translateX(3px);
}

/* Featured Section Slick List Overrides */
#section_featured .slick-slider .slick-list {
    background: #fff;
}

#section_featured .slick-slider .slick-list .slick-slide {
    margin-bottom: -5px;
}

@media (max-width: 575px) {
    #section_featured .slick-slider .slick-list .slick-slide {
        margin-bottom: -4px;
    }
}

/* All Categories Page - Modern Styling */
.all-category-page .parent-category-card {
    background: #FDF4DC;
    border: 1px solid rgba(189, 46, 149, 0.12);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(189, 46, 149, 0.05);
}

.all-category-page .parent-category-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(189, 46, 149, 0.12);
}

.all-category-page .category-image-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.all-category-page .child-category-title {
    color: var(--primary);
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 12px;
    display: block;
}

.all-category-page .sub-child-list a {
    color: #555;
    font-size: 13px;
    padding: 3px 0;
    display: block;
    transition: all 0.2s ease;
}

.all-category-page .sub-child-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

@media (min-width: 992px) {
    .border-right-lg {
        border-right: 1px solid #f1f1f1 !important;
    }
}

/* Product Listing Page Filters */
.aiz-filter-sidebar .collapse-sidebar {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    overflow: hidden;
    padding: 10px;
}

.aiz-filter-sidebar .bg-white {
    background: transparent !important;
}

.aiz-filter-sidebar .filter-section {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #111 !important;
    padding: 15px 0 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.aiz-filter-sidebar .aiz-checkbox-list {
    padding-left: 0;
}

.aiz-filter-sidebar .aiz-checkbox {
    margin-bottom: 10px !important;
    transition: none !important;
}

.aiz-filter-sidebar .aiz-checkbox:hover {
    padding-left: 0;
}

.aiz-filter-sidebar .aiz-checkbox .aiz-square-check {
    flex-shrink: 0;
    width: 18px !important;
    height: 18px !important;
    border-radius: 3px !important;
    border: 1.5px solid #ccc !important;
    background: #fff !important;
    transition: none !important;
}

.aiz-filter-sidebar .aiz-checkbox input:checked ~ .aiz-square-check {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.aiz-filter-sidebar .aiz-checkbox input:checked ~ .aiz-square-check:after {
    border-color: #fff !important;
}

.aiz-filter-sidebar .border-bottom-listing-sidebar {
    border-bottom: 1px solid #e8bde2 !important;
}

/* Header One-Row Alignment */
.product-listing-header .header-controls-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== bl-cat-label — global (blog + product filter) ===== */
.bl-cat-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    font-size: 13px;
    color: #444;
    border-bottom: 1px solid #faf0f8;
    margin: 0;
}
.bl-cat-label:last-child { border-bottom: none; }
.bl-cat-label input[type=checkbox] { display: none; }
.bl-cat-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 2px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bl-cat-label input:checked ~ .bl-cat-check {
    background: #bd2e95;
    border-color: #bd2e95;
}
.bl-cat-label input:checked ~ .bl-cat-check::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px, -1px);
}
.bl-cat-name { flex: 1; }
.bl-cat-label:hover .bl-cat-name { color: #bd2e95; }
.bl-cat-label .count {
    font-size: 11px;
    color: #bbb;
    margin-left: auto;
}

/* Listing Header Match color with Product Cards */
.product-listing-header .bg-white.rounded-pill,
.product-listing-header .bg-light.rounded-pill {
    background: #FDF4DC !important;
    border: 1px solid #f5d0ed !important;
}

.product-listing-header #total_product_count {
    color: #bd2e95 !important;
}

.product-listing-header .btn-col-filter.active-cols {
    background: #bd2e95 !important;
    color: #fff !important;
}

/* Premium Modern Scrollbar */
.c-scrollbar-light::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.c-scrollbar-light::-webkit-scrollbar-track {
    background: transparent;
}

.c-scrollbar-light::-webkit-scrollbar-thumb {
    background: #e8bde2;
    border-radius: 10px;
}

.c-scrollbar-light::-webkit-scrollbar-thumb:hover {
    background: #cf90c3;
}

/* Sidebar scrollable sections */
.scroll-bar-show {
    overflow-y: auto !important;
    padding-right: 10px;
}

.aiz-filter-sidebar .text-left {
    text-align: left !important;
}

.aiz-filter-sidebar .collapse-sidebar {
    padding-bottom: 10px;
}

/* Header Refinement */
.product-listing-header .btn-col-filter.active-cols {
    background: #bd2e95 !important;
    /* Branded Red */
    color: #fff !important;
}

.product-listing-header .btn-col-filter:not(.active-cols):hover {
    background: #fef5fb !important;
    color: #bd2e95 !important;
}

/* Remove internal Sort-by borders */
.product-listing-header select#select_option,
.product-listing-header .dropdown-toggle {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.product-listing-header .bootstrap-select .dropdown-toggle:focus,
.product-listing-header .bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
}

/* Precise Sidebar Sidebar Matching Screenshot */
.aiz-filter-sidebar .collapse-sidebar {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 10px 0 !important;
    border: none !important;
}

.aiz-filter-sidebar .filter-section {
    padding: 20px 25px 10px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.aiz-filter-sidebar .filter-section a {
    color: #333 !important;
    font-weight: 600 !important;
}

.aiz-filter-sidebar .aiz-checkbox-list {
    padding: 0 !important;
}


.aiz-filter-sidebar .hover-effect-list-item {
    font-size: 14px !important;
    color: #333 !important;
    padding-left: 0 !important;
    transition: none !important;
}
.aiz-filter-sidebar .hover-effect-list-item:hover {
    color: #333 !important;
    font-weight: inherit !important;
    padding-left: 0 !important;
}

/* Horizontal line between sections */
.aiz-filter-sidebar .border-bottom-listing-sidebar {
    border-bottom: 1px solid #f5d0ed !important;
}

/* Price Slider refine */
.aiz-filter-sidebar .aiz-range-slider {
    padding: 10px 0;
}

.aiz-filter-sidebar .noUi-target {
    background: #eee !important;
    height: 4px !important;
    border: none !important;
}

.aiz-filter-sidebar .noUi-connect {
    background: var(--primary) !important;
}

.aiz-filter-sidebar .noUi-handle {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: var(--primary) !important;
    border: 2px solid #fff !important;
    box-shadow: 0 0 0 2px var(--primary) !important;
    right: -7px !important;
    top: -6px !important;
}

.aiz-filter-sidebar .range-slider-value {
    font-size: 16px !important;
    font-weight: 600 !important;
}


/* Section Header arrow refine */
.aiz-filter-sidebar .dropdown-toggle::after {
    content: '\f107';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    border: none;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.aiz-filter-sidebar .dropdown-toggle.collapsed::after {
    transform: rotate(0deg);
}

.aiz-filter-sidebar .dropdown-toggle:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Price range labels exactly like screenshot */
.aiz-filter-sidebar #input-slider-range-value-low,
.aiz-filter-sidebar #input-slider-range-value-high {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #444 !important;
}

/* Refined Grid Filter Buttons */
.btn-col-filter {
    background-color: #F2F2F2 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transition: all 0.3s ease;
    height: 33px !important;
    width: 33px !important;
    border-radius: 5px !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
}

.btn-col-filter i {
    color: #000 !important;
    transition: color 0.3s ease;
}

/* Active State */
.btn-col-filter.active-cols {
    background-color: var(--primary) !important;
}

.btn-col-filter.active-cols i {
    color: #fff !important;
}

/* Hover State */
.btn-col-filter:hover {
    background-color: #000 !important;
}

.btn-col-filter:hover i {
    color: #fff !important;
}

/* ===== HOME CATEGORIES – SECTION WRAPPER ===== */
.shc-home-cat-section {
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    margin-bottom: 4px;
}
.shc-home-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 12px;
    background: linear-gradient(135deg, #fdf0fa 0%, #fff 100%);
    border-bottom: 1px solid rgba(189,46,149,0.10);
    border-left: 4px solid var(--primary);
}
.shc-home-cat-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.shc-home-cat-viewall {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary) !important;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1.5px solid rgba(189,46,149,0.40);
    padding: 5px 14px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.shc-home-cat-viewall:hover {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary);
    text-decoration: none !important;
}

/* ===== HOME CATEGORIES – PRODUCT GRID ===== */
.shc-home-cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    padding: 16px;
}
/* Override shc-card flex/max-width — inside CSS grid, flex props don't apply but max-width needs reset */
.shc-home-cat-grid .shc-card {
    flex: none !important;
    max-width: 100% !important;
    width: 100%;
    border-radius: 0 !important;
    border: 1px solid #f0e0ec;
}
.shc-home-cat-grid .shc-card:hover {
    border-color: #d4a0c8;
    box-shadow: 0 4px 16px rgba(189,46,149,0.10);
}
@media (max-width: 1199px) {
    .shc-home-cat-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
    .shc-home-cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .shc-home-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 10px; }
}

/* ══════════════════════════════════════════
   USER DASHBOARD – Shradha Fashion
══════════════════════════════════════════ */

/* Hero bar */
.up-hero {
    background: linear-gradient(135deg, #fdf0fa 0%, #fff 60%, #fef9f0 100%);
    border-bottom: 1px solid #f3e0ef;
    padding: 36px 0 30px;
    text-align: center;
}
.up-hero-label {
    display: inline-block;
    background: rgba(189,46,149,.08);
    color: var(--primary, #bd2e95);
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 5px 16px;
    border-radius: 20px; margin-bottom: 10px;
}
.up-hero h1 {
    font-size: 26px; font-weight: 800; color: #1a1a1a; margin: 0;
}

/* Page background */
.up-section {
    background: #faf5fb;
    padding: 36px 0 60px;
    min-height: 70vh;
}

/* ── Sidebar ── */
.aiz-user-sidenav-wrap {
    border: 1px solid #eedff0 !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 20px rgba(189,46,149,0.08) !important;
    overflow: hidden;
    flex: 0 0 255px !important;
    max-width: 255px !important;
    background: #fff;
}
.aiz-user-sidenav {
    background: #fff;
    padding: 0 !important;
}

/* User profile block */
.aiz-user-sidenav .p-4.text-center.mb-4.border-bottom {
    background: linear-gradient(135deg, #fdf0fa 0%, #fff5fd 100%);
    border-bottom: 1px solid #f0e0ec !important;
    padding: 22px 16px 18px !important;
    margin-bottom: 0 !important;
}
.aiz-user-sidenav .avatar.avatar-md {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(189,46,149,0.22);
    overflow: hidden;
    display: inline-block;
    margin-bottom: 10px !important;
}
.aiz-user-sidenav .avatar.avatar-md img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.aiz-user-sidenav .h5 {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
}
.aiz-user-sidenav .opacity-60.fs-12 {
    font-size: 12px !important;
    color: #999 !important;
    opacity: 1 !important;
}

/* Nav list */
.aiz-user-sidenav .sidemnenu {
    padding: 10px 10px 0;
}
.aiz-user-sidenav .aiz-side-nav-list {
    padding: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #f5edf3 !important;
}

/* Nav links */
.aiz-user-sidenav .aiz-side-nav-list .aiz-side-nav-link {
    padding: 9px 12px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #555 !important;
    margin-bottom: 1px;
    background: transparent !important;
    transition: background 0.15s, color 0.15s;
}
.aiz-user-sidenav .aiz-side-nav-link .aiz-side-nav-text {
    color: inherit;
}

/* SVG icons default grey */
.aiz-user-sidenav .aiz-side-nav-list .aiz-side-nav-link > svg * {
    fill: #c0b0c8 !important;
    transition: fill 0.15s;
}

/* Hover */
.aiz-user-sidenav .aiz-side-nav-list .aiz-side-nav-link:hover {
    background: rgba(189,46,149,0.07) !important;
    color: var(--primary, #bd2e95) !important;
}
.aiz-user-sidenav .aiz-side-nav-list .aiz-side-nav-link:hover > svg * {
    fill: var(--primary, #bd2e95) !important;
}

/* Active */
.aiz-user-sidenav .aiz-side-nav-link.active,
.aiz-user-sidenav .aiz-side-nav-link.level-2-active,
.aiz-user-sidenav .aiz-side-nav-link.level-3-active {
    background: rgba(189,46,149,0.1) !important;
    color: var(--primary, #bd2e95) !important;
}
.aiz-user-sidenav .aiz-side-nav-link.active > svg *,
.aiz-user-sidenav .aiz-side-nav-link.level-2-active > svg *,
.aiz-user-sidenav .aiz-side-nav-link.level-3-active > svg * {
    fill: var(--primary, #bd2e95) !important;
}

/* Level-2 sub links */
.aiz-user-sidenav .aiz-side-nav-list .level-2 .aiz-side-nav-link {
    padding: 8px 12px 8px 42px !important;
    font-size: 12.5px !important;
    border-radius: 6px !important;
}
.aiz-user-sidenav .aiz-side-nav-list .level-2 .aiz-side-nav-link:after {
    background: #e0c8e8;
}
.aiz-user-sidenav .level-2 .aiz-side-nav-link.active:after,
.aiz-user-sidenav .level-2 .aiz-side-nav-link:hover:after {
    background: var(--primary, #bd2e95) !important;
}

/* Badges */
.aiz-user-sidenav .badge-success { background: #2ebd8a !important; }
.aiz-user-sidenav .badge-danger  { background: #e53935 !important; }

/* Sign out button */
.aiz-user-sidenav .btn.btn-primary.btn-block {
    background: var(--primary, #bd2e95) !important;
    border-color: var(--primary, #bd2e95) !important;
    border-radius: 25px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 10px !important;
    margin: 16px 0 4px !important;
}
.aiz-user-sidenav .btn.btn-primary.btn-block:hover {
    background: #9a2478 !important;
    border-color: #9a2478 !important;
}

/* ── Main panel ── */
.aiz-user-panel {
    padding-left: 22px !important;
}

/* Stat/info cards with border */
.aiz-user-panel .px-4.bg-white.border,
.aiz-user-panel .p-4.border {
    border: 1px solid #eedff0 !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 14px rgba(189,46,149,0.06) !important;
    background: #fff !important;
}
.aiz-user-panel .px-4.bg-white.border .border-bottom,
.aiz-user-panel .p-4.border .border-bottom {
    border-bottom-color: #f5edf3 !important;
}

/* Stat card primary (expenditure) */
.aiz-user-panel .p-4.bg-primary {
    border-radius: 12px !important;
    box-shadow: 0 4px 18px rgba(189,46,149,0.18) !important;
}

/* Section headings */
.aiz-user-panel h3.fw-700,
.aiz-user-panel h6.fw-700 {
    color: #1a1a1a !important;
}

/* Add address / upgrade package buttons */
.aiz-user-panel .btn-dark {
    background: #2a2a2a !important;
    border-color: #2a2a2a !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
}
.aiz-user-panel .btn-dark:hover {
    background: #111 !important;
    border-color: #111 !important;
}

/* Wishlist section header */
.aiz-user-panel .row.align-items-center.mb-2 {
    border-bottom: 1px solid #f5edf3;
    padding-bottom: 12px;
    margin-bottom: 16px !important;
}

/* Wishlist product cards */
.aiz-user-panel .aiz-card-box {
    border-color: #f5edf3 !important;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.aiz-user-panel .aiz-card-box:hover {
    border-color: #e0c0d8 !important;
    box-shadow: 0 4px 16px rgba(189,46,149,0.1) !important;
}

/* Empty state */
.aiz-user-panel .text-center.bg-white.p-4.border {
    border: 1px solid #eedff0 !important;
    border-radius: 12px !important;
}

/* Welcome coupon bar */
.aiz-user-panel .alert-primary {
    border-radius: 10px !important;
    margin-bottom: 20px !important;
}

@media (max-width: 1199px) {
    .aiz-user-sidenav-wrap {
        flex: 0 0 255px !important;
        max-width: 255px !important;
    }
    .aiz-user-panel { padding-left: 0 !important; }
}

/* Disable global image hover scale */
.hov-scale-img:hover img,
.hov-scale:hover { transform: none !important; }

