/* ============================================
   Waslah Fashion - Premium E-commerce Stylesheet
   International Grade Design System
   ============================================ */

:root {
    /* Premium Color Palette */
    --primary-color: #0F2027;
    --primary-light: #203A43;
    --primary-dark: #0a1a1f;
    --secondary-color: #2C5364;
    --accent-color: #D4AF37;
    --accent-light: #E8C65C;
    --accent-dark: #B8960F;
    --light-accent: #FDF6E3;

    /* Neutrals */
    --text-color: #1a1a2e;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg-light: #f8fafc;
    --bg-subtle: #f1f5f9;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    /* Status Colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --info: #3b82f6;
    --info-light: #dbeafe;

    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    --gradient-accent: linear-gradient(135deg, #D4AF37 0%, #F5D061 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-luxury: linear-gradient(135deg, #0F2027 0%, #2C5364 100%);
    --gradient-gold: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #FFD700 100%);
    --gradient-subtle: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.03);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.15);

    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Image loading states with skeleton animation */
img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
    animation: none;
    background: none;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Eager load above-fold images */
img[loading="eager"] {
    opacity: 1;
    animation: none;
}

/* Ensure Font Awesome icons display properly */
.fas, .far, .fab, .fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background: var(--white);
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Selection styling */
::selection {
    background: var(--accent-color);
    color: var(--white);
}

/* ============================================
   Modern Site Header
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
}

/* Header Top Strip */
.header-top {
    background: linear-gradient(135deg, #0a1419 0%, #0F2027 100%);
    padding: 10px 0;
    font-size: 13px;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left .promo-text {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.header-top-left .promo-text i {
    color: var(--accent-color);
    margin-right: 8px;
}

.header-top-right {
    display: flex;
    gap: 24px;
}

.header-top-right a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    transition: var(--transition);
}

.header-top-right a:hover {
    color: var(--accent-color);
}

.header-top-right a i {
    margin-right: 6px;
    color: var(--accent-color);
}

/* Main Header */
.header-main {
    background: var(--white);
    padding: 16px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Site Logo */
.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.site-logo:hover img {
    transform: scale(1.02);
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border-radius: 8px;
}

.nav-link i {
    font-size: 10px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
    background: rgba(212, 175, 55, 0.08);
}

.nav-item.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-item .dropdown-menu {
    display: block !important; /* Override Bootstrap's display: none */
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    border: 1px solid var(--border-light);
    list-style: none;
    pointer-events: none;
}

.nav-item:hover .dropdown-menu,
.nav-item.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-item .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-item .dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
    padding-left: 24px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--bg-light);
    color: var(--accent-color);
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    background: var(--accent-color);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-dropdown .dropdown-trigger {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.user-dropdown:hover .dropdown-trigger {
    background: var(--bg-light);
    color: var(--accent-color);
}

.user-dropdown .dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    border: 1px solid var(--border-light);
}

.user-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown .dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
}

.user-dropdown .dropdown-header span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-dropdown .dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.user-dropdown .dropdown-content a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
}

.user-dropdown .dropdown-content a i {
    width: 16px;
    text-align: center;
    color: var(--text-light);
}

.user-dropdown .dropdown-content a:hover i {
    color: var(--accent-color);
}

.user-dropdown .dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 8px 0;
}

.user-dropdown .logout-link {
    color: var(--danger) !important;
}

.user-dropdown .logout-link i {
    color: var(--danger) !important;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.search-overlay.active {
    transform: translateY(0);
    opacity: 1;
}

.search-overlay-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-overlay .search-form {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 4px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.search-overlay .search-form:focus-within {
    border-color: var(--accent-color);
    background: var(--white);
}

.search-overlay .search-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
}

.search-overlay .search-form button {
    width: 48px;
    height: 48px;
    border: none;
    background: var(--accent-color);
    color: var(--primary-dark);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.search-overlay .search-form button:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

.search-close {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg-light);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-light);
    transition: var(--transition);
}

.search-close:hover {
    background: var(--danger-light);
    color: var(--danger);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--bg-light);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* Footer Logo (keep) */
.footer-logo {
    height: 65px;
    width: auto;
    border-radius: 6px;
}

/* Mobile Responsive Header */
@media (max-width: 991px) {
    .header-top-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .header-top-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        order: -1;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 0 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-link {
        width: 100%;
        padding: 16px 24px;
        justify-content: space-between;
        border-radius: 0;
    }

    .nav-item .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--bg-light);
        display: none !important;
        pointer-events: auto;
    }

    .nav-item.dropdown-open .dropdown-menu {
        display: block !important;
    }

    .nav-item:hover .dropdown-menu,
    .nav-item.has-dropdown:hover > .dropdown-menu {
        display: none !important;
        opacity: 1;
        visibility: visible;
    }

    .nav-item.dropdown-open .dropdown-menu {
        display: block !important;
    }

    .nav-item .dropdown-menu li a {
        padding-left: 40px;
    }

    .site-logo img {
        height: 40px;
    }

    .header-actions {
        gap: 4px;
    }

    .action-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .header-top {
        padding: 8px 0;
    }

    .header-top-left .promo-text {
        font-size: 11px;
    }

    .header-main {
        padding: 12px 0;
    }

    .site-logo img {
        height: 36px;
    }

    .search-toggle {
        display: flex;
    }
}

/* ============================================
   Hero Section - Cinematic Style
   ============================================ */
