/* ARESHI FEB Luxury Fashion E-Commerce - Premium UI Styles */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #C8A96A;
    --primary-dark: #B8924A;
    --primary-light: #E4D1A0;
    --primary-50: rgba(200, 169, 106, 0.08);
    --primary-100: rgba(200, 169, 106, 0.15);
    --secondary: #111111;
    --white: #FFFFFF;
    --light: #F8F6F3;
    --dark: #1A1A1A;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --text: #1F2937;
    --text-light: #6B7280;
    --text-lighter: #9CA3AF;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --sale: #DC2626;
    --gold-gradient: linear-gradient(135deg, #111111 0%, #2B2B2B 40%, #C8A96A 100%);
    --gold-gradient-light: linear-gradient(135deg, rgba(200, 169, 106, 0.1) 0%, rgba(200, 169, 106, 0.05) 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 10px 40px rgba(200, 169, 106, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gray-50);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    padding-top: 72px;
}

@media (max-width: 991px) {
    body {
        padding-top: 64px;
    }
}

.main-content {
    min-height: calc(100vh - 72px);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 2rem); }

.text-gold {
    color: var(--primary) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.text-muted {
    color: var(--text-lighter) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-gold {
    background: var(--primary) !important;
    color: var(--white);
}

.bg-black {
    background: var(--secondary) !important;
    color: var(--white);
}

.bg-gray-dark {
    background: var(--dark) !important;
    color: var(--white);
}

/* ============================================
   BUTTONS - Premium Styles
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-luxury {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-outline-luxury {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline-luxury:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.btn-outline-gold:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.85rem;
}

/* ============================================
   NAVBAR - Premium Luxury Header
   Primary navbar styling is in premium.css
   ============================================ */

/* Navbar Enhancements */
.navbar-luxury .navbar-nav .nav-link {
    padding: 8px 0;
    position: relative;
}

.navbar-luxury .navbar-nav .nav-link.active {
    font-weight: 600;
}

.navbar-luxury .navbar-collapse {
    transition: var(--transition);
}

.navbar-luxury .dropdown-menu {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 8px;
    animation: fadeInUp 0.3s ease-out;
}

.navbar-luxury .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-luxury .dropdown-item:hover {
    background: var(--primary-50);
    color: var(--primary);
    transform: translateX(4px);
}

.navbar-luxury .dropdown-item i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
}

.navbar-luxury .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
}

.navbar-luxury .user-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .navbar-luxury .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-luxury .navbar-nav {
        flex: 1;
        justify-content: center;
    }

    .navbar-luxury .navbar-nav .nav-item {
        margin: 0 4px;
    }
}

@media (max-width: 991px) {
    .navbar-luxury {
        padding: 10px 0;
    }

    .navbar-luxury .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius);
        padding: 16px;
        margin-top: 12px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-light);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        z-index: 1080;
        display: none;
    }

    .navbar-luxury .navbar-collapse.show {
        display: block;
    }

    .navbar-luxury .navbar-nav {
        gap: 4px;
    }

    .navbar-luxury .nav-link {
        margin: 0;
        padding: 10px 14px;
        border-radius: var(--radius-sm);
        transition: var(--transition-fast);
    }

/* Navbar responsive handled in premium.css */

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
}

.search-input {
    width: 100%;
    padding: 24px 32px;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--text);
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.15), var(--shadow-xl);
    border-color: var(--primary-dark);
}

.search-input::placeholder {
    color: var(--text-lighter);
}

.search-close {
    position: absolute;
    top: -60px;
    right: 20px;
    background: var(--primary);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-close:hover {
    background: var(--primary-dark);
    transform: rotate(90deg);
}

.look-card {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.85));
    border: 1px solid rgba(200, 169, 106, 0.25);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.look-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.look-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(200, 169, 106, 0.16);
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--secondary);
}

.text-gold {
    color: var(--primary) !important;
}

