:root {
    --maroon: #800000;
    --mustard: #DAA520;
    --burnt-orange: #CC5500;
    --forest-green: #1B4D3E;
    --black: #1A1A1A;
    --off-white: #F9F5F0;
    --gray: #666;
    --border: #E0E0E0;
    --light-gray: #f5f5f5;
    --dark-charcoal: #2C2C2C;
    --warm-beige: #E8E0D5;
    --soft-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    --hover-shadow: 0 6px 25px rgba(128, 0, 0, 0.08);
    --card-shadow: 0 10px 30px -15px rgba(0,0,0,0.1);
    --card-hover-shadow: 0 20px 40px -15px rgba(128,0,0,0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--off-white);
    color: var(--black);
    line-height: 1.5;
    font-size: 15px;
    overflow-x: hidden;
    padding-top: 72px;
}

h1, h2, h3, h4, h5, .logo {
    font-family: 'Lora', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* ===== NOTIFICATION TOAST (GLOBAL) ===== */
.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 320px;
    max-width: 400px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.25), 0 0 0 1px rgba(128,0,0,0.1);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10000;
    border-left: 6px solid var(--maroon);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.notification-toast.show {
    transform: translateX(0);
}

.notification-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(145deg, #fce9e9, #fff0f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-charcoal);
    margin-bottom: 2px;
}

.notification-message {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
}

.notification-close {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}

.notification-close:hover {
    color: var(--maroon);
}

/* ===== AUTH MODAL STYLES ===== */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.auth-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: white;
    border-radius: 24px;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 4px solid var(--maroon);
    position: relative;
}

.auth-modal-overlay.show .auth-modal {
    transform: scale(1) translateY(0);
}

.auth-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.8rem;
    border-bottom: 1px solid rgba(128, 0, 0, 0.08);
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-radius: 24px 24px 0 0;
}

.auth-modal-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin: 0;
    font-family: 'Lora', serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-modal-header h3 i {
    color: var(--maroon);
    font-size: 1.1rem;
}

.auth-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(128, 0, 0, 0.05);
    color: var(--gray);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.auth-modal-close:hover {
    background: rgba(128, 0, 0, 0.1);
    color: var(--maroon);
    transform: rotate(90deg);
}

.auth-modal-content {
    padding: 1.5rem 1.8rem 2rem;
}

.auth-form-group {
    margin-bottom: 1.2rem;
}

.auth-form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark-charcoal);
    margin-bottom: 0.4rem;
}

.auth-form-control {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(128, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.auth-form-control:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
}

.auth-form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0 1.5rem;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--gray);
    cursor: pointer;
}