.hero-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-content .btn-accent {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.hero-content .btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.hero-image img {
    max-width: 500px;
}

/* ============================================
   Section Styles - Refined
   ============================================ */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #0F2027;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.section-title p {
    color: #4B5563;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   Category Cards - Modern Glass Style
   ============================================ */
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 340px;
    background: var(--bg-light);
    box-shadow: var(--shadow-md);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(15, 32, 39, 0.95) 0%, rgba(15, 32, 39, 0.6) 50%, transparent 100%);
    color: var(--white);
}

.category-overlay h3 {
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 700;
}

.category-overlay span {
    font-size: 14px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-overlay span::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

/* ============================================
   Product Cards - Premium Design
   ============================================ */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-light);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
    border-color: transparent;
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--bg-subtle);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.badge-sale {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.badge-new {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions a,
.product-actions button {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.product-actions a:hover,
.product-actions button:hover {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.product-info {
    padding: 24px;
}

.product-category {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.4;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Out of Stock Styles */
.product-card.out-of-stock {
    position: relative;
}

.product-card.out-of-stock .product-image img {
    opacity: 0.6;
    filter: grayscale(30%);
}

.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.out-of-stock-overlay span {
    background: #1F2937;
    color: #FFFFFF;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
}

.badge-sold-out {
    background: #1F2937 !important;
    color: #FFFFFF !important;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
}

.stock-status.out-of-stock {
    color: #EF4444;
}

.stock-status.in-stock {
    color: #10B981;
}

.stock-status.low-stock {
    color: #F59E0B;
}

/* ============================================
   Buttons - Premium Style
   ============================================ */
.btn-primary {
    background: var(--gradient-accent);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--primary-dark);
}

.btn-outline-dark {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

/* ============================================
   Features Section - Elevated
   ============================================ */
.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.feature-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(15, 32, 39, 0.2);
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Footer - Sophisticated Design
   ============================================ */
.main-footer {
    background: linear-gradient(135deg, #0a1419 0%, #0F2027 50%, #1a3540 100%);
    color: #FFFFFF;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
}

.footer-brand {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 24px;
    color: #D4AF37;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.footer-top p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.9;
}

.social-links a {
    display: inline-flex;
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #FFFFFF;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 18px;
}

.social-links a:hover {
    background: var(--gradient-accent);
    color: #0F2027;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Header Social Links */
.header-social-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.header-social-links a {
    display: inline-flex;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    transition: var(--transition);
}

.header-social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-top h5 {
    font-size: 18px;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 14px;
    color: #FFFFFF;
}

.footer-top h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37 0%, #F5D061 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 2px;
    background: #D4AF37;
    margin-right: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #D4AF37;
    padding-left: 0;
}

.footer-links a:hover::before {
    width: 12px;
    margin-right: 10px;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 16px 24px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-form .form-control::placeholder {
    color: #6B7280;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 16px 28px;
    background: linear-gradient(135deg, #D4AF37 0%, #F5D061 100%);
    color: #0F2027;
    font-weight: 700;
    border: none;
}

.newsletter-form .btn:hover {
    background: linear-gradient(135deg, #F5D061 0%, #FFE082 100%);
}

.payment-methods img {
    margin-right: 12px;
    height: 28px;
}

.payment-methods i {
    margin-right: 14px;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    font-size: 30px;
}

.payment-methods i:hover {
    color: #D4AF37;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 28px 0;
    position: relative;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 14px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #D4AF37;
}

/* ============================================
   Shop Page - Clean Grid
   ============================================ */
.shop-sidebar {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.filter-section {
    margin-bottom: 36px;
}

.filter-section h5 {
    font-size: 15px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E5E7EB;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0F2027;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 12px;
}

.filter-list a {
    color: #4B5563;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.filter-list a:hover,
.filter-list a.active {
    color: #D4AF37;
    font-weight: 600;
}

.price-range {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.price-range input {
    width: 70px;
    padding: 10px 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
    background: #FFFFFF;
}

.price-range input:focus {
    border-color: var(--accent-color);
    outline: none;
}

.price-range span {
    color: #9CA3AF;
    font-weight: 500;
}

.price-range .btn {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #0F2027 0%, #2C5364 100%);
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.price-range .btn:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #F5D061 100%);
    color: #0F2027;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

/* Responsive price filter */
@media (max-width: 1200px) {
    .price-range {
        flex-direction: column;
        align-items: stretch;
    }

    .price-range input {
        width: 100%;
    }

    .price-range > span {
        display: none;
    }

    .price-range .btn {
        width: 100%;
        margin-top: 4px;
    }
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-option {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.color-option:hover,
.color-option.active {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option {
    padding: 10px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    font-weight: 600;
}

.size-option:hover,
.size-option.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    padding: 18px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

/* ============================================
   Product Detail - Immersive Experience
   ============================================ */
.product-gallery {
    position: sticky;
    top: 100px;
    z-index: 1;
}

.main-image {
    border-radius: var(--radius-lg);
    overflow: visible;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.main-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.thumbnail-images {
    display: flex;
    gap: 12px;
}

.thumbnail-images img {
    width: 90px;
    height: 110px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

/* Image Zoom Effect - Modern Style */
.main-image {
    cursor: none;
}

.main-image:hover .zoom-icon {
    opacity: 0;
    transform: scale(0.8);
}

#zoomLens {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
    display: none;
    z-index: 10;
    border-radius: 50%;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    transition: transform 0.1s ease-out, opacity 0.2s ease;
    opacity: 0;
}

#zoomLens.active {
    opacity: 1;
}

#zoomResult {
    position: fixed;
    top: 50%;
    left: 55%;
    transform: translateY(-50%) scale(0.95);
    width: 550px;
    height: 550px;
    border: none;
    background-color: #fff;
    background-repeat: no-repeat;
    display: none;
    z-index: 9999;
    border-radius: 20px;
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#zoomResult.active {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* Zoom Result Header */
#zoomResult::before {
    content: 'Zoom Preview';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0F2027, #203A43);
    color: #D4AF37;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1399px) {
    #zoomResult {
        width: 480px;
        height: 480px;
        left: 56%;
    }
}

@media (max-width: 1199px) {
    #zoomResult {
        width: 420px;
        height: 420px;
        left: 58%;
    }
}

@media (max-width: 991px) {
    #zoomResult,
    #zoomLens {
        display: none !important;
    }

    .main-image {
        cursor: zoom-in;
    }
}

/* Lightbox Gallery */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 32, 39, 0.98);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 24px 18px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.lightbox-nav:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-thumbnails {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.lightbox-thumbnails img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    border: 2px solid transparent;
}

.lightbox-thumbnails img:hover,
.lightbox-thumbnails img.active {
    opacity: 1;
    border-color: var(--accent-color);
}

.lightbox-counter {
    color: #fff;
    margin-top: 18px;
    font-size: 14px;
    opacity: 0.7;
}

/* Click to zoom icon */
.zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 12px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
    box-shadow: var(--shadow-md);
}

.zoom-icon:hover {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.product-details h1 {
    font-size: 34px;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #0F2027;
}

.product-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    color: #6B7280;
    font-size: 14px;
}

.product-price-detail {
    margin-bottom: 30px;
    padding: 24px;
    background: #F9FAFB;
    border-radius: var(--radius);
    border: 1px solid #E5E7EB;
}

.product-price-detail .current-price {
    font-size: 38px;
    font-weight: 700;
    color: #0F2027;
}

.product-price-detail .original-price {
    font-size: 20px;
    color: #9CA3AF;
    text-decoration: line-through;
    margin-left: 12px;
}

.product-description {
    margin-bottom: 36px;
    color: #4B5563;
    line-height: 1.9;
    font-size: 16px;
}

.variant-selector {
    margin-bottom: 28px;
}

.variant-selector label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1F2937;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.qty-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
    font-weight: 600;
}

.qty-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
}

.qty-input {
    width: 70px;
    height: 48px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
}

.add-to-cart-btn {
    width: 100%;
    padding: 18px;
    font-size: 14px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-now-btn {
    width: 100%;
    padding: 18px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Cart Page - Clean & Organized
   ============================================ */
.cart-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.cart-table th {
    background: #F3F4F6;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4B5563;
}

.cart-table td {
    padding: 24px 20px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-light);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cart-product img {
    width: 90px;
    height: 110px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.cart-summary {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.cart-summary h4 {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid #E5E7EB;
    font-weight: 700;
    color: #0F2027;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 15px;
    color: #4B5563;
}

.summary-row span:last-child {
    font-weight: 600;
    color: #1F2937;
}

.summary-total {
    font-size: 24px;
    font-weight: 700;
    padding-top: 18px;
    border-top: 2px solid #E5E7EB;
    color: #0F2027;
}

/* ============================================
   Checkout - Streamlined
   ============================================ */
.checkout-section {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 1px solid var(--border-light);
}

.checkout-section h3 {
    font-size: 22px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid #E5E7EB;
    font-weight: 700;
    color: #0F2027;
}

.payment-method {
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-method:hover,
.payment-method.active {
    border-color: var(--accent-color);
    background: var(--light-accent);
    box-shadow: var(--shadow-glow);
}

.payment-method input[type="radio"] {
    margin-right: 12px;
    accent-color: var(--accent-color);
}

/* ============================================
   User Account - Dashboard Style
   ============================================ */
.account-sidebar {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.account-menu {
    list-style: none;
}

.account-menu li {
    margin-bottom: 6px;
}

.account-menu a {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    color: #1F2937;
    transition: var(--transition);
    font-weight: 500;
}

.account-menu a i {
    width: 28px;
    color: #6B7280;
    font-size: 16px;
}

.account-menu a:hover,
.account-menu a.active {
    background: linear-gradient(135deg, #0F2027 0%, #2C5364 100%);
    color: #FFFFFF;
}

.account-menu a.active i,
.account-menu a:hover i {
    color: #D4AF37;
}

.account-content {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

/* ============================================
   Forms - Refined Inputs
   ============================================ */
.form-control {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 15px;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
    color: #1F2937;
}

/* ============================================
   Auth Pages - Elegant Login/Register
   ============================================ */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--gradient-subtle);
    padding: 60px 0;
}

.auth-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 480px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 36px;
    font-weight: 700;
    color: #0F2027;
    font-size: 28px;
}

.auth-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #E5E7EB;
}

.auth-divider span {
    background: #FFFFFF;
    padding: 0 20px;
    position: relative;
    color: #6B7280;
    font-size: 14px;
}

/* ============================================
   Breadcrumb - Minimal
   ============================================ */
.breadcrumb-section {
    background: var(--bg-subtle);
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
    margin: 0;
    background: none;
}

.breadcrumb-item a {
    color: var(--text-muted);
    font-size: 14px;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 500;
}

/* ============================================
   Empty States - Friendly
   ============================================ */
.empty-state {
    text-align: center;
    padding: 80px 24px;
}

.empty-state i {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 24px;
}

.empty-state h3 {
    margin-bottom: 16px;
    font-weight: 600;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Pagination - Clean
   ============================================ */
.pagination {
    margin-top: 48px;
    gap: 6px;
}

.page-link {
    color: var(--text-color);
    border: 2px solid var(--border-color);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition);
}

.page-link:hover {
    background: var(--gradient-accent);
    border-color: transparent;
    color: var(--primary-dark);
}

.page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
}

/* ============================================
   Alerts - Refined
   ============================================ */
.alert {
    border: none;
    border-radius: var(--radius);
    padding: 18px 24px;
    font-weight: 500;
}

.alert-success {
    background: var(--success-light);
    color: var(--success);
}

.alert-danger {
    background: var(--danger-light);
    color: var(--danger);
}

.alert-warning {
    background: var(--warning-light);
    color: #92400e;
}

.alert-info {
    background: var(--info-light);
    color: var(--info);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-image {
        display: none;
    }

    .header-actions {
        margin-top: 20px;
    }

    .search-form input {
        width: 100%;
    }

    .section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .product-image {
        height: 240px;
    }

    .cart-table {
        font-size: 14px;
    }

    .cart-product img {
        width: 70px;
        height: 85px;
    }

    .auth-card {
        padding: 32px 24px;
        margin: 0 16px;
    }
}

/* ============================================
   Utilities
   ============================================ */
.text-accent {
    color: var(--accent-color);
}

.bg-accent {
    background: var(--gradient-accent);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mb-section {
    margin-bottom: 100px;
}

.img-placeholder {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-subtle) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 40px;
}

/* ============================================
   Hero Slider Section - Cinematic
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.75) 0%, rgba(32, 58, 67, 0.65) 50%, rgba(44, 83, 100, 0.55) 100%);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide .hero-content {
    max-width: 750px;
    color: var(--white);
    padding: 0;
}

/* Slider text positioning */
.hero-slide .hero-content.text-left {
    margin-right: auto;
    text-align: left;
}

.hero-slide .hero-content.text-center {
    margin: 0 auto;
    text-align: center;
}

.hero-slide .hero-content.text-center .hero-buttons {
    justify-content: center;
}

.hero-slide .hero-content.text-center .hero-desc {
    margin-left: auto;
    margin-right: auto;
}

.hero-slide .hero-content.text-right {
    margin-left: auto;
    text-align: right;
}

.hero-slide .hero-content.text-right .hero-buttons {
    justify-content: flex-end;
}

.hero-slide .hero-content.text-right .hero-desc {
    margin-left: auto;
}

.hero-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #FFFFFF;
    margin-bottom: 28px;
    padding: 12px 28px;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(245, 208, 97, 0.15) 100%);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: subtitleGlow 2s ease-in-out infinite alternate;
}

@keyframes subtitleGlow {
    from {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }
    to {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    }
}

.hero-title {
    font-size: 76px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title .text-accent,
.hero-title span {
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    line-height: 1.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, #D4AF37 0%, #F5D061 50%, #D4AF37 100%);
    color: #0F2027;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 0 0 rgba(212, 175, 55, 0.4);
    text-decoration: none;
    border: none;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #F5D061 0%, #FFE082 50%, #F5D061 100%);
    color: #0F2027;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: #FFFFFF;
    color: #0F2027;
    border-color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Swiper Navigation & Pagination */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: var(--white);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    border-color: transparent;
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.4;
    transition: var(--transition);
}

.heroSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gradient-accent);
    width: 36px;
    border-radius: 6px;
}

/* ============================================
   Marquee Banner (GPU Optimized)
   ============================================ */
.marquee-banner {
    background: var(--gradient-primary);
    padding: 14px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.marquee-content span {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0 20px;
    white-space: nowrap;
}

.marquee-content .separator {
    color: var(--accent-color);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   Categories Section - Premium Grid
   ============================================ */
.categories-section {
    padding: 80px 0;
    background: var(--gradient-subtle);
}

.category-block {
    display: block;
    position: relative;
    overflow: hidden;
    height: 450px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.category-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.category-block:hover .category-image img {
    transform: scale(1.08);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px;
    background: linear-gradient(to top, rgba(10, 20, 25, 0.98) 0%, rgba(15, 32, 39, 0.85) 50%, transparent 100%);
    color: #FFFFFF;
}

.category-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.category-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4AF37;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-block:hover .category-link i {
    transform: translateX(8px);
}

/* ============================================
   New Arrivals Section - Clean Design
   ============================================ */
.new-arrivals-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}


/* Responsive - New Arrivals */
@media (max-width: 991px) {
    .new-arrivals-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .new-arrivals-section {
        padding: 50px 0;
    }

    .view-all-btn {
        padding: 14px 24px;
        font-size: 12px;
    }

    .explore-btn {
        padding: 14px 28px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .new-arrivals-grid {
        gap: 14px;
    }

    .arrival-card {
        border-radius: 14px;
    }

    .arrival-image {
        height: 180px;
    }

    .wishlist-btn {
        width: 36px;
        height: 36px;
        top: 10px;
        right: 10px;
    }

    .wishlist-btn i {
        font-size: 14px;
    }

    .arrival-badges .badge {
        padding: 5px 10px;
        font-size: 9px;
    }

    .arrival-info {
        padding: 14px;
    }

    .arrival-category {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .arrival-name {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .arrival-price .price-new {
        font-size: 15px;
    }

    .arrival-price .price-old {
        font-size: 12px;
    }

    .add-to-cart-quick {
        padding: 10px 14px;
        font-size: 12px;
    }
}

/* ============================================
   Products Section (Modern)
   ============================================ */
.products-section {
    padding: 100px 0;
}

.products-section.bg-light {
    background: var(--bg-subtle);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-header.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-header-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #D4AF37;
    text-shadow: 0 1px 4px rgba(212, 175, 55, 0.2);
}

.section-header .section-title {
    font-size: 44px;
    font-weight: 700;
    color: #0F2027;
    margin: 0;
    text-align: left;
    letter-spacing: -0.5px;
}

.section-header.centered .section-title {
    text-align: center;
    margin-bottom: 18px;
}

.section-desc {
    color: #4B5563;
    font-size: 17px;
    max-width: 550px;
    line-height: 1.8;
}

.section-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0F2027;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.section-link:hover {
    color: #D4AF37;
    gap: 16px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-item {
    position: relative;
}

/* Modern Product Card */
.product-card-modern {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #F3F4F6;
    position: relative;
}

.product-card-modern:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    border-color: transparent;
}

/* Product Image Container */
.product-card-modern .product-image {
    position: relative;
    height: 340px;
    overflow: hidden;
    background: linear-gradient(145deg, #F9FAFB 0%, #F3F4F6 100%);
}

.product-card-modern .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

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

/* Image Overlay on Hover */
.product-card-modern .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card-modern:hover .product-image::after {
    opacity: 1;
}

/* Wishlist Button - Always Visible */
.product-wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.product-wishlist i {
    font-size: 18px;
    color: #9CA3AF;
    transition: all 0.3s ease;
}

.product-wishlist:hover {
    background: #FEE2E2;
    transform: scale(1.1);
}

.product-wishlist:hover i,
.product-wishlist.active i {
    color: #EF4444;
}

.product-wishlist.active {
    background: #FEE2E2;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 14px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    z-index: 4;
}

.product-badge.sale {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}

.product-badge.new {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.product-badge.hot {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.product-badge.sold-out {
    background: #1F2937;
    color: #FFFFFF;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #EF4444;
    color: #FFFFFF;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    z-index: 4;
}

/* Quick Actions - Appear on Hover */
.product-card-modern .product-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.product-card-modern:hover .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.action-btn {
    width: 46px;
    height: 46px;
    background: #FFFFFF;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.action-btn:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #F5D061 100%);
    color: #0F2027;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.action-btn i {
    font-size: 17px;
    color: #374151;
}

.action-btn:hover i {
    color: #0F2027;
}

/* Add to Cart Button */
.btn-add-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #0F2027 0%, #2C5364 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 32, 39, 0.25);
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #F5D061 100%);
    color: #0F2027;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-add-cart i {
    font-size: 14px;
}

/* Product Info Section */
.product-card-modern .product-info {
    padding: 24px 20px;
    text-align: left;
    background: #FFFFFF;
}

/* Product Category */
.product-card-modern .product-category {
    font-size: 11px;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 700;
}

/* Product Name */
.product-card-modern .product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.45;
    min-height: 46px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-modern .product-name a {
    color: #1F2937;
    transition: color 0.3s ease;
    text-decoration: none;
}

.product-card-modern .product-name a:hover {
    color: #D4AF37;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
}

.product-rating .stars i {
    font-size: 13px;
    color: #FCD34D;
}

.product-rating .stars i.empty {
    color: #E5E7EB;
}

.product-rating .count {
    font-size: 12px;
    color: #9CA3AF;
}

/* Color Swatches Preview */
.product-colors {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 0 1px #E5E7EB;
    cursor: pointer;
    transition: all 0.2s ease;
}

.color-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 2px #D4AF37;
}

.color-dot.more {
    background: #F3F4F6;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    font-weight: 600;
}

/* Product Price */
.product-card-modern .product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 20px;
    font-weight: 700;
    color: #0F2027;
}

.price-original {
    font-size: 14px;
    color: #9CA3AF;
    text-decoration: line-through;
}

.price-discount {
    font-size: 11px;
    font-weight: 700;
    color: #EF4444;
    background: #FEE2E2;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Stock Status */
.stock-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
}

.stock-status.in-stock {
    color: #10B981;
}

.stock-status.low-stock {
    color: #F59E0B;
}

.stock-status.out-of-stock {
    color: #EF4444;
}

.stock-status i {
    font-size: 10px;
}

/* Quick View Overlay */
.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 32, 39, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10;
}

.product-card-modern:hover .quick-view-overlay.active {
    opacity: 1;
    visibility: visible;
}

.btn-quick-view {
    padding: 14px 28px;
    background: #FFFFFF;
    color: #0F2027;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.product-card-modern:hover .quick-view-overlay.active .btn-quick-view {
    transform: translateY(0);
}

.btn-quick-view:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #F5D061 100%);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 56px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(15, 32, 39, 0.3);
}

.btn-view-all:hover {
    background: var(--gradient-luxury);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(15, 32, 39, 0.4);
}

/* ============================================
   Brand Story Section - Editorial
   ============================================ */
.brand-story {
    padding: 120px 0;
    background: var(--white);
}

.brand-story-image {
    position: relative;
}

.brand-story-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -40px;
    right: 40px;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 32px 40px;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.experience-badge .years {
    display: block;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    font-weight: 600;
}

.brand-story-content {
    padding-left: 60px;
}

.story-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #D4AF37;
    margin-bottom: 24px;
}

.brand-story-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0F2027;
    margin-bottom: 28px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.brand-story-content .lead {
    font-size: 19px;
    color: #1F2937;
    line-height: 1.8;
    margin-bottom: 24px;
}

.brand-story-content p {
    color: #4B5563;
    line-height: 1.9;
    margin-bottom: 36px;
    font-size: 16px;
}

.story-features {
    display: flex;
    gap: 36px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.story-feature i {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(15, 32, 39, 0.2);
}

.story-feature span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.btn-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(15, 32, 39, 0.3);
}

.btn-brand:hover {
    background: var(--gradient-luxury);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================
   Lookbook / Instagram Section
   ============================================ */
.lookbook-section {
    padding: 100px 0;
    background: var(--white);
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 18px;
}

.lookbook-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.lookbook-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.lookbook-item:hover img {
    transform: scale(1.08);
}

.lookbook-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.8) 0%, rgba(44, 83, 100, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lookbook-item:hover .lookbook-overlay {
    opacity: 1;
}

.lookbook-overlay i {
    font-size: 36px;
    color: var(--accent-color);
}

.lookbook-overlay .lookbook-caption {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 0 16px;
}

/* ============================================
   Features Bar - Trust Indicators
   ============================================ */
.features-bar {
    padding: 60px 0;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.feature-item .feature-icon {
    width: 68px;
    height: 68px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(15, 32, 39, 0.2);
    margin: 0;
}

.feature-item .feature-icon i {
    font-size: 26px;
    color: var(--accent-color);
}

.feature-text h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0F2027;
}

.feature-text p {
    font-size: 14px;
    color: #4B5563;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   Newsletter Section - Elegant CTA
   ============================================ */
.newsletter-section {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
}

.newsletter-content {
    flex: 1;
    color: #FFFFFF;
}

.newsletter-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.newsletter-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.newsletter-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.9;
}

.newsletter-form-modern {
    flex: 1;
    max-width: 540px;
}

.newsletter-form-modern .form-group {
    display: flex;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-form-modern input {
    flex: 1;
    padding: 20px 28px;
    border: none;
    font-size: 15px;
    outline: none;
}

.newsletter-form-modern button {
    padding: 20px 40px;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    border: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.newsletter-form-modern button:hover {
    background: var(--accent-light);
}

.newsletter-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 18px;
    text-align: right;
}

/* ============================================
   Toast Notifications - Modern
   ============================================ */
.toast-notification {
    position: fixed;
    bottom: 32px;
    right: 32px;
    padding: 18px 36px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.toast-notification.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.toast-notification.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* ============================================
   Responsive - Homepage
   ============================================ */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 60px;
        letter-spacing: 3px;
    }

    .hero-desc {
        font-size: 18px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brand-story-content {
        padding-left: 36px;
    }

    .brand-story-content h2 {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: 2px;
        text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .hero-desc {
        font-size: 16px;
        line-height: 1.8;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 16px 36px;
        font-size: 13px;
    }

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        display: none;
    }

    .category-block {
        height: 340px;
    }

    .category-info h3 {
        font-size: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header .section-title {
        font-size: 32px;
    }

    .brand-story {
        padding: 80px 0;
    }

    .brand-story-image img {
        height: 420px;
    }

    .brand-story-content {
        padding-left: 0;
        padding-top: 70px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .lookbook-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-content h2 {
        font-size: 36px;
    }

    .newsletter-form-modern {
        width: 100%;
        max-width: 100%;
    }

    .newsletter-note {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 65vh;
        min-height: 450px;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgba(15, 32, 39, 0.85) 0%, rgba(32, 58, 67, 0.75) 50%, rgba(44, 83, 100, 0.65) 100%);
    }

    .hero-title {
        font-size: 34px;
        letter-spacing: 1px;
        text-shadow: 0 3px 20px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 10px;
        padding: 8px 18px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-desc {
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 28px;
        text-align: center;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }

    .marquee-content span {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 0 12px;
    }

    .categories-section {
        padding: 50px 0;
    }

    .category-block {
        height: 280px;
    }

    .category-info {
        padding: 28px 24px;
    }

    .category-info h3 {
        font-size: 20px;
    }

    .products-section {
        padding: 60px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .product-card-modern .product-image {
        height: 240px;
    }

    .product-card-modern .product-info {
        padding: 18px;
    }

    .product-card-modern .product-name {
        font-size: 14px;
    }

    .price-current {
        font-size: 16px;
    }

    .brand-story-image img {
        height: 320px;
    }

    .experience-badge {
        bottom: -24px;
        right: 20px;
        padding: 20px 26px;
    }

    .experience-badge .years {
        font-size: 40px;
    }

    .brand-story-content h2 {
        font-size: 30px;
    }

    .story-features {
        flex-direction: column;
        gap: 24px;
    }

    .lookbook-section {
        padding: 60px 0;
    }

    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 160px);
    }

    .features-bar {
        padding: 50px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .feature-item {
        justify-content: flex-start;
    }

    .newsletter-section {
        padding: 70px 0;
    }

    .newsletter-content h2 {
        font-size: 28px;
    }

    .newsletter-form-modern .form-group {
        flex-direction: column;
    }

    .newsletter-form-modern input {
        padding: 16px 22px;
    }

    .newsletter-form-modern button {
        padding: 16px 28px;
        justify-content: center;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   All Device Breakpoints
   ============================================ */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 80px;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }

    .hero-title {
        font-size: 66px;
    }
}

/* Laptop / Small Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    /* Header */
    .main-header {
        padding: 12px 0;
    }

    .navbar-brand img {
        height: 45px;
    }

    .header-actions .search-form {
        display: none;
    }

    /* Hero */
    .hero-slider {
        height: 75vh;
    }

    .hero-title {
        font-size: 54px;
    }

    .hero-desc {
        font-size: 17px;
        max-width: 500px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .product-card-modern .product-image {
        height: 300px;
    }

    /* Shop Sidebar */
    .shop-sidebar {
        padding: 24px;
    }

    /* Footer */
    .footer-top {
        padding: 60px 0;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
    /* Top Bar */
    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .top-bar .col-md-6:first-child {
        display: none;
    }

    .top-bar .col-md-6:last-child {
        text-align: center !important;
    }

    /* Header & Navigation */
    .main-header {
        padding: 10px 0;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: #FFFFFF;
        padding: 80px 30px 30px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
    }

    .navbar-nav .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid #F3F4F6;
        font-size: 16px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 0 20px;
        border: none;
        background: transparent;
    }

    .header-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #FFFFFF;
        padding: 12px 20px;
        display: flex;
        justify-content: space-around;
        border-top: 1px solid #E5E7EB;
        z-index: 1000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    }

    .header-actions .search-form {
        display: none;
    }

    .header-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-toggler {
        border: none;
        padding: 8px;
        background: transparent;
    }

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

    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230F2027' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Mobile Menu Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
    }

    /* Hero Section */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 44px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .hero-desc {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 28px;
        font-size: 12px;
    }

    /* Categories */
    .category-block {
        height: 320px;
    }

    .category-info h3 {
        font-size: 22px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-card-modern .product-image {
        height: 260px;
    }

    .product-card-modern .product-actions {
        bottom: 12px;
    }

    .action-btn {
        width: 40px;
        height: 40px;
    }

    .btn-add-cart {
        padding: 10px 18px;
        font-size: 12px;
    }

    /* Shop Page */
    .shop-sidebar {
        margin-bottom: 30px;
    }

    .shop-toolbar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    /* Product Detail */
    .product-gallery {
        margin-bottom: 30px;
    }

    .product-detail-info {
        padding: 0;
    }

    /* Cart */
    .cart-table {
        display: block;
        overflow-x: auto;
    }

    .cart-summary {
        margin-top: 30px;
    }

    /* Footer */
    .footer-top {
        padding: 50px 0;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-links {
        margin-bottom: 24px;
    }

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

    .footer-bottom .row > div {
        text-align: center !important;
        margin-bottom: 10px;
    }

    /* Main Content - Account for bottom nav */
    main.main-content {
        padding-bottom: 70px;
    }

    /* Account Pages */
    .account-sidebar {
        margin-bottom: 30px;
    }

    /* Breadcrumb */
    .breadcrumb-section {
        padding: 16px 0;
    }

    .breadcrumb {
        font-size: 13px;
    }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
    /* Top Bar */
    .top-bar {
        display: none;
    }

    /* Header */
    .main-header {
        padding: 8px 0;
    }

    .navbar-brand img {
        height: 36px;
    }

    /* Hero */
    .hero-slider {
        height: 60vh;
        min-height: 420px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 10px;
        padding: 6px 14px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    /* Section Headers */
    .section-header .section-title {
        font-size: 26px;
    }

    .section-header .section-subtitle {
        font-size: 13px;
    }

    /* Categories */
    .category-block {
        height: 260px;
    }

    .category-info {
        padding: 20px;
    }

    .category-info h3 {
        font-size: 18px;
    }

    .category-info p {
        font-size: 12px;
    }

    /* Products */
    .products-grid {
        gap: 14px;
    }

    .product-card-modern {
        border-radius: 12px;
    }

    .product-card-modern .product-image {
        height: 200px;
    }

    .product-wishlist {
        width: 36px;
        height: 36px;
        top: 10px;
        right: 10px;
    }

    .product-wishlist i {
        font-size: 14px;
    }

    .product-badge {
        padding: 6px 10px;
        font-size: 9px;
        top: 10px;
        left: 10px;
    }

    .product-card-modern .product-actions {
        display: none;
    }

    .product-card-modern .product-info {
        padding: 14px;
    }

    .product-card-modern .product-category {
        font-size: 10px;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .product-card-modern .product-name {
        font-size: 13px;
        min-height: auto;
        margin-bottom: 8px;
        -webkit-line-clamp: 1;
    }

    .product-rating {
        margin-bottom: 10px;
    }

    .product-rating .stars i {
        font-size: 11px;
    }

    .product-colors {
        display: none;
    }

    .price-current {
        font-size: 15px;
    }

    .price-original {
        font-size: 12px;
    }

    .price-discount {
        font-size: 10px;
        padding: 2px 6px;
    }

    .stock-status {
        font-size: 11px;
        margin-top: 8px;
    }

    /* Brand Story */
    .brand-story {
        padding: 50px 0;
    }

    .brand-story-image img {
        height: 280px;
    }

    .experience-badge {
        display: none;
    }

    .brand-story-content {
        padding: 30px 0 0;
    }

    .brand-story-content h2 {
        font-size: 26px;
    }

    .brand-story-content p {
        font-size: 14px;
    }

    .story-features {
        flex-direction: column;
        gap: 20px;
    }

    /* Features Bar */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        text-align: left;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    /* Lookbook */
    .lookbook-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 140px);
        gap: 10px;
    }

    .lookbook-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 50px 0;
    }

    .newsletter-content h2 {
        font-size: 24px;
    }

    .newsletter-content p {
        font-size: 14px;
    }

    .newsletter-form-modern .form-group {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form-modern input {
        padding: 14px 18px;
        font-size: 14px;
    }

    .newsletter-form-modern button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    /* Footer */
    .footer-top {
        padding: 40px 0;
    }

    .footer-top h5 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
    }

    /* Shop Page */
    .filter-section h5 {
        font-size: 14px;
    }

    .price-range {
        flex-direction: column;
    }

    .price-range input {
        width: 100%;
    }

    .price-range > span {
        display: none;
    }

    .price-range .btn {
        width: 100%;
    }

    /* Product Detail Page */
    .product-gallery-main {
        height: 350px;
    }

    .product-gallery-thumbs {
        gap: 8px;
    }

    .gallery-thumb {
        width: 60px;
        height: 70px;
    }

    .product-title {
        font-size: 24px;
    }

    .product-price-large {
        font-size: 28px;
    }

    /* Cart Page */
    .cart-table th,
    .cart-table td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .cart-product img {
        width: 60px;
        height: 70px;
    }

    .cart-product-info h6 {
        font-size: 13px;
    }

    .quantity-selector button {
        width: 32px;
        height: 32px;
    }

    .quantity-selector input {
        width: 40px;
        height: 32px;
    }

    /* Checkout */
    .checkout-section {
        padding: 20px;
    }

    /* Auth Pages */
    .auth-card {
        padding: 28px 20px;
        margin: 0 12px;
    }

    .auth-card h2 {
        font-size: 24px;
    }

    /* Account Pages */
    .order-card {
        padding: 16px;
    }

    .account-nav .nav-link {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
    /* Header */
    .navbar-brand img {
        height: 32px;
    }

    .header-actions {
        padding: 10px 15px;
    }

    .header-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    /* Hero */
    .hero-slider {
        height: 55vh;
        min-height: 380px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 9px;
        padding: 5px 12px;
    }

    .hero-desc {
        font-size: 13px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 20px;
        font-size: 11px;
    }

    /* Section */
    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header .section-title {
        font-size: 22px;
    }

    /* Categories */
    .category-block {
        height: 220px;
    }

    .category-info h3 {
        font-size: 16px;
    }

    .btn-category {
        padding: 10px 18px;
        font-size: 11px;
    }

    /* Products Grid - Single Column Option */
    .products-grid.single-column {
        grid-template-columns: 1fr;
    }

    .products-grid {
        gap: 12px;
    }

    .product-card-modern .product-image {
        height: 180px;
    }

    .product-card-modern .product-info {
        padding: 12px;
    }

    .product-card-modern .product-name {
        font-size: 12px;
    }

    .price-current {
        font-size: 14px;
    }

    /* Marquee */
    .marquee-content span {
        font-size: 9px;
        letter-spacing: 1.5px;
        padding: 0 10px;
    }

    /* Shop Sidebar - Collapsible on Mobile */
    .shop-sidebar {
        padding: 20px;
    }

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

    /* Product Detail */
    .product-gallery-main {
        height: 300px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-price-large {
        font-size: 24px;
    }

    .size-options .size-btn {
        min-width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .color-selector .color-btn {
        width: 32px;
        height: 32px;
    }

    .btn-add-to-cart {
        padding: 14px 24px;
        font-size: 13px;
    }

    /* Cart */
    .cart-table {
        font-size: 12px;
    }

    .cart-product {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cart-product img {
        width: 80px;
        height: 100px;
    }

    .cart-summary {
        padding: 20px;
    }

    /* Checkout */
    .checkout-section h5 {
        font-size: 16px;
    }

    /* Footer */
    .footer-top {
        padding: 30px 0;
    }

    .footer-bottom {
        padding: 15px 0;
        font-size: 12px;
    }

    .payment-methods i {
        font-size: 1.5rem;
    }

    /* Pagination */
    .pagination .page-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    /* Toast Notifications */
    .toast-notification {
        left: 15px;
        right: 15px;
        max-width: none;
    }

    /* Modal */
    .modal-dialog {
        margin: 10px;
    }

    .modal-content {
        border-radius: 12px;
    }

    .modal-body {
        padding: 20px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-desc {
        font-size: 12px;
    }

    .section-header .section-title {
        font-size: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card-modern .product-image {
        height: 160px;
    }

    .product-card-modern .product-info {
        padding: 10px;
    }

    .product-card-modern .product-name {
        font-size: 11px;
    }

    .price-current {
        font-size: 13px;
    }

    .category-block {
        height: 200px;
    }

    .footer-top h5 {
        font-size: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }
}

/* Landscape Mode Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        display: none;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 10px 20px;
        font-size: 11px;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .main-header,
    .header-actions,
    .main-footer,
    .newsletter-section,
    .hero-slider {
        display: none !important;
    }

    .main-content {
        padding: 0 !important;
    }

    .product-card-modern {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* High DPI / Retina Display Adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-card-modern .product-image img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ========================================
   FEATURED SECTION - Simple Clean Style
   ======================================== */

.featured-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.featured-section .section-header.centered {
    text-align: center;
    margin-bottom: 50px;
}

.featured-section .section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0F2027, #203A43);
    color: #D4AF37;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.featured-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.featured-section .section-desc {
    font-size: 16px;
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .featured-section {
        padding: 60px 0;
    }

    .featured-section .section-title {
        font-size: 28px;
    }

    .featured-section .section-desc {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .featured-section {
        padding: 50px 0;
    }

    .featured-section .section-header.centered {
        margin-bottom: 30px;
    }

    .featured-section .section-title {
        font-size: 24px;
    }
}