.text-light {
    color: var(--text-lighter) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-gold {
    background: var(--primary) !important;
    color: var(--white);
}

.bg-black {
    background: var(--secondary) !important;
    color: var(--white);
}

.bg-gray-dark {
    background: var(--dark) !important;
    color: var(--white);
}

/* Luxury Buttons */
.btn-luxury {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: var(--white);
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    font-size: 0.8rem;
}

.btn-luxury::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-luxury:hover::after {
    width: 300px;
    height: 300px;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-outline-luxury {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

.btn-outline-luxury:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
}

.btn-outline-gold:hover {
    background: var(--primary);
    color: var(--white);
}

/* Search Overlay */
/* Search overlay styling moved to premium.css (single source of truth) */

/* Hero Section - Premium Design */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 100vh;
    min-height: 100dvh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,17,17,0.45) 0%, rgba(17,17,17,0.25) 50%, rgba(17,17,17,0.55) 100%);
    z-index: 1;
}

.hero-slide .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(200, 169, 106, 0.05);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.05;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btns .btn-luxury {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Swiper custom styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Luxury Cards */
.luxury-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.luxury-card h5 {
    color: var(--primary);
    font-weight: 600;
}

.luxury-card p {
    color: var(--text-light);
}

/* Product Card - Premium */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
    border-color: rgba(200, 169, 106, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f5f5f0;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
    z-index: 1;
}

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

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--sale);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.product-badge.new {
    background: var(--primary);
    color: var(--secondary);
}

.product-actions {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

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

.product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--secondary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 0.85rem;
}

.product-action-btn:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.product-action-btn.active {
    background: var(--sale);
    color: var(--white);
}

.product-card .p-3 {
    padding: 1.25rem;
}

.product-card .text-dark {
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.product-card .text-gold {
    font-weight: 700;
}

.product-card .btn-outline-dark {
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    transition: var(--transition);
}

.product-card .btn-outline-dark:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* Enhanced product card - premium look */
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 0 1px rgba(200, 169, 106, 0);
    transition: var(--transition);
    z-index: 3;
    pointer-events: none;
}

.product-card:hover::before {
    box-shadow: 0 0 0 2px rgba(200, 169, 106, 0.4);
}

.product-image .secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Primary image is ALWAYS visible; hover cross-fades to the secondary (if any) on top */
.product-card .product-image .primary-image {
    opacity: 1 !important;
    position: relative;
    z-index: 0;
}

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

.product-image::after {
    background: linear-gradient(180deg, transparent 55%, rgba(17, 17, 17, 0.04) 100%);
}

.product-card .p-3 {
    padding: 1.25rem;
    border-top: 1px solid var(--border-light);
}

.product-card .text-dark {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 1.6rem;
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
}

.product-action-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.product-badge {
    z-index: 4;
    padding: 6px 14px;
    font-size: 0.65rem;
}