.auth-checkbox input[type="checkbox"] {
    accent-color: var(--maroon);
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

.auth-forgot-link {
    color: var(--maroon);
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-forgot-link:hover {
    color: var(--mustard);
    text-decoration: underline;
}

.auth-submit-btn {
    width: 100%;
    background: var(--maroon);
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid var(--maroon);
    margin-bottom: 1.2rem;
}

.auth-submit-btn:hover {
    background: transparent;
    color: var(--maroon);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -6px rgba(128, 0, 0, 0.3);
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(128, 0, 0, 0.1);
    z-index: 1;
}

.auth-divider span {
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 1rem;
    color: var(--gray);
    font-size: 0.8rem;
}

.auth-social-login {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.auth-social-btn {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(128, 0, 0, 0.15);
    background: white;
    color: var(--dark-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-social-btn.google:hover {
    background: #f8f9fa;
    border-color: #4285f4;
    color: #4285f4;
}

.auth-social-btn.facebook:hover {
    background: #f8f9fa;
    border-color: #1877f2;
    color: #1877f2;
}

.auth-social-btn i {
    font-size: 1rem;
}

.auth-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    border-top: 1px solid rgba(128, 0, 0, 0.08);
    padding-top: 1.2rem;
}

.auth-footer a {
    color: var(--maroon);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-footer a:hover {
    color: var(--mustard);
    text-decoration: underline;
}

.auth-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 1.2rem 0 1.5rem;
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.4;
}

.auth-terms input[type="checkbox"] {
    accent-color: var(--maroon);
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.auth-terms label {
    cursor: pointer;
}

.auth-terms a {
    color: var(--maroon);
    text-decoration: none;
    font-weight: 500;
}

.auth-terms a:hover {
    text-decoration: underline;
}

/* ===== USER AUTH DROPDOWN ===== */
.user-auth-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.user-auth-wrapper .auth-dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transform: translateY(-8px);
    pointer-events: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    padding: 0.5rem 0;
    background: white;
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
    margin-top: 12px;
    border-top: 3px solid var(--mustard);
    z-index: 1020;
}

.user-auth-wrapper::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 12px;
    background: transparent;
    z-index: 1001;
}

.user-auth-wrapper:hover .auth-dropdown-menu,
.user-auth-wrapper .auth-dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.auth-dropdown-header {
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid rgba(128,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-dropdown-header i {
    font-size: 1.2rem;
    color: var(--maroon);
}

.auth-dropdown-header span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-charcoal);
}

.auth-dropdown-body {
    padding: 0.5rem 0;
}

.auth-dropdown-btn {
    width: 100%;
    padding: 0.7rem 1.2rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--dark-charcoal);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
}

.auth-dropdown-btn i {
    color: var(--maroon);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.auth-dropdown-btn:hover {
    background: rgba(128,0,0,0.03);
    color: var(--maroon);
    transform: translateX(3px);
}

.auth-dropdown-divider {
    height: 1px;
    background: rgba(128,0,0,0.08);
    margin: 0.5rem 0;
}

.auth-dropdown-link {
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.auth-dropdown-link i {
    color: var(--mustard);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.auth-dropdown-link:hover {
    background: rgba(128,0,0,0.03);
    color: var(--maroon);
}

.offcanvas-auth {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.offcanvas-auth-btn {
    flex: 1;
    padding: 10px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid var(--maroon);
    background: white;
    color: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.offcanvas-auth-btn.login {
    background: var(--maroon);
    color: white;
    border: 1px solid var(--maroon);
}

.offcanvas-auth-btn.login:hover {
    background: white;
    color: var(--maroon);
}

.offcanvas-auth-btn.register:hover {
    background: var(--maroon);
    color: white;
}

/* ===== FIXED/STICKY NAVBAR ===== */
.navbar {
    background: white !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

/* Underline effect on hover for text-only navigation items */
.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-item .nav-link {
    font-size: 15px !important;
    font-weight: 500;
    color: var(--dark-charcoal) !important;
    padding: 0.5rem 0 !important;
    transition: color 0.2s;
    letter-spacing: 0.3px;
    text-transform: none;
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--maroon), var(--mustard));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-item:hover .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-nav .nav-link:hover {
    color: var(--maroon) !important;
}

/* Exclude user auth, dropdown and cart from underline effect */
.user-auth-wrapper .nav-link::after,
.cart-link::after {
    display: none !important;
}

/* ===== CART BADGE - HIDDEN BY DEFAULT, SHOWN ONLY WHEN ITEMS EXIST ===== */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--maroon);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 20px;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
    display: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cart-badge.show {
    display: inline-block;
}

/* ===== PRE-ORDER BUTTON ===== */
.preorder-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--maroon), #a52a2a);
    color: white !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px !important;
    border-radius: 10px !important;
    border: 2px solid var(--mustard);
    box-shadow: 0 8px 18px -6px rgba(128,0,0,0.4);
    text-decoration: none;
    letter-spacing: 0.3px;
    margin-left: 0px;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.preorder-btn:hover {
    background: linear-gradient(145deg, #9e3a3a, #c43b3b);
}

.preorder-btn::after {
    display: none !important;
}

@media (max-width: 991px) {
    .preorder-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
}

/* ===== MEGA MENU BASE STYLES ===== */
.mega-menu h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(128, 0, 0, 0.1);
}

.mega-menu .dropdown-item {
    padding: 0.35rem 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
    background: transparent;
    transition: all 0.2s ease;
    border-radius: 0;
    white-space: nowrap;
    border-bottom: 1px dotted transparent;
}

.mega-menu .dropdown-item:hover {
    color: var(--maroon);
    background: transparent;
    transform: translateX(5px);
    border-bottom-color: var(--mustard);
}

.mega-menu .menu-column {
    min-width: 140px;
}

/* ===== MEGA MENU WRAPPER STYLES ===== */
.mega-menu-wrapper-men,
.mega-menu-wrapper-women,
.mega-menu-wrapper-kids,
.mega-menu-wrapper-home,
.mega-menu-wrapper-beauty {
    position: static !important;
}

.mega-menu-wrapper-men::before,
.mega-menu-wrapper-women::before,
.mega-menu-wrapper-kids::before,
.mega-menu-wrapper-home::before,
.mega-menu-wrapper-beauty::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    z-index: 1021;
    pointer-events: none;
}

.mega-menu-wrapper-men:hover::before,
.mega-menu-wrapper-women:hover::before,
.mega-menu-wrapper-kids:hover::before,
.mega-menu-wrapper-home:hover::before,
.mega-menu-wrapper-beauty:hover::before {
    pointer-events: auto;
}

.mega-menu-wrapper-men .dropdown-menu,
.mega-menu-wrapper-women .dropdown-menu,
.mega-menu-wrapper-kids .dropdown-menu,
.mega-menu-wrapper-home .dropdown-menu,
.mega-menu-wrapper-beauty .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, transform 0.25s ease-in-out;
    transform: translateX(-50%) translateY(-8px);
    pointer-events: none;
    width: 1100px !important;
    max-width: 1100px !important;
    min-width: 1100px !important;
    left: 50% !important;
    right: auto;
    padding: 2rem 1.8rem;
    background: white;
    border: none;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 30px 50px -20px rgba(0,0,0,0.25);
    margin-top: 0;
    z-index: 1020;
    position: absolute;
    top: 100%;
    transition-delay: 0s;
}

.mega-menu-wrapper-men:not(:hover) .dropdown-menu,
.mega-menu-wrapper-women:not(:hover) .dropdown-menu,
.mega-menu-wrapper-kids:not(:hover) .dropdown-menu,
.mega-menu-wrapper-home:not(:hover) .dropdown-menu,
.mega-menu-wrapper-beauty:not(:hover) .dropdown-menu {
    transition-delay: 0.15s;
}

.mega-menu-wrapper-men:hover .dropdown-menu,
.mega-menu-wrapper-women:hover .dropdown-menu,
.mega-menu-wrapper-kids:hover .dropdown-menu,
.mega-menu-wrapper-home:hover .dropdown-menu,
.mega-menu-wrapper-beauty:hover .dropdown-menu,
.mega-menu-wrapper-men .dropdown-menu:hover,
.mega-menu-wrapper-women .dropdown-menu:hover,
.mega-menu-wrapper-kids .dropdown-menu:hover,
.mega-menu-wrapper-home .dropdown-menu:hover,
.mega-menu-wrapper-beauty .dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}

/* Padding for hover gap */
.mega-menu-wrapper-men,
.mega-menu-wrapper-women,
.mega-menu-wrapper-kids,
.mega-menu-wrapper-home,
.mega-menu-wrapper-beauty {
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.nav-link.categories-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link.categories-trigger i {
    font-size: 12px;
    transition: transform 0.2s;
}

.nav-link.categories-trigger:hover i {
    transform: rotate(180deg);
}

.dropdown-toggle::after {
    display: none;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: var(--dark-charcoal);
    transition: color 0.2s;
}

.cart-link:hover {
    color: var(--maroon);
}

.search-form {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 5px 10px 5px 15px;
    margin-right: 0.5rem;
    border: 1px solid rgba(128,0,0,0.1);
}

.search-input {
    border: none;
    background: transparent;
    font-size: 14px;
    padding: 5px 0;
    width: 200px;
    outline: none;
    color: var(--dark-charcoal);
}

.search-input::placeholder {
    color: #999;
    font-size: 13px;
}

.search-btn {
    background: transparent;
    border: none;
    color: var(--maroon);
    font-size: 1rem;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s;
}

.search-btn:hover {
    color: var(--mustard);
}

/* ===== MOBILE DRAWER ===== */
.navbar-toggler {
    border: 1px solid rgba(128,0,0,0.2);
    padding: 0.4rem 0.6rem;
    font-size: 1.2rem;
    background: white;
    color: var(--maroon);
    order: 3;
    margin-left: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.offcanvas {
    background: var(--off-white);
    border-left: 3px solid var(--mustard);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(128,0,0,0.1);
    padding: 1rem 1.5rem;
}

.offcanvas-title img {
    height: 35px;
}

.offcanvas-body {
    padding: 1.5rem 1.5rem 2rem;
}

.offcanvas-body .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-charcoal);
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(128,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.offcanvas-body .nav-link i {
    color: var(--maroon);
    font-size: 1.1rem;
    width: 24px;
}

.offcanvas-body .nav-link:hover {
    color: var(--maroon);
}

.offcanvas-categories h6 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--maroon);
    margin: 1.2rem 0 0.5rem 0;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.offcanvas-categories .row {
    margin-bottom: 0.8rem;
}

.offcanvas-categories a {
    color: var(--gray);
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.3rem 0;
    display: inline-block;
    transition: all 0.2s;
}

.offcanvas-categories a:hover {
    color: var(--maroon);
    transform: translateX(3px);
}

.offcanvas-search {
    display: flex;
    background: white;
    border-radius: 40px;
    border: 1px solid rgba(128,0,0,0.15);
    overflow: hidden;
    margin: 1.2rem 0 0.5rem;
}

.offcanvas-search input {
    border: none;
    background: transparent;
    padding: 0.6rem 1rem;
    flex: 1;
    outline: none;
    font-size: 0.9rem;
}

.offcanvas-search button {
    background: transparent;
    border: none;
    color: var(--maroon);
    padding: 0 1rem;
    font-size: 1rem;
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
    .d-lg-none {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .navbar .container {
        flex-wrap: wrap;
    }
    .navbar-collapse {
        display: none;
    }
    .navbar-brand {
        order: 1;
    }
    .cart-link.d-lg-none {
        order: 2;
        margin-left: auto;
        margin-right: 0;
        display: flex !important;
    }
}

/* ===== FOOTER (GLOBAL) ===== */
.ekzola-footer {
    background: var(--dark-charcoal);
    color: rgba(255,255,255,0.8);
    padding: 3.5rem 0 2rem;
    margin-top: 80px;
    border-top: 6px solid var(--mustard);
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-area {
    margin-bottom: 1.2rem;
}

.footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 0.5rem;
    margin-top: -15px;
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 0;
}

.footer-download {
    margin-top: 0.8rem;
}

.footer-download p {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.store-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 8px 16px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(218,165,32,0.3);
    margin-right: 8px;
    margin-bottom: 6px;
}

.store-badge i {
    color: var(--mustard);
    margin-right: 6px;
    font-size: 1rem;
}

.store-badge:hover {
    background: var(--mustard);
    color: var(--dark-charcoal);
    transform: translateY(-2px);
    border-color: transparent;
}

.store-badge:hover i {
    color: var(--dark-charcoal);
}

.footer-heading {
    font-family: 'Lora', serif;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 0.6rem;
    line-height: 1.2;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--mustard);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--mustard);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--mustard);
    opacity: 0.6;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

.footer-contact-item i {
    color: var(--mustard);
    font-size: 1.2rem;
    min-width: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-item span {
    flex: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2.5rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.8rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--mustard);
}

/* ===== PAYMENT ICONS ===== */
.payment-icons {
    display: flex;
    gap: 12px;
    font-size: 1.4rem;
    align-items: center;
}

.payment-icon-img {
    height: 28px;
    width: auto;
    filter: none !important;
    transition: transform 0.2s ease;
    opacity: 0.95;
    border-radius: 4px;
}

.payment-icon-img:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* ===== PRELOADER (GLOBAL) ===== */
#ekzola-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#ekzola-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    max-width: 300px;
}

.preloader-logo {
    height: 70px;
    width: auto;
    margin-bottom: 2rem;
    animation: softBreathing 2.2s infinite ease-in-out;
}

.preloader-spinner {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border: 3px solid rgba(128,0,0,0.08);
    border-top: 3px solid var(--maroon);
    border-right: 3px solid var(--mustard);
    border-bottom: 3px solid var(--forest-green);
    border-left: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1.2s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
    box-shadow: 0 0 15px rgba(218,165,32,0.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes softBreathing {
    0% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); filter: drop-shadow(0 4px 8px rgba(128,0,0,0.15)); }
    100% { opacity: 0.7; transform: scale(1); }
}

/* ===== HERO SLIDER (INDEX.HTML) ===== */
.hero-slider {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background-color: var(--off-white);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.9) saturate(1.1);
    z-index: -2;
}

.hero-slide:nth-child(1)::before {
    background-image: url('../img/bners.png');
}

.hero-slide:nth-child(2)::before {
    background-image: url('../img/2ndb.png');
}

.hero-slide:nth-child(3)::before {
    background-image: url('../img/bners.png');
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, 
        rgba(249, 245, 240, 0.95) 0%,
        rgba(249, 245, 240, 0.6) 20%,
        rgba(249, 245, 240, 0.3) 40%,
        rgba(249, 245, 240, 0.1) 60%,
        rgba(249, 245, 240, 0) 80%,
        transparent 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 600px;
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: 3.2rem !important;
    font-family: 'Lora', serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 6px rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--maroon);
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 28px;
    border-radius: 40px;
    border: 2px solid var(--maroon);
    box-shadow: 0 8px 18px -6px rgba(128,0,0,0.25);
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
    text-decoration: none;
}

.btn-hero-primary i {
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--maroon);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(128,0,0,0.3);
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--dark-charcoal);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 40px;
    border: 2px solid var(--mustard);
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-hero-secondary i {
    color: var(--maroon);
    font-size: 1rem;
}

.btn-hero-secondary:hover {
    background: var(--mustard);
    color: var(--dark-charcoal);
    border-color: var(--mustard);
    transform: translateY(-2px);
}