@media (max-width: 768px) {
    .product-actions {
        opacity: 1;
        transform: translateY(0);
    }
    
    .product-action-btn {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Flash Sale Section */
.flash-sale {
    background: var(--secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.flash-sale::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 20px 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(200, 169, 106, 0.2);
    min-width: 90px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--primary);
    object-fit: cover;
    padding: 3px;
    background: var(--white);
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-card h6 {
    color: var(--secondary);
    font-weight: 600;
}

.testimonial-card small {
    color: var(--text-lighter);
}

/* ============================================
   FOOTER - Modern Luxury
   ============================================ */
.footer-luxury {
    background: #0a0a0a;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    opacity: 0.8;
}

.footer-luxury::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(200, 169, 106, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

/* Brand Block */
.footer-brand-block {
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-logo-wrap img {
    height: 56px;
    width: auto;
    display: block;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Contact List */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-contact-item:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 169, 106, 0.1);
    border: 1px solid rgba(200, 169, 106, 0.2);
    border-radius: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-contact-item:hover .contact-icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.contact-text {
    color: inherit;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 169, 106, 0.25);
}

/* Footer Navigation */
.footer-nav-block {
    position: relative;
    z-index: 1;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

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

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

.footer-nav a::before {
    content: '→';
    position: absolute;
    left: -18px;
    opacity: 0;
    transition: var(--transition);
    color: var(--primary);
    font-size: 0.8rem;
}

.footer-nav a:hover::before {
    opacity: 1;
}

/* Newsletter Block */
.footer-newsletter-block {
    position: relative;
    z-index: 1;
}

.footer-newsletter-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-newsletter-form {
    margin-bottom: 28px;
}

.input-group-footer {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.input-group-footer:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.form-control-footer {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    padding: 14px 18px;
    font-size: 0.9rem;
    outline: none;
}

.form-control-footer::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-footer-subscribe {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 22px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-footer-subscribe:hover {
    background: var(--primary-dark);
    transform: translateX(2px);
}

/* Payment Badges */
.footer-heading-sm {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.pay-badge:hover {
    background: rgba(200, 169, 106, 0.15);
    border-color: rgba(200, 169, 106, 0.3);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    margin: 50px 0 30px;
}

/* Bottom Bar */
.footer-bottom-bar {
    padding-bottom: 30px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    font-size: 1rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-gold);
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .footer-luxury {
        padding: 56px 0 0;
    }

    .footer-luxury .container > .row {
        row-gap: 0;
    }

    /* Modern card-style sections for a cleaner mobile look */
    .footer-brand-block,
    .footer-nav-block,
    .footer-newsletter-block {
        text-align: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--radius-lg);
        padding: 26px 18px;
        margin-bottom: 16px;
    }

    .footer-logo-wrap {
        justify-content: center;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-nav-block {
        text-align: center;
    }

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

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-nav {
        align-items: center;
    }

    .footer-nav a::before {
        display: none;
    }

    .footer-newsletter-block {
        text-align: center;
    }

    /* Newsletter: full-width stacked input + button on mobile */
    .input-group-footer {
        flex-direction: column;
        gap: 10px;
        background: transparent;
        border: none;
        padding: 0;
        overflow: visible;
    }

    .form-control-footer {
        width: 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-sm);
    }

    .btn-footer-subscribe {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 1rem;
    }

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

    .social-icon {
        width: 42px;
        height: 42px;
    }

    .payment-badges {
        justify-content: center;
    }

    .footer-heading-sm {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-luxury {
        padding: 44px 0 0;
    }

    .footer-brand-block,
    .footer-nav-block,
    .footer-newsletter-block {
        padding: 22px 16px;
        margin-bottom: 14px;
    }

    .footer-brand-name {
        font-size: 1.5rem;
    }

    .footer-brand-desc {
        font-size: 0.85rem;
    }

    .footer-nav a {
        font-size: 0.9rem;
    }

    .footer-divider {
        margin: 34px 0 20px;
    }

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

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .pay-badge {
        font-size: 0.7rem;
        padding: 7px 14px;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-gold);
    background: var(--primary-dark);
}

/* Shop Page */
.shop-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.filter-title {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
    letter-spacing: 0.5px;
}

.filter-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: var(--primary);
    margin-right: 10px;
    border-radius: 2px;
    vertical-align: middle;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input {
    background-color: var(--white);
    border-color: var(--primary);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
    margin-left: 8px;
    font-size: 0.95rem;
    color: var(--text);
}

.price-range-slider {
    margin: 20px 0;
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.gallery-main {
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    background: var(--white);
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    padding: 3px;
    background: var(--white);
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Cart Page */
.cart-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cart-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.cart-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.quantity-input {
    width: 60px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: var(--radius-sm);
    padding: 8px;
    font-weight: 500;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.1);
}

/* Checkout */
.checkout-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.checkout-card:hover {
    box-shadow: var(--shadow-lg);
}

.form-control {
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    background: var(--white);
    border-color: var(--primary);
    color: var(--text);
    box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-lighter);
}

/* Account Page */
.account-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

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

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

.account-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
}

.account-menu a:hover,
.account-menu a.active {
    background: var(--primary);
    color: var(--white);
    transform: translateX(4px);
}

.account-menu a i {
    width: 20px;
    text-align: center;
}

/* Admin Styles */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
    background: var(--gray-50);
}

.admin-content {
    flex: 1;
    margin-left: 260px;
    padding: 30px;
}

.admin-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.admin-card:hover {
    box-shadow: var(--shadow-lg);
}

.admin-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.admin-table table {
    margin-bottom: 0;
}

.admin-table th {
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 16px;
    border-bottom: none;
}

.admin-table td {
    padding: 16px;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: var(--gray-50);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .admin-content {
        margin-left: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Glass Morphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.glass-card-dark {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Utility Classes */
.border-gold {
    border-color: var(--primary) !important;
}

.opacity-25 {
    opacity: 0.25 !important;
}

.text-white-50 {
    color: var(--text-light) !important;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover Lift */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Image Hover Zoom */
.img-zoom {
    overflow: hidden;
    border-radius: var(--radius);
}

.img-zoom img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Badge Styles */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 20px;
}

.badge-gold {
    background: var(--primary);
    color: var(--white);
}

.badge-sale {
    background: var(--sale);
    color: var(--white);
}

.badge-new {
    background: var(--success);
    color: var(--white);
}

/* Card Hover Effects */
.card-hover {
    transition: var(--transition);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Button Group */
.btn-group-custom {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-group-custom .btn {
    flex: 1;
    min-width: 140px;
}

/* Section Spacing */
.section-padding {
    padding: 100px 0;
}

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

/* Hero Slider */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

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

.hero-slide .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,17,17,0.85), rgba(17,17,17,0.7));
    z-index: 1;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Category Cards */
.category-card {
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 14px;
    background: linear-gradient(180deg, transparent 45%, rgba(17, 17, 17, 0.55) 100%);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
    pointer-events: none;
}

.category-card:hover .category-overlay {
    opacity: 1;
    transform: translateY(0);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-lighter);
    background: var(--light);
}

.category-name {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.85rem;
}

/* Product Options */
.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-option {
    width: 45px;
    height: 45px;
    border: 2px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}

.size-option:hover,
.size-option.selected {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(200, 169, 106, 0.05);
}

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

.color-option {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

/* Rating Input */
.rating-input {
    display: flex;
    gap: 8px;
    font-size: 1.5rem;
    cursor: pointer;
}

.rating-input i {
    transition: var(--transition);
}

.rating-input i:hover,
.rating-input i.text-gold {
    color: var(--primary);
}

/* Product Meta */
.product-meta {
    color: var(--text-light);
}

.product-meta a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Product Gallery Main */
.product-gallery-main {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    background: var(--white);
}

.product-gallery-main img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: var(--transition);
}

/* 3D Viewer */
.product-3d-viewer {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    background: var(--light);
    margin-top: 20px;
    position: relative;
}

.product-3d-viewer .viewer-gallery {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.product-3d-viewer .gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-3d-viewer .gallery-slide.active {
    opacity: 1;
}

.product-3d-viewer .viewer-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-3d-viewer .viewer-poster {
    display: none;
}

.product-3d-viewer .viewer-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    background: rgba(17, 17, 17, 0.7);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
}

.product-3d-viewer canvas {
    position: relative;
    z-index: 2;
}

.product-3d-viewer .viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(200, 169, 106, 0.4);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.product-3d-viewer .viewer-nav:hover {
    background: rgba(17, 17, 17, 0.85);
    border-color: var(--primary);
}

.product-3d-viewer .viewer-prev {
    left: 16px;
}

.product-3d-viewer .viewer-next {
    right: 16px;
}

.product-3d-viewer .viewer-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.product-3d-viewer .viewer-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.product-3d-viewer .viewer-dot.active {
    background: var(--primary);
}

.product-3d-viewer .viewer-controls {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 5;
    display: flex;
    gap: 8px;
}

.product-3d-viewer .viewer-control-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 106, 0.4);
    background: rgba(17, 17, 17, 0.6);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    font-size: 0.85rem;
}

.product-3d-viewer .viewer-control-btn:hover,
.product-3d-viewer .viewer-control-btn.active {
    background: rgba(17, 17, 17, 0.85);
    border-color: var(--primary);
}

.product-3d-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    background: var(--light);
    margin-top: 20px;
}

.viewer-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.product-3d-info {
    padding: 20px 0;
}

.product-3d-info ul {
    list-style: none;
    padding: 0;
}

.product-3d-info li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

/* Look Card */
.look-card {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.85));
    border: 1px solid rgba(200, 169, 106, 0.25);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.look-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.look-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(200, 169, 106, 0.16);
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Values Banner */
.values-banner {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 80vh;
    }

    .product-3d-viewer,
    .product-3d-container {
        height: 350px;
    }

    .product-3d-viewer .viewer-nav {
        width: 36px;
        height: 36px;
    }

    .product-3d-viewer .viewer-prev {
        left: 8px;
    }

    .product-3d-viewer .viewer-next {
        right: 8px;
    }

    .product-3d-viewer .viewer-dots {
        bottom: 10px;
    }

    .product-3d-viewer .viewer-dot {
        width: 8px;
        height: 8px;
    }

    .values-banner {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        min-height: 70vh;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .values-banner {
        height: 160px;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

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

/* Star Rating */
.rating {
    color: var(--primary);
    font-size: 0.9rem;
}

.rating .fas,
.rating .far {
    margin: 0 1px;
}

/* Price Styles */
.price {
    color: var(--secondary);
    font-weight: 600;
}

.price-old {
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 8px;
}

.price-sale {
    color: var(--sale);
    font-weight: 700;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--white);
    border-radius: 10px;
    padding: 12px 20px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

/* Pagination */
.pagination {
    gap: 8px;
}

.page-link {
    color: var(--text);
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Alert */
.alert {
    border-radius: 10px;
    border: none;
    padding: 15px 20px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
    border-left: 4px solid var(--success);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border-left: 4px solid var(--danger);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
    border-left: 4px solid var(--warning);
}

/* Table */
.table {
    color: var(--text);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--light);
}

.table-hover tbody tr:hover {
    background-color: rgba(200, 169, 106, 0.05);
}

/* Modal */
.modal-content {
    border-radius: 15px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-hover);
}

.modal-header {
    border-bottom: 1px solid var(--border-light);
    padding: 20px 25px;
}

.modal-footer {
    border-top: 1px solid var(--border-light);
    padding: 15px 25px;
}

/* Tabs */
.nav-tabs {
    border-bottom: 2px solid var(--border);
}

.nav-tabs .nav-link {
    color: var(--text);
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: transparent;
}

/* Accordion */
.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    color: var(--secondary);
    font-weight: 600;
    background: var(--white);
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--light);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.accordion-body {
    color: var(--text-light);
    background: var(--white);
}

/* Contact Form */
.contact-info {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(200, 169, 106, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h6 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

/* Login / Register */
.auth-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-hover);
}

.auth-card .nav-tabs {
    margin-bottom: 25px;
    justify-content: center;
}

.auth-card .nav-link {
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Order Tracking */
.tracking-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
}

.tracking-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
}

.tracking-step {
    position: relative;
    text-align: center;
    flex: 1;
}

.tracking-step .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--border-light);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
    border: 3px solid var(--white);
}