.btn-hero-secondary:hover i {
    color: var(--dark-charcoal);
}

.hero-badge {
    display: inline-block;
    background: rgba(218, 165, 32, 0.15);
    backdrop-filter: blur(4px);
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--maroon);
    border: 1px solid rgba(128,0,0,0.2);
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.mobile-slider {
    display: none;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--off-white);
}

.mobile-slider .slides-container {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.mobile-slider .slide {
    flex: 0 0 100%;
    aspect-ratio: 3 / 2;
    background-size: cover;
    background-position: center;
}

@media (max-width: 991px) {
    .hero-slider {
        display: none;
    }
    .mobile-slider {
        display: block;
    }
}

/* ===== CATEGORIES SECTION (INDEX.HTML) ===== */
.categories-wrapper {
    position: relative;
    padding: 50px 0 30px;
    background: linear-gradient(180deg, var(--off-white) 0%, rgba(249,245,240,0.5) 100%);
    border-radius: 60px 60px 0 0;
    margin-top: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: 'Lora', serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header .section-title .highlight {
    color: var(--maroon);
    position: relative;
    display: inline-block;
}

.section-header .section-description {
    font-size: 0.9rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.category-showcase {
    position: relative;
    width: 100%;
    margin: 30px 0 20px;
    padding: 0 10px;
}

.category-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-grid::-webkit-scrollbar {
    display: none;
}

.category-card {
    flex: 0 0 auto;
    width: calc((100% - (5 * 20px)) / 5.4);
    min-width: 140px;
    background: white;
    border-radius: 18px;
    padding: 25px 12px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(128, 0, 0, 0.03);
    box-shadow: 0 15px 35px -10px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px -15px rgba(0,0,0,0.15);
}

.category-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(128,0,0,0.02), rgba(218,165,32,0.02));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover .category-icon-wrapper {
    transform: scale(1.08);
}

.category-icon {
    font-size: 2.4rem;
    color: var(--maroon);
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.category-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon-img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.category-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--dark-charcoal);
    transition: color 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.3;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--maroon), var(--mustard));
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.category-card:hover .category-title {
    color: var(--dark-charcoal);
}

.category-card:hover .category-title::after {
    transform: translateX(-50%) scaleX(1);
}

.category-count {
    font-size: 0.7rem;
    color: var(--gray);
    padding: 4px 8px;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 2px;
    line-height: 1.4;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--maroon);
    border: 2px solid transparent;
}

.nav-arrow:hover:not(.disabled) {
    background: linear-gradient(135deg, var(--maroon), var(--mustard));
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(128, 0, 0, 0.25);
    border-color: white;
}

.nav-arrow:active:not(.disabled) {
    transform: translateY(-50%) scale(1.05);
}

.nav-arrow.disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.nav-arrow-left {
    left: -15px;
}

.nav-arrow-right {
    right: -15px;
}

.nav-arrow svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.nav-arrow:hover svg {
    transform: scale(1.2);
}

/* ===== FEATURED PRODUCTS SECTION (INDEX.HTML) ===== */
.featured-wrapper {
    padding: 60px 0 60px;
    position: relative;
    background: white;
}

.featured-header-left {
    margin-bottom: 30px;
    position: relative;
}

.featured-header-left .featured-subtitle {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mustard);
    background: rgba(218, 165, 32, 0.08);
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 8px;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.featured-header-left .featured-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 0;
    font-family: 'Lora', serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.featured-header-left .featured-title .highlight {
    color: var(--maroon);
    position: relative;
    display: inline-block;
}

/* ===== LIMITED DROP SECTION (INDEX.HTML) ===== */
.limited-drop-wrapper {
    background: linear-gradient(145deg, #fefefe 0%, #fff7f0 100%);
    border-radius: 36px;
    padding: 2rem 0;
    margin: 1.5rem 0;
    border: 1px solid rgba(218,165,32,0.2);
    box-shadow: 0 20px 40px -15px rgba(128,0,0,0.2);
}

.limited-product-card {
    background: white;
    border-radius: 26px;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 2px solid rgba(128,0,0,0.1);
}

.limited-gallery {
    background: var(--off-white);
    padding: 1.2rem;
    border-radius: 20px;
    height: 100%;
    position: relative;
}

.limited-main-img {
    border-radius: 18px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 15px 30px -12px rgba(0,0,0,0.25);
    transition: opacity 0.3s ease;
    height: 300px;
}

.limited-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.limited-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.limited-thumb {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.limited-thumb.active {
    border-color: var(--mustard);
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(218,165,32,0.3);
}

.limited-thumb:hover {
    opacity: 1;
    border-color: var(--maroon);
}

.mobile-limited-slider {
    display: none;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    margin-top: 14px;
}

.mobile-limited-slider::-webkit-scrollbar {
    display: none;
}

.mobile-limited-slider .slide-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    height: 200px;
    border-radius: 18px;
    overflow: hidden;
    border: 4px solid white;
}

.mobile-limited-slider .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    display: none;
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    justify-content: center;
    gap: 10px;
    z-index: 20;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(128,0,0,0.3);
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.slider-dots .dot.active {
    background: var(--maroon);
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 0 0 2px rgba(255,215,0,0.5);
}

.limited-info {
    padding: 1.2rem 0.8rem 1.2rem 1.2rem;
}

.countdown-header {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: linear-gradient(145deg, #fcf3e9, #fae8d9);
    padding: 3px 12px;
    border-radius: 36px;
    border: 1px solid var(--mustard);
    margin-bottom: 0.6rem;
    box-shadow: 0 2px 8px rgba(218,165,32,0.1);
}

.countdown-header i {
    color: var(--maroon);
    font-size: 0.75rem;
}

.countdown-header .timer-label {
    font-weight: 700;
    color: var(--maroon);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: rgba(128,0,0,0.05);
    padding: 2px 5px;
    border-radius: 30px;
    margin-right: 2px;
}

.countdown-header .time-number {
    font-weight: 700;
    color: var(--dark-charcoal);
    background: linear-gradient(145deg, #fff2d7, #ffe6b3);
    padding: 2px 5px;
    border-radius: 6px;
    margin: 0 1px;
    font-size: 0.75rem;
    border: 1px solid var(--mustard);
    box-shadow: 0 1px 4px rgba(218,165,32,0.15);
    display: inline-block;
    min-width: 26px;
    text-align: center;
    line-height: 1.2;
}

.countdown-header span:not(.timer-label):not(.time-number) {
    font-size: 0.65rem;
    color: var(--maroon);
    margin: 0 1px;
}

.limited-product-title {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: 'Lora', serif;
    color: var(--dark-charcoal);
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.price-exclusive {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 12px 0;
    padding: 12px 0;
    border-top: 2px dashed rgba(128,0,0,0.1);
    border-bottom: 2px dashed rgba(128,0,0,0.1);
}

.current-exclusive {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--maroon);
}

.original-exclusive {
    font-size: 1.2rem;
    color: var(--gray);
    text-decoration: line-through;
}

.discount-exclusive {
    background: var(--forest-green);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 40px;
}

.exclusive-description {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 12px 0;
}

.stock-warning {
    background: white;
    border: 1px solid rgba(128, 0, 0, 0.15);
    border-radius: 60px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.stock-icon {
    color: var(--maroon);
    font-size: 1.1rem;
}

.stock-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--maroon);
    line-height: 1;
}

.stock-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark-charcoal);
    letter-spacing: 0.3px;
}

.color-options {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0 14px;
}

.color-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-exclusive {
    background: linear-gradient(145deg, var(--maroon), #a52a2a);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 2px solid var(--mustard);
    box-shadow: 0 10px 22px -10px rgba(128,0,0,0.4);
    flex: 1;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-exclusive:hover {
    background: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 18px 32px -12px rgba(128,0,0,0.6);
}

.limited-info .d-flex.gap-3.align-items-center {
    display: flex;
    justify-content: center !important;
    width: 100%;
}

/* ===== SELLER SECTION (INDEX.HTML) ===== */
.seller-simple-wrapper {
    background: linear-gradient(145deg, #ffffff 0%, #fcf5eb 100%);
    border-radius: 50px 50px 0 0;
    padding: 60px 0;
    margin-top: 50px;
    border-top: 6px solid var(--mustard);
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
}

.seller-simple-wrapper::before {
    content: "✦ ✦ ✦";
    position: absolute;
    font-size: 7rem;
    right: 20px;
    bottom: -10px;
    color: rgba(218,165,32,0.06);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

.seller-simple-wrapper .container {
    position: relative;
    z-index: 2;
}

.seller-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
}

.seller-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--maroon);
    font-family: 'Lora', serif;
    margin-bottom: 12px;
}

.seller-header h2 span {
    color: var(--dark-charcoal);
    background: rgba(218,165,32,0.15);
    padding: 0 10px;
    border-radius: 60px;
    display: inline-block;
}

.seller-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.seller-cta-simple {
    text-align: center;
    margin: 25px 0 35px;
}

.btn-seller-simple {
    background: var(--maroon);
    color: white;
    border: none;
    padding: 14px 45px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 8px 18px -6px var(--maroon);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.btn-seller-simple:hover {
    background: var(--mustard);
    color: var(--dark-charcoal);
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -10px #b8860b;
    border-color: var(--maroon);
}

.seller-stats-simple {
    display: flex;
    justify-content: center;
    gap: 35px;
    text-align: center;
}

.seller-stats-simple div {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--maroon);
    font-family: 'Lora', serif;
}

.seller-stats-simple span {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray);
    margin-top: 4px;
    letter-spacing: 0.3px;
}

/* ===== SHOP PAGE SPECIFIC STYLES (shop.html) ===== */
.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.breadcrumb-wrapper {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1.3;
}

.breadcrumb-wrapper a {
    color: var(--maroon);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.breadcrumb-wrapper .separator {
    margin: 0 0.6rem;
    color: #aaa;
    font-weight: 300;
}

.breadcrumb-wrapper .current {
    color: var(--dark-charcoal);
    font-weight: 600;
}

.shop-main {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.filter-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: white;
    border-radius: 24px;
    padding: 1.5rem 1.2rem;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(128,0,0,0.08);
    position: sticky;
    top: 100px;
    overflow: visible;
    max-height: none;
    transition: box-shadow 0.3s ease;
}

.filter-sidebar:hover {
    box-shadow: 0 8px 30px rgba(128,0,0,0.12);
}

.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(128,0,0,0.1);
}

.filters-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin: 0;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

/* ===== UPDATED CLEAR ALL BUTTON ===== */
.clear-all-btn {
    color: #ff3f6c;
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
    display: none;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.2s ease;
    padding: 3px 8px;
    border-radius: 30px;
    background: rgba(255, 63, 108, 0.05);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.clear-all-btn.visible {
    display: inline-block;
    opacity: 1;
    transform: scale(1);
}

.clear-all-btn:hover {
    background: #ff3f6c;
    color: white;
}

/* ===== UPDATED GENDER, FILTER, AND COLOR OPTIONS ===== */
.gender-list-item, .filter-option, .color-filter-option {
    display: flex;
    align-items: center;
    padding: 5px 0;
    cursor: pointer;
    width: 100%;
}

.gender-list-item input, .filter-option input, .color-filter-option input {
    margin-right: 10px;
    accent-color: var(--maroon);
}

.color-square {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid #eaeaec;
}

.count {
    margin-left: auto;
    color: #9496a2;
    font-size: 11px;
}

/* ===== UPDATED SIDEBAR HEADINGS ===== */
.filter-sidebar h4 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 20px 0 10px;
}