.tracking-step.completed .step-icon {
    background: var(--primary);
    color: var(--white);
}

.tracking-step.active .step-icon {
    background: var(--secondary);
    color: var(--white);
}

.tracking-step h6 {
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 4px;
}

.tracking-step small {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* Coupon */
.coupon-card {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    border-radius: 15px;
    padding: 25px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.coupon-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
}

.coupon-code {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 3px;
    margin: 10px 0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h4 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Loader */
.loader {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Toast / Notification */
.toast {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.toast-header {
    background: transparent;
    border-bottom: 1px solid var(--border-light);
    color: var(--secondary);
}

.toast-body {
    color: var(--text);
}

/* Review */
.review-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-meta h6 {
    margin: 0;
    color: var(--secondary);
}

.review-meta small {
    color: var(--text-light);
}

/* Size Guide */
.size-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.size-table th,
.size-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.size-table th {
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.size-table tr:hover td {
    background: var(--light);
}

/* Compare Table */
.compare-table {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

/* Blog */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-content h5 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.blog-content p {
    color: var(--text-light);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--primary) 0%, transparent 60%);
    opacity: 0.08;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--text-lighter);
    margin-bottom: 25px;
}

/* Instagram Feed */
.instagram-feed {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(200, 169, 106, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.5rem;
}

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

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.payment-icon {
    width: 50px;
    height: 30px;
    background: var(--white);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--text);
    border: 1px solid var(--border);
}

/* News Ticker */
.news-ticker {
    background: var(--secondary);
    color: var(--primary);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.news-ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        border-radius: 15px;
        padding: 20px;
        margin-top: 15px;
        box-shadow: var(--shadow-hover);
        border: 1px solid var(--border-light);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        padding: 10px 15px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

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

/* Product Gallery Tabs */
.product-gallery-tabs .gallery-tabs {
    border-bottom: 2px solid var(--border);
}

.product-gallery-tabs .nav-link {
    color: var(--text);
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-weight: 600;
    padding: 10px 20px;
    transition: var(--transition);
    border-radius: 0;
}

.product-gallery-tabs .nav-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.product-gallery-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: transparent;
}

/* 3D Viewer Controls */
.viewer-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.viewer-control-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 0.9rem;
}

.viewer-control-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.viewer-control-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* Fullscreen 3D Viewer */
.product-3d-container:fullscreen,
.product-3d-container:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    border: none;
    background: var(--light);
}

.product-3d-viewer:fullscreen,
.product-3d-viewer:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    border: none;
    background: var(--light);
}