/* ===== SIDEBAR BORDER ===== */
.filter-sidebar {
    border-right: 1px solid #edebef;
    padding-right: 20px;
}

.gender-section {
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(128,0,0,0.1);
}

.gender-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.gender-list {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.gender-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--gray);
    transition: all 0.2s ease;
    padding: 0.3rem 2px;
    border-radius: 4px;
    line-height: 1.2;
}

.gender-list-item:hover {
    color: var(--maroon);
    background: rgba(128,0,0,0.03);
    padding-left: 6px;
}

.gender-list-item .left-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gender-list-item input[type="radio"] {
    accent-color: var(--maroon);
    width: 14px;
    height: 14px;
    margin: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gender-list-item input[type="radio"]:checked {
    transform: scale(1.1);
}

.gender-list-item .gender-name {
    font-weight: 500;
}

.gender-list-item .count {
    color: #aaa;
    font-size: 0.65rem;
    transition: color 0.2s ease;
    line-height: 1.2;
}

.gender-list-item:hover .count {
    color: var(--maroon);
}

.filter-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.8rem 0 0.3rem 0;
    position: relative;
    min-height: 28px;
    transition: all 0.2s ease;
}

.filter-section-header h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    letter-spacing: 0.3px;
    margin: 0;
    padding: 0;
    transition: opacity 0.2s ease;
    flex: 1;
    line-height: 1.3;
}

.price-header {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    letter-spacing: 0.3px;
    margin: 0.8rem 0 0.5rem 0;
    line-height: 1.3;
}

.filter-search-icon {
    color: var(--maroon);
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
}

.filter-search-icon:hover {
    background-color: rgba(128,0,0,0.1);
    transform: scale(1.1) rotate(5deg);
}

.filter-search-active {
    display: none;
    align-items: center;
    width: 100%;
    gap: 6px;
}

.filter-section-header.search-mode .filter-search-active {
    display: flex;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.filter-section-header.search-mode h4,
.filter-section-header.search-mode .filter-search-icon {
    display: none;
}

.filter-search-input {
    flex: 1;
    height: 28px;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--maroon);
    border-radius: 5px;
    font-size: 0.75rem;
    background: white;
    box-shadow: 0 2px 8px rgba(128,0,0,0.1);
    outline: none;
    transition: all 0.2s ease;
}

.filter-search-input:focus {
    border-color: var(--maroon);
    box-shadow: 0 0 0 2px rgba(128,0,0,0.15), 0 2px 8px rgba(128,0,0,0.1);
}

.filter-search-cancel {
    color: #999;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0 3px;
    transition: all 0.2s ease;
}

.filter-search-cancel:hover {
    color: var(--maroon);
    transform: rotate(90deg);
}

.filter-group {
    margin-bottom: 0.8rem;
    transition: all 0.2s ease;
}

.filter-section-container {
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(128,0,0,0.1);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.2rem 2px;
    border-radius: 4px;
    line-height: 1.2;
}

.filter-option:hover {
    color: var(--maroon);
    background: rgba(128,0,0,0.03);
    padding-left: 6px;
}

.filter-option input[type="checkbox"] {
    accent-color: var(--maroon);
    width: 14px;
    height: 14px;
    margin: 0;
    flex-shrink: 0;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.filter-option input[type="checkbox"]:checked {
    transform: scale(1.1);
}

.filter-option .count {
    color: #aaa;
    font-size: 0.65rem;
    margin-left: auto;
    transition: color 0.2s ease;
    line-height: 1.2;
}

.filter-option:hover .count {
    color: var(--maroon);
}

.filter-option.filter-hidden {
    display: none;
}

.color-filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.2rem 2px;
    border-radius: 4px;
    line-height: 1.2;
}

.color-filter-option:hover {
    color: var(--maroon);
    background: rgba(128,0,0,0.03);
    padding-left: 6px;
}

.color-filter-option input[type="checkbox"] {
    accent-color: var(--maroon);
    width: 14px;
    height: 14px;
    margin: 0;
    flex-shrink: 0;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.color-filter-option input[type="checkbox"]:checked {
    transform: scale(1.1);
}

.color-square {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 2px;
    border: 1px solid rgba(0,0,0,0.1);
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-filter-option:hover .color-square {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(128,0,0,0.2);
}

.color-name {
    flex: 1;
}

.color-filter-option .count {
    color: #aaa;
    font-size: 0.65rem;
    margin-left: auto;
    transition: color 0.2s ease;
    line-height: 1.2;
}

.color-filter-option:hover .count {
    color: var(--maroon);
}

.color-filter-option.filter-hidden {
    display: none;
}

.extra-color {
    display: none;
}

.filter-expand {
    color: var(--maroon);
    font-size: 0.7rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 0.2rem;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.2rem 0.3rem;
    border-radius: 16px;
    line-height: 1.2;
}

.filter-expand:hover {
    background: rgba(128,0,0,0.05);
    padding-left: 0.6rem;
    transform: translateX(2px);
}

.filter-expand i {
    font-size: 0.6rem;
    margin-left: 3px;
    transition: transform 0.2s ease;
}

.filter-expand:hover i {
    transform: translateX(3px);
}

.price-range-container {
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(128,0,0,0.1);
}

.price-slider-container {
    padding: 0.3rem 0.3rem 0.5rem 0.3rem;
}

#price-slider {
    height: 4px;
    margin: 0.8rem 0 1rem 0;
}

#price-slider .noUi-connect {
    background: var(--maroon);
    transition: background 0.2s ease;
}

#price-slider .noUi-handle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--maroon);
    box-shadow: 0 2px 6px rgba(128,0,0,0.2);
    cursor: pointer;
    top: -6px;
    right: -8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#price-slider .noUi-handle:before,
#price-slider .noUi-handle:after {
    display: none;
}

#price-slider .noUi-handle:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(128,0,0,0.3);
}

#price-slider .noUi-handle:active {
    transform: scale(1.1);
}

.price-range-display {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--maroon);
    background: #f8f8f8;
    border-radius: 30px;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(128,0,0,0.1);
    margin-top: 0.3rem;
    transition: all 0.2s ease;
    line-height: 1.3;
}

.price-range-display:hover {
    background: white;
    border-color: var(--maroon);
}

.no-results-message {
    color: var(--gray);
    font-size: 0.7rem;
    padding: 0.3rem 0;
    font-style: italic;
    display: none;
    line-height: 1.2;
}

.no-results-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-panel {
    flex: 1;
    min-width: 0;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 60px;
    padding: 0.5rem 1.2rem;
    margin-bottom: 1.8rem;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(128,0,0,0.1);
    transition: box-shadow 0.3s ease;
    min-height: 48px;
}

.panel-header:hover {
    box-shadow: 0 8px 25px rgba(128,0,0,0.1);
}

.items-count {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    transition: color 0.2s ease;
    line-height: 1.3;
}

.items-count strong {
    color: var(--maroon);
    font-weight: 700;
    transition: color 0.2s ease;
}

.items-count:hover strong {
    color: var(--mustard);
}

.sort-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sort-label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.2s ease;
    line-height: 1.2;
}

.sort-select {
    border: 1px solid rgba(128,0,0,0.2);
    border-radius: 40px;
    padding: 0.3rem 1.8rem 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 500;
    background: white url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2210%22 height=%2210%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%23800000%22 stroke-width=%222%22><path d=%22M6 9l6 6 6-6%22/></svg>') no-repeat right 0.6rem center;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.2s ease;
    cursor: pointer;
    line-height: 1.2;
    background-size: 12px;
}

.sort-select:hover {
    border-color: var(--maroon);
    box-shadow: 0 2px 8px rgba(128,0,0,0.1);
}

.sort-select:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 2px rgba(128,0,0,0.1);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.show {
    display: flex;
    opacity: 1;
}

.popup {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.show .popup {
    transform: scale(1);
    opacity: 1;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(128, 0, 0, 0.1);
}

.popup-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin: 0;
    line-height: 1.3;
}

.popup-close {
    color: #999;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: none;
}

.popup-close:hover {
    color: var(--maroon);
    background: rgba(128, 0, 0, 0.05);
    transform: rotate(90deg);
}

.popup-search {
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid rgba(128, 0, 0, 0.1);
}

.popup-search input {
    width: 100%;
    padding: 0.5rem 0.8rem;
    border: 1px solid rgba(128, 0, 0, 0.2);
    border-radius: 30px;
    font-size: 0.8rem;
    outline: none;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.popup-search input:focus {
    border-color: var(--maroon);
    box-shadow: 0 0 0 2px rgba(128, 0, 0, 0.1);
}

.popup-content {
    padding: 0.8rem 1.2rem 1.2rem;
    overflow-y: auto;
    max-height: calc(80vh - 120px);
}

.popup-letter-group {
    margin-bottom: 1rem;
}

.popup-letter {
    font-weight: 600;
    color: var(--maroon);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid rgba(128, 0, 0, 0.1);
    line-height: 1.2;
}

.popup-items {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.popup-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--gray);
    transition: all 0.2s ease;
    padding: 0.2rem 0.3rem;
    border-radius: 4px;
    line-height: 1.2;
}

.popup-item:hover {
    color: var(--maroon);
    background: rgba(128, 0, 0, 0.03);
    padding-left: 0.6rem;
}

.popup-item input[type="checkbox"] {
    accent-color: var(--maroon);
    width: 14px;
    height: 14px;
    margin: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.popup-item input[type="checkbox"]:checked {
    transform: scale(1.1);
}

.popup-item .item-name {
    flex: 1;
}

.popup-item .item-count {
    color: #aaa;
    font-size: 0.65rem;
    transition: color 0.2s ease;
    line-height: 1.2;
}

.popup-item:hover .item-count {
    color: var(--maroon);
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5rem 0 1.5rem;
    padding: 0.5rem 0;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
    padding: 0.3rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(128, 0, 0, 0.05);
}

.pagination-item {
    display: inline-flex;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.pagination-item:not(.disabled) .pagination-link:hover {
    background: rgba(128, 0, 0, 0.05);
    color: var(--maroon);
    transform: translateY(-1px);
    border-color: rgba(128, 0, 0, 0.1);
}

.pagination-item.active .pagination-link {
    background: var(--maroon);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(128, 0, 0, 0.2);
    cursor: default;
}

.pagination-item.disabled .pagination-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-link i {
    font-size: 0.9rem;
}

.pagination-item:first-child .pagination-link,
.pagination-item:last-child .pagination-link {
    min-width: 40px;
}

.pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 1px;
}

.pagination-info {
    margin-left: 1.2rem;
    font-size: 0.8rem;
    color: var(--gray);
    background: white;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    border: 1px solid rgba(128, 0, 0, 0.1);
    line-height: 1.2;
}

.pagination-info strong {
    color: var(--maroon);
    font-weight: 600;
}

@media (max-width: 900px) {
    .shop-main { flex-direction: column; }
    .filter-sidebar { width: 100%; position: static; max-height: none; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .product-grid { grid-template-columns: 1fr; }
}

/* ===== GENERAL PRODUCT CARD STYLES (USED ACROSS MULTIPLE PAGES) ===== */
.product-image-container {
    position: relative;
    overflow: hidden;
    height: 210px;
    width: 100%;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
}

.image-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--forest-green);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 30px;
    letter-spacing: 0.3px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-price-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid rgba(128, 0, 0, 0.05);
    gap: 12px;
    flex-wrap: nowrap;
    width: 100%;
}

.price-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    flex: 1 1 auto;
    min-width: 0;
}

.current-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--maroon);
    line-height: 1.2;
    white-space: nowrap;
}

.original-price {
    font-size: 0.7rem;
    color: var(--gray);
    text-decoration: line-through;
    white-space: nowrap;
}