/* Better loading state */
.viewer-placeholder {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--primary) 0%, transparent 60%);
    opacity: 0.08;
}

/* Gold Line Divider */
.gold-line {
    width: 80px;
    height: 3px;
    background: var(--primary);
}

/* Avatar Placeholder */
.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--text-lighter);
}

/* Payment Option */
.payment-option {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(200, 169, 106, 0.1);
}

.payment-option input[type="radio"] {
    accent-color: var(--primary);
}

/* Smooth image loading */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Enhanced shadows */
.luxury-card,
.product-card,
.checkout-card,
.cart-item {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Better mobile spacing */
@media (max-width: 768px) {
    .section-title {
        margin-bottom: 35px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }

    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .product-card,
    .luxury-card {
        border-radius: 12px;
    }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE PASS
   ============================================================ */

/* Navbar toggler visibility */
.navbar-toggler {
    display: none;
}
@media (max-width: 991px) {
    .navbar-toggler { display: inline-block; }
    .navbar-luxury .navbar-collapse {
        width: auto;
    }
}

/* 3D Viewer height scales on smaller screens */
@media (max-width: 991px) {
    .product-3d-viewer,
    .product-3d-container {
        height: 380px;
    }
}
@media (max-width: 575px) {
    .product-3d-viewer,
    .product-3d-container {
        height: 300px;
    }
}

/* Hero text scaling */
@media (max-width: 991px) {
    .hero-slide {
        min-height: 80vh;
        min-height: 80dvh;
    }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .hero-subtitle { font-size: 1rem; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-btns .btn { width: 100%; max-width: 280px; }
}

@media (max-width: 575px) {
    .hero-title { font-size: clamp(1.9rem, 9vw, 2.6rem); }
    .hero-content { padding: 60px 0; }
    .swiper-button-next, .swiper-button-prev { display: none; }
}

/* Product grid spacing on small screens */
@media (max-width: 575px) {
    .col-lg-3.col-md-6, .col-xl-3.col-lg-4.col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .g-4 { --bs-gutter-y: 1rem; }
}

/* Shop page: sidebar stacks above products */
@media (max-width: 991px) {
    .shop-sidebar {
        position: static;
        top: auto;
        margin-bottom: 2rem;
    }
}

/* Search overlay (responsive tweaks live in premium.css) */
@media (max-width: 575px) {
    .input-group-footer { flex-direction: column; }
    .btn-footer-subscribe { width: 100%; justify-content: center; padding: 14px; }
}

/* Footer columns */
@media (max-width: 767px) {
    .footer-luxury { padding: 60px 0 0; }
    .footer-brand-block { margin-bottom: 2rem; }
    .footer-bottom-links { justify-content: flex-start; margin-top: 1rem; }
}

/* Tables scroll horizontally on mobile */
@media (max-width: 767px) {
    .table-responsive { border: 0; }
    .admin-table, .cart-item, .checkout-card { font-size: 0.85rem; }
}

/* Product detail / gallery spacing */
@media (max-width: 767px) {
    .gallery-thumbs { gap: 8px; }
    .gallery-thumb { width: 64px; height: 64px; }
}

/* Reduce large section paddings on phones */
@media (max-width: 575px) {
    .section-padding { padding: 50px 0; }
    .luxury-card, .admin-card { padding: 20px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
}

/* Prevent horizontal overflow */
html, body { max-width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* Ensure dropdowns in navbar behave on mobile */
@media (max-width: 991px) {
    .navbar-luxury .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 0;
    }
}

/* ============================================================
   RESPONSIVE IMPROVEMENTS (mobile-first polish)
   ============================================================ */

/* Global spacing on small screens */
@media (max-width: 767px) {
    .container { padding-left: 18px; padding-right: 18px; }
    section.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .section-title { margin-bottom: 40px; }
    .section-title h2 { font-size: 1.8rem; }
    .section-title p { font-size: 0.95rem; }

    /* Reduce hero text density */
    .hero-content { padding: 80px 0; }
    .hero-title { margin-bottom: 16px; }
    .hero-subtitle { margin-bottom: 28px; max-width: 100%; }

    /* Newsletter input group full width on mobile */
    .newsletter-form .input-group { flex-direction: column; gap: 10px; }
    .newsletter-form .input-group .btn { width: 100%; border-radius: var(--radius-sm); }
    .newsletter-form .input-group .form-control { border-radius: var(--radius-sm); width: 100%; }

    /* Product add-to-cart row wraps cleanly on phones */
    .product-info .d-flex.gap-3 { flex-wrap: wrap; }
    .product-info .d-flex.gap-3 > .btn-luxury { flex: 1 1 100%; }
    .product-info .d-flex.gap-3 > .btn-outline-luxury { flex: 0 0 auto; width: 100%; }

    /* Look cards: constrain image height on mobile */
    .look-card img { height: 220px; }

    /* Page header spacing */
    .page-header { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    .luxury-card.p-5 { padding: 1.5rem !important; }
}

/* Tablet tweaks */
@media (max-width: 991px) and (min-width: 768px) {
    .product-3d-info { margin-top: 2rem; }
}

/* Cart item: convert the stacked columns into a tidy card on phones */
@media (max-width: 767px) {
    .cart-item { padding: 16px; }
    .cart-item .row { display: flex; flex-wrap: wrap; align-items: center; row-gap: 12px; }
    .cart-item .row > div { width: auto; max-width: none; flex: 0 0 auto; }
    .cart-item .row > div:first-child { flex: 0 0 84px; }
    .cart-item .row > div:nth-child(2) { flex: 1 1 auto; padding-right: 8px; }
    .cart-item .row > div:nth-child(n+3) {
        flex: 1 1 30%;
        text-align: center;
    }
    .cart-item .cart-image { width: 80px; height: 80px; }
    .cart-item .quantity-selector { justify-content: center; }
}

/* Shop sidebar: collapsible on mobile via toggle button */
.shop-filter-toggle {
    display: none;
}

@media (max-width: 991px) {
    .shop-filter-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        margin-bottom: 16px;
    }
    .shop-sidebar {
        position: static !important;
        top: auto !important;
        display: none;
    }
    .shop-sidebar.filter-open {
        display: block;
        animation: fadeInUp 0.3s ease;
    }
}

/* Account sidebar: full width cards on small screens */
@media (max-width: 767px) {
    .account-sidebar .list-group { flex-direction: row; flex-wrap: wrap; }
    .account-sidebar .list-group .list-group-item { flex: 1 1 45%; text-align: center; }
}

/* Checkout: ensure summary doesn't get cut off on mobile */
@media (max-width: 991px) {
    .checkout-card { margin-top: 24px; }
}

/* Touch-friendly: keep product action buttons visible on small screens handled in product card */