.discount-percent {
    background: var(--forest-green);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
    margin-left: 4px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.price-container .discount-percent:empty {
    display: none;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.wishlist-icon {
    background: transparent !important;
    border: none !important;
    color: #aaa;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0;
}

.wishlist-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.wishlist-icon:hover {
    color: #ff4d4d !important;
    background: transparent !important;
}

.wishlist-icon.active {
    color: #ff0000 !important;
}

.wishlist-icon.active i {
    font-family: 'bootstrap-icons' !important;
}

.add-to-cart-modern {
    background: transparent;
    border: 2px solid var(--maroon);
    color: var(--maroon);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0;
}

.add-to-cart-modern i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.add-to-cart-modern:hover {
    background: var(--maroon);
    color: white;
    transform: scale(1.1);
}

.add-to-cart-modern.added {
    background: var(--forest-green);
    border-color: var(--forest-green);
    color: white;
    pointer-events: none;
}

.add-to-cart-modern.added:hover {
    background: var(--forest-green);
    transform: scale(1.1);
}

/* Hide add to cart button for regular product cards */
.product-card-modern .add-to-cart-modern {
    display: none !important;
}

/* But keep it visible for exclusive limited drop section */
.limited-drop-wrapper .add-to-cart-modern,
.limited-drop-wrapper .exclusive-add-btn,
.limited-drop-wrapper .btn-exclusive {
    display: inline-flex !important;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 8px;
}

.section-head h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    font-family: 'Lora', serif;
    letter-spacing: -0.01em;
    margin: 0;
}

.section-head h2 i {
    color: var(--maroon);
    margin-right: 8px;
    font-size: 1.3rem;
}

.product-card-modern {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px -8px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(128, 0, 0, 0.03);
}

.product-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -12px rgba(128,0,0,0.2);
    border-color: transparent;
}

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

.badge-new, .badge-bestseller, .badge-limited {
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 30px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.badge-new {
    background: linear-gradient(135deg, var(--forest-green), #2d5a3d);
}

.badge-bestseller {
    background: linear-gradient(135deg, var(--mustard), #b8860b);
}

.badge-limited {
    background: linear-gradient(135deg, var(--maroon), #5c1e1e);
}

.product-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-content {
    padding: 15px 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.product-category {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mustard);
    margin-bottom: 5px;
}

.product-title-modern {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
    color: var(--dark-charcoal);
    transition: color 0.2s ease;
    font-family: 'Lora', serif;
}

.product-card-modern:hover .product-title-modern {
    color: var(--maroon);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--maroon);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.view-all-link:hover {
    color: var(--mustard);
    gap: 10px;
    border-bottom-color: var(--mustard);
}

.view-all-link i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.view-all-link:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--maroon);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: var(--black);
}

.btn-outline {
    border: 2px solid var(--maroon);
    color: var(--maroon);
    background: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-outline:hover {
    background: var(--maroon);
    color: white;
    transform: translateY(-2px);
}

.container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.rating-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 8px;
    margin-bottom: 10px;
}

.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: var(--mustard);
    font-size: 0.8rem;
}

.rating-stars .star-filled {
    color: var(--mustard);
}

.rating-stars .star-half {
    color: var(--mustard);
    position: relative;
}

.rating-stars .star-empty {
    color: #ddd;
}

.rating-value {
    font-weight: 600;
    color: var(--dark-charcoal);
    font-size: 0.8rem;
    white-space: nowrap;
}

.rating-count {
    color: var(--gray);
    font-size: 0.75rem;
    white-space: nowrap;
}

.divider {
    color: var(--gray);
    opacity: 0.5;
    margin: 0 2px;
    font-size: 0.75rem;
}

.sold-badge {
    color: var(--forest-green);
    background: rgba(27, 77, 62, 0.08);
    padding: 2px 8px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.7rem;
    border: 1px solid rgba(27, 77, 62, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.sold-badge i {
    font-size: 0.75rem;
    color: var(--maroon);
}

.rating-compact {
    display: none;
}

@media (max-width: 767px) {
    .rating-wrapper {
        display: none;
    }
    .rating-compact {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 3px;
        margin-bottom: 8px;
        font-size: 0.6rem;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px;
    }
    .rating-compact .star-icon {
        color: var(--mustard);
        font-size: 0.7rem;
        flex-shrink: 0;
    }
    .rating-compact .rating-value {
        font-weight: 600;
        font-size: 0.6rem;
        flex-shrink: 0;
    }
    .rating-compact .rating-count {
        color: var(--gray);
        font-size: 0.55rem;
        flex-shrink: 0;
    }
    .rating-compact .divider {
        color: var(--gray);
        opacity: 0.5;
        margin: 0 1px;
        font-size: 0.55rem;
        flex-shrink: 0;
    }
    .rating-compact .sold-badge {
        font-size: 0.55rem;
        padding: 2px 4px;
        gap: 2px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    .rating-compact .sold-badge i {
        font-size: 0.6rem;
    }
}

@media (max-width: 991px) {
    .featured-wrapper .row.g-4,
    .category-section .row.g-4 {
        margin-left: -8px;
        margin-right: -8px;
    }
    .featured-wrapper .row.g-4 > .col-md-6.col-lg-3,
    .category-section .row.g-4 > .col-md-3 {
        width: 50%;
        padding-left: 8px;
        padding-right: 8px;
        flex: 0 0 auto;
    }
    .product-content {
        padding: 12px 10px 12px;
    }
    .product-title-modern {
        font-size: 0.85rem;
        margin-bottom: 4px;
        line-height: 1.2;
    }
    .product-category {
        font-size: 0.55rem;
        margin-bottom: 3px;
    }
    .product-image-container {
        height: 150px !important;
    }
    .product-badge span {
        font-size: 0.45rem;
        padding: 2px 5px;
    }
    .original-price {
        display: none;
    }
    .current-price {
        font-size: 0.9rem !important;
    }
    .price-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: relative;
    }
    .price-container .discount-percent {
        margin-left: 30px !important;
        margin-bottom: -2px !important;
        margin-top: -8px !important;
        font-size: 0.5rem !important;
        padding: 1px 4px;
        order: -1;
        align-self: flex-start;
        position: relative;
        z-index: 2;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .product-image-container {
        height: 160px;
    }
}