/* ================= Modern Saree Ecommerce Theme ================= */

/* Modern Color Variables - Navy Blue, Purple, Rose Pink Theme */
:root {
    /* Primary Colors */
    --primary-navy: #1e293b;
    --primary-purple: #6366f1;
    --primary-rose: #f43f5e;
    
    /* Secondary Colors */
    --secondary-slate: #475569;
    --secondary-indigo: #4f46e5;
    --secondary-pink: #ec4899;
    
    /* Accent Colors */
    --accent-blue: #3b82f6;
    --accent-violet: #8b5cf6;
    --accent-emerald: #10b981;
    
    /* Neutral Colors */
    --neutral-white: #ffffff;
    --neutral-gray-50: #f8fafc;
    --neutral-gray-100: #f1f5f9;
    --neutral-gray-200: #e2e8f0;
    --neutral-gray-300: #cbd5e1;
    --neutral-gray-400: #94a3b8;
    --neutral-gray-500: #64748b;
    --neutral-gray-600: #475569;
    --neutral-gray-700: #334155;
    --neutral-gray-800: #1e293b;
    --neutral-gray-900: #0f172a;
    
    /* Saree Business Colors */
    --saree-maroon: #800020;
    --saree-cream: #f5f5dc;
    --saree-silk: #fff8dc;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-accent: #f1f5f9;
    
    /* Border Colors */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --border-dark: #94a3b8;
    
    /* Shadow Colors */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-purple) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-rose) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-violet) 100%);
    --gradient-subtle: linear-gradient(135deg, var(--neutral-gray-50) 0%, var(--neutral-gray-100) 100%);
}

/* ================= Enhanced Saree Top Header ================= */
.top-header {
    background: var(--gradient-primary);
    color: white;
    font-size: 13px;
    padding: 12px 0;
    position: relative;
    box-shadow: var(--shadow-md);
}

.top-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
}

.top-header .container-fluid {
    max-width: 1400px;
}

.top-header .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 13px;
}

.top-header a {
    color: var(--primary-rose);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.top-header a:hover {
    color: white;
    text-shadow: 0 0 8px var(--primary-rose);
    transform: translateY(-1px);
}

.top-header i {
    color: var(--primary-rose);
    margin-right: 8px;
    font-size: 12px;
    text-shadow: 0 0 4px rgba(244, 63, 94, 0.5);
}

/* Enhanced Top Header Content */
.top-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.top-header-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.top-header-item:hover {
    transform: translateY(-1px);
}

.top-header-highlight {
    background: rgba(244, 63, 94, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid rgba(244, 63, 94, 0.3);
}

/* ================= Main Header - Modern Theme ================= */
header {
    position: relative;
    width: 100%;
    z-index: 1000;
    background: var(--gradient-subtle);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid var(--primary-purple);
}

.main-navbar {
    padding: 20px 0;
    background: transparent;
    border: none;
    position: relative;
}

.main-navbar .container {
    max-width: 1400px;
    position: relative;
}

/* Brand - Modern Typography */
.navbar-brand {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-navy) !important;
    text-decoration: none;
    letter-spacing: -1px;
    margin-right: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(30, 41, 59, 0.1);
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.navbar-brand:hover::after {
    width: 100%;
}

.navbar-brand:hover {
    color: var(--primary-purple) !important;
    transform: translateY(-2px);
    text-shadow: 3px 3px 6px rgba(30, 41, 59, 0.2);
}

.brand-location {
    font-size: 10px;
    color: var(--primary-purple);
    font-weight: 700;
    margin-top: -2px;
    display: block;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(99, 102, 241, 0.3);
}

/* Navigation - Modern Theme */
.navbar-nav {
    gap: 50px;
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 0 !important;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-purple) !important;
    transform: translateY(-2px);
    text-shadow: 1px 1px 3px rgba(99, 102, 241, 0.2);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.4);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Header Actions - Modern Theme */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-action {
    color: var(--text-secondary);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--gradient-subtle);
    border: 2px solid var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.header-action:hover {
    color: white;
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.header-action:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.header-action .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gradient-secondary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 15px;
    min-width: 22px;
    text-align: center;
    border: 2px solid var(--primary-purple);
    box-shadow: var(--shadow-md);
    font-family: 'Inter', sans-serif;
}

/* Mobile Toggle - Modern Theme */
.navbar-toggler {
    border: none;
    padding: 12px;
    background: var(--gradient-subtle);
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.navbar-toggler:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.3);
    outline: none;
}

.navbar-toggler:active {
    transform: translateY(0);
    box-shadow: var(--shadow-lg);
}

/* Modern Hamburger Animation */
.navbar-toggler-icon {
    width: 26px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.navbar-toggler-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-secondary);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggler:hover .navbar-toggler-icon span {
    background: white;
}

.navbar-toggler-icon span:nth-child(1) {
    top: 0px;
    transform-origin: left center;
}

.navbar-toggler-icon span:nth-child(2) {
    top: 9px;
    transform-origin: left center;
}

.navbar-toggler-icon span:nth-child(3) {
    top: 18px;
    transform-origin: left center;
}

/* Active state animation */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 2px;
    left: 4px;
    background: white;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 16px;
    left: 4px;
    background: white;
}

/* Offcanvas - Modern Theme */
.offcanvas {
    width: 340px !important;
    border: none;
    box-shadow: -6px 0 25px rgba(30, 41, 59, 0.15);
    background: var(--gradient-subtle);
}

.offcanvas-header {
    padding: 28px 32px 24px;
    border-bottom: 2px solid var(--primary-purple);
    background: var(--gradient-primary);
    color: white;
}

.offcanvas-title {
    font-size: 24px;
    font-weight: 800;
    color: white;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-close {
    font-size: 16px;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
    filter: invert(1);
}

.btn-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.offcanvas-body {
    padding: 0;
    background: white;
}

.offcanvas .navbar-nav {
    gap: 0;
    padding: 24px 0;
}

.offcanvas .nav-link {
    padding: 20px 32px !important;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
}

.offcanvas .nav-link:hover {
    background: var(--gradient-subtle);
    color: var(--primary-purple) !important;
    transform: translateX(10px);
    border-left: 4px solid var(--primary-purple);
    box-shadow: inset 0 0 20px rgba(99, 102, 241, 0.1);
}

.offcanvas .nav-link::after {
    display: none;
}

.offcanvas .nav-link i {
    width: 26px;
    font-size: 20px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover i {
    color: var(--primary-purple);
    transform: scale(1.2);
}

/* Contact Info in Offcanvas - Modern Theme */
.offcanvas-contact {
    padding: 32px;
    background: var(--gradient-primary);
    margin-top: auto;
    color: white;
}

.offcanvas-contact h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-rose);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.offcanvas-contact p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.offcanvas-contact p:hover {
    color: white;
    transform: translateX(6px);
}

.offcanvas-contact a {
    color: var(--primary-rose);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.offcanvas-contact a:hover {
    color: white;
    text-shadow: 0 0 8px var(--primary-rose);
}

.offcanvas-contact i {
    color: var(--primary-rose);
    width: 20px;
    font-size: 16px;
    text-shadow: 0 0 4px rgba(244, 63, 94, 0.5);
}

/* Sticky Header - Modern Theme */
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid var(--primary-purple);
}

.header-sticky .top-header {
    display: none;
}

.header-sticky .main-navbar {
    padding: 16px 0;
}

/* ================= Ultra Premium Loading Screen ================= */
#pageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease;
}

.loader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.loader-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="loader-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(99,102,241,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23loader-pattern)"/></svg>');
    z-index: 1;
}

.loader-spinner-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.loader-spinner-outer {
    width: 80px;
    height: 80px;
    border: 4px solid var(--border-light);
    border-top: 4px solid var(--primary-purple);
    border-radius: 50%;
    animation: spin 2s linear infinite;
    position: absolute;
}

.loader-spinner-inner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-medium);
    border-bottom: 3px solid var(--primary-rose);
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
    position: absolute;
}

.loader-spinner-center {
    width: 10px;
    height: 10px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

.loader-text {
    margin-bottom: 20px;
}

.loader-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.loader-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.loader-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.loader-brand {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loader-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.loader-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: loadingDots 1.4s ease-in-out infinite both;
}

.loader-dot:nth-child(1) {
    background: var(--primary-navy);
    animation-delay: 0s;
}

.loader-dot:nth-child(2) {
    background: var(--primary-purple);
    animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
    background: var(--primary-rose);
    animation-delay: 0.4s;
}

#pageLoader .premium-badge {
    background: var(--gradient-secondary);
    color: var(--primary-navy);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-purple);
}

/* ================= Enhanced Interactive Hero Styles ================= */

/* Hero Section Base */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--gradient-subtle);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(71, 85, 105, 0.3));
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-badge {
    margin-bottom: 24px;
}

.premium-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

.text-gradient {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-premium {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-outline-premium {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-premium:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
}

.hero-trust {
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-item:hover {
    color: white;
    transform: translateX(5px);
}

.trust-item i {
    color: var(--primary-rose);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.trust-detail {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.hero-interactive-panel {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 300px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    z-index: 4;
}

.weather-widget {
    margin-bottom: 24px;
    padding: 16px;
    background: var(--gradient-subtle);
    border-radius: 12px;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.weather-icon {
    font-size: 24px;
    color: #f59e0b;
}

.weather-details {
    display: flex;
    flex-direction: column;
}

.weather-temp {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
}

.weather-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

.activity-feed {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 16px;
}

.activity-feed h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 12px;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item i {
    color: var(--primary-purple);
    margin-top: 2px;
}

.activity-item small {
    color: var(--text-muted);
    font-size: 10px;
    margin-left: auto;
}

.hero-navigation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.enhanced-indicators {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.enhanced-indicators button {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.enhanced-indicators button.active,
.enhanced-indicators button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-navy);
    border-color: white;
}

.indicator-label {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.enhanced-scroll {
    text-align: center;
}

.scroll-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Bootstrap Carousel Enhancements */
.carousel {
    height: 100vh;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100vh;
    transition: transform 0.8s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.8s;
}

/* Interactive Hotspots */
.hero-hotspots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotspot-pulse {
    width: 24px;
    height: 24px;
    background: rgba(99, 102, 241, 0.9);
    border: 2px solid var(--primary-navy);
    border-radius: 50%;
    position: relative;
    animation: hotspotPulse 2s infinite;
}

.hotspot-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-navy);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes hotspotPulse {
    0% { box-shadow: 0 0 0 0 rgba(30, 41, 59, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(30, 41, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(30, 41, 59, 0); }
}

.hotspot-content {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-radius: 12px;
    min-width: 200px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
}

.hotspot:hover .hotspot-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.hotspot-content h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.hotspot-content .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 12px;
}

.hotspot-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn-hotspot-enquiry,
.btn-hotspot-view {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hotspot-enquiry {
    background: #25d366;
    color: white;
}

.btn-hotspot-view {
    background: var(--primary-navy);
    color: var(--primary-rose);
}

.btn-hotspot-enquiry:hover {
    background: #20c997;
    transform: scale(1.05);
}

.btn-hotspot-view:hover {
    background: var(--primary-purple);
    transform: scale(1.05);
}

/* Social Proof Overlay */
.hero-social-proof {
    position: absolute;
    bottom: 100px;
    left: 20px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 12px 16px;
    border-radius: 25px;
    max-width: 300px;
    animation: slideInLeft 0.8s ease-out;
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--primary-navy);
    font-weight: 500;
}

.social-proof-item i {
    color: var(--primary-purple);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Real-time Stats */
.hero-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 6;
    display: flex;
    gap: 16px;
}

.hero-stats .stat-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 8px 12px;
    border-radius: 20px;
    text-align: center;
    min-width: 60px;
}

.hero-stats .stat-number {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy);
}

.hero-stats .stat-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================= Premium Trust Bar ================= */
.trust-bar {
    background: var(--gradient-subtle);
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-item-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow-sm);
    margin: 0 8px;
    height: 100%;
}

.trust-item-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-subtle);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.trust-content {
    flex-grow: 1;
    text-align: left;
}

.trust-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 4px;
    display: block;
}

.trust-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    display: block;
}

@media (max-width: 768px) {
    .trust-item-premium {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        margin: 8px 0;
    }
    
    .trust-content {
        text-align: center;
    }
    
    .trust-bar {
        padding: 30px 0;
    }
}

/* ================= Premium Saree Slider Styles ================= */

/* Premium Saree Slider Section */
.premium-product-slider {
    background: var(--gradient-subtle);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.premium-product-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="saree-slider-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(99,102,241,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23saree-slider-pattern)"/></svg>');
    z-index: 1;
}

.premium-product-slider .container {
    position: relative;
    z-index: 2;
}

/* Enhanced Saree Section Header */
.slider-header {
    margin-bottom: 60px;
}

.header-badge {
    margin-bottom: 16px;
}

.premium-slider-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--primary-rose);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-purple);
}

.slider-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(30, 41, 59, 0.1);
}

.slider-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

/* Premium Swiper Container */
.premium-swiper-container {
    position: relative;
    padding: 20px 0;
}

.premiumProductSwiper {
    padding: 20px 0 60px;
    overflow: visible;
}

/* Enhanced Saree Product Cards */
.premium-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-md);
}

.premium-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.premium-product-card:hover::before {
    transform: scaleX(1);
}

.premium-product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

/* Enhanced Image Container */
.premium-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--gradient-subtle);
}

.premium-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.premium-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}

.premium-product-image.swiper-lazy-loaded {
    opacity: 1;
}

.premium-product-card:hover .premium-product-image {
    transform: scale(1.08);
}

/* Premium Saree Badges */
.premium-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.premium-discount-badge {
    background: var(--gradient-secondary);
    color: var(--neutral-white);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-purple);
}

.premium-new-badge {
    background: var(--gradient-accent);
    color: var(--neutral-white);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-blue);
}

/* Premium Image Overlay */
.premium-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(71, 85, 105, 0.9));
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.premium-product-card:hover .premium-image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    gap: 12px;
    align-items: center;
}

.premium-view-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-navy);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.premium-view-btn:hover {
    background: #ffffff;
    color: var(--primary-navy);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.premium-wishlist-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(20px);
}

.premium-wishlist-btn:hover {
    background: var(--primary-rose);
    color: #ffffff;
    transform: scale(1.1);
}

.premium-wishlist-btn.active {
    background: var(--primary-rose);
    color: #ffffff;
}

/* Quick Action Buttons */
.premium-quick-actions {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 4;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-product-card:hover .premium-quick-actions {
    opacity: 1;
    transform: translateY(0);
}

.quick-action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
}

.quick-action-btn.whatsapp-btn:hover {
    background: #25d366;
    color: #ffffff;
    transform: scale(1.1);
}

.quick-action-btn.call-btn:hover {
    background: var(--accent-blue);
    color: #ffffff;
    transform: scale(1.1);
}

.quick-action-btn.share-btn:hover {
    background: var(--accent-violet);
    color: #ffffff;
    transform: scale(1.1);
}

/* Enhanced Product Info */
.premium-product-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-meta-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.category-tag {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--bg-accent);
    padding: 4px 8px;
    border-radius: 12px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    color: #f59e0b;
}

.rating-text {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 4px;
    font-weight: 500;
}

.premium-product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-product-title a:hover {
    color: var(--primary-purple);
}

/* Enhanced Price Section */
.premium-price-section {
    margin-bottom: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.original-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.savings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.savings-amount {
    font-size: 12px;
    color: var(--accent-emerald);
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

.discount-percent {
    font-size: 11px;
    color: var(--primary-rose);
    font-weight: 700;
    background: rgba(244, 63, 94, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

/* Premium Features */
.premium-features {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-item {
    font-size: 10px;
    background: var(--bg-accent);
    color: var(--text-muted);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Enhanced Action Section */
.premium-action-section {
    margin-top: auto;
}

.premium-enquiry-btn {
    width: 100%;
    background: var(--gradient-secondary);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-shine {
    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;
}

.premium-enquiry-btn:hover .btn-shine {
    left: 100%;
}

/* Enhanced Navigation */
.premium-nav-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.premium-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.premium-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--border-medium);
    opacity: 1;
    transition: all 0.3s ease;
}

.premium-pagination .swiper-pagination-bullet-active {
    background: var(--primary-purple);
    transform: scale(1.2);
}

/* Enhanced View All Section */
.premium-view-all-section {
    text-align: center;
    margin-top: 60px;
}

.view-all-content {
    max-width: 600px;
    margin: 0 auto;
}

.view-all-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.premium-view-all-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: #ffffff;
}

.btn-content {
    position: relative;
    z-index: 2;
}

.btn-background {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.3s ease;
}

.premium-view-all-btn:hover .btn-background {
    left: 0;
}

.view-all-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.view-all-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.view-all-stats .stat-item i {
    color: var(--primary-purple);
    font-size: 16px;
}

/* ================= Animations ================= */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes loadingDots {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1.2); opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= Responsive Design ================= */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .hero-interactive-panel {
        width: 320px;
        right: 40px;
    }

    .hotspot-content {
        min-width: 220px;
        padding: 18px;
    }

    .hero-stats {
        top: 30px;
        right: 30px;
        gap: 20px;
    }

    .hero-stats .stat-item {
        padding: 10px 16px;
        min-width: 70px;
    }

    .hero-stats .stat-number {
        font-size: 18px;
    }
}

/* Medium screens (768px to 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .hero-interactive-panel {
        width: 260px;
        right: 20px;
    }

    .hotspot-content {
        min-width: 180px;
        padding: 14px;
    }

    .hotspot-content h6 {
        font-size: 13px;
    }

    .hotspot-content .price {
        font-size: 15px;
    }

    .hero-stats {
        top: 20px;
        right: 20px;
        gap: 12px;
    }

    .hero-stats .stat-item {
        padding: 8px 12px;
        min-width: 60px;
    }

    .hero-social-proof {
        bottom: 80px;
        left: 15px;
        max-width: 250px;
        padding: 10px 14px;
    }

    .social-proof-item {
        font-size: 12px;
    }
}

/* Small to Medium screens (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-interactive-panel {
        display: none;
    }

    .hotspot-content {
        min-width: 160px;
        padding: 12px;
        bottom: 40px;
    }

    .hotspot-content h6 {
        font-size: 12px;
    }

    .hotspot-content .price {
        font-size: 14px;
    }

    .btn-hotspot-enquiry,
    .btn-hotspot-view {
        padding: 5px 10px;
        font-size: 11px;
    }

    .hero-stats {
        top: 15px;
        right: 15px;
        gap: 8px;
    }

    .hero-stats .stat-item {
        padding: 6px 10px;
        min-width: 50px;
    }

    .hero-stats .stat-number {
        font-size: 14px;
    }

    .hero-stats .stat-label {
        font-size: 9px;
    }

    .hero-social-proof {
        bottom: 60px;
        left: 10px;
        max-width: 200px;
        padding: 8px 12px;
    }

    .social-proof-item {
        font-size: 11px;
    }
}

/* Mobile screens (up to 575px) */
@media (max-width: 575px) {
    .hero-interactive-panel {
        display: none;
    }

    .hotspot {
        width: 20px;
        height: 20px;
    }

    .hotspot-pulse {
        width: 20px;
        height: 20px;
    }

    .hotspot-pulse::before {
        width: 6px;
        height: 6px;
    }

    .hotspot-content {
        min-width: 140px;
        padding: 10px;
        bottom: 30px;
    }

    .hotspot-content h6 {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .hotspot-content .price {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .btn-hotspot-enquiry,
    .btn-hotspot-view {
        padding: 4px 8px;
        font-size: 10px;
    }

    .hero-stats {
        top: 10px;
        right: 10px;
        gap: 6px;
    }

    .hero-stats .stat-item {
        padding: 5px 8px;
        min-width: 45px;
    }

    .hero-stats .stat-number {
        font-size: 13px;
    }

    .hero-stats .stat-label {
        font-size: 8px;
    }

    .hero-social-proof {
        display: none;
    }

    .navbar-brand {
        font-size: 22px;
        margin-right: 20px;
    }

    .main-navbar {
        padding: 16px 0;
    }

    .top-header {
        font-size: 12px;
        padding: 10px 0;
    }

    .top-header .row > div {
        text-align: center !important;
        margin-bottom: 8px;
    }

    .top-header .row > div:last-child {
        margin-bottom: 0;
    }

    .top-header-item {
        justify-content: center;
    }
}

/* Extra small screens (up to 400px) */
@media (max-width: 400px) {
    .hotspot-content {
        min-width: 120px;
        padding: 8px;
    }

    .hero-stats .stat-item {
        padding: 4px 6px;
        min-width: 40px;
    }

    .hero-stats .stat-number {
        font-size: 12px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-stats {
        top: 5px;
        right: 5px;
    }

    .hero-social-proof {
        bottom: 20px;
    }
}

/* High Contrast Mode */
.high-contrast .hotspot-pulse {
    border-color: #000;
    background: #fff;
}

.high-contrast .hotspot-content {
    background: #fff;
    border: 2px solid #000;
}

/* Reduced Motion */
.reduced-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Enhanced Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

/* Add premium fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ================= Categories Section ================= */
.categories-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="categories-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(99,102,241,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23categories-pattern)"/></svg>');
    z-index: 1;
}

.categories-section .container {
    position: relative;
    z-index: 2;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    height: 300px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(99, 102, 241, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.category-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.category-content p {
    font-size: 16px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.category-count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.btn-category {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-category:hover {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

/* ================= Why Choose Us Section ================= */
.why-choose-us {
    background: var(--bg-accent);
    position: relative;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.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;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-secondary);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* ================= Reviews Section ================= */
.reviews-section {
    background: var(--bg-primary);
    position: relative;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-stars i {
    color: #f59e0b;
    font-size: 16px;
}

.review-date {
    color: var(--text-muted);
    font-size: 14px;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
    font-size: 15px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-location {
    color: var(--text-muted);
    font-size: 14px;
}

/* ================= Contact CTA Section ================= */
.contact-cta {
    background: var(--bg-secondary);
    position: relative;
}

.cta-content {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-buttons {
    margin-bottom: 32px;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-whatsapp:hover {
    background: #20c997;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-call {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-call:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.contact-item i {
    color: var(--primary-purple);
    font-size: 16px;
}

/* ================= Section Headers ================= */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    margin-bottom: 16px;
}

.premium-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-purple);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(30, 41, 59, 0.1);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

/* ================= Button Styles ================= */
.btn-premium {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid var(--primary-purple);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.btn-premium:hover {
    background: var(--gradient-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-premium {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-purple);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.btn-outline-premium:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ================= Animation Classes ================= */
.animate-in {
    animation: slideInUp 0.8s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= Responsive Design ================= */
@media (max-width: 768px) {
    .categories-section .col-lg-4 {
        margin-bottom: 24px;
    }
    
    .category-card {
        height: 250px;
    }
    
    .feature-card {
        padding: 30px 20px;
        margin-bottom: 24px;
    }
    
    .review-card {
        padding: 24px;
        margin-bottom: 24px;
    }
    
    .cta-content {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 12px;
    }
    
    .contact-info .row {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .category-content h4 {
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .cta-title {
        font-size: 20px;
    }
}

/* ================= High Contrast Mode Support ================= */
@media (prefers-contrast: high) {
    .category-card,
    .feature-card,
    .review-card,
    .cta-content {
        border: 2px solid #000000;
    }
    
    .btn-premium,
    .btn-category,
    .btn-whatsapp,
    .btn-call {
        border: 2px solid #000000;
    }
}

/* ================= Reduced Motion Support ================= */
@media (prefers-reduced-motion: reduce) {
    .category-card,
    .feature-card,
    .review-card,
    .btn-premium,
    .btn-category,
    .btn-whatsapp,
    .btn-call {
        transition: none !important;
        animation: none !important;
    }
    
    .category-card:hover,
    .feature-card:hover,
    .review-card:hover {
        transform: none !important;
    }
}
/* ================= Latest Arrivals Section ================= */
.latest-arrivals {
    background: var(--bg-primary);
    position: relative;
}

.arrival-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

.arrival-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.arrival-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-secondary);
}

.arrival-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.arrival-card:hover .arrival-image img {
    transform: scale(1.1);
}

.arrival-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.new-badge {
    background: var(--gradient-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.discount-badge {
    background: var(--gradient-secondary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.arrival-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(99, 102, 241, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.arrival-card:hover .arrival-overlay {
    opacity: 1;
}

.arrival-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.btn-view {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-navy);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border: none;
}

.btn-view:hover {
    background: white;
    color: var(--primary-navy);
    transform: scale(1.05);
}

.btn-enquiry {
    background: #25d366;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-enquiry:hover {
    background: #20c997;
    color: white;
    transform: scale(1.05);
}

.arrival-content {
    padding: 24px;
}

.arrival-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.category-tag {
    background: var(--gradient-primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.fabric-tag {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-purple);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.arrival-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.arrival-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.arrival-title a:hover {
    color: var(--primary-purple);
}

.arrival-color {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
}

.arrival-price {
    margin-bottom: 16px;
}

.arrival-price .original-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 8px;
}

.arrival-price .final-price {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
    margin-right: 8px;
}

.arrival-price .savings {
    color: var(--accent-emerald);
    font-size: 12px;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

.stock-status {
    margin-top: 12px;
}

.stock-indicator {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stock-indicator.in-stock {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
}

.stock-indicator.limited-stock {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.stock-indicator.out-of-stock {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* ================= Featured Categories Dynamic Section ================= */
.featured-categories {
    background: var(--bg-accent);
    position: relative;
}

.category-card-dynamic {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    height: 300px;
}

.category-card-dynamic:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.category-image-dynamic {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image-dynamic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card-dynamic:hover .category-image-dynamic img {
    transform: scale(1.1);
}

.category-overlay-dynamic {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(99, 102, 241, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.category-card-dynamic:hover .category-overlay-dynamic {
    opacity: 1;
}

.category-content-dynamic {
    text-align: center;
    color: white;
    padding: 20px;
}

.category-content-dynamic h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.category-content-dynamic p {
    font-size: 16px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.category-content-dynamic .avg-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-rose);
    margin-bottom: 20px;
}

.btn-category-dynamic {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-category-dynamic:hover {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

/* ================= Responsive Design for New Sections ================= */
@media (max-width: 768px) {
    .arrival-card {
        margin-bottom: 24px;
    }
    
    .arrival-content {
        padding: 20px;
    }
    
    .arrival-actions {
        flex-direction: row;
        gap: 8px;
    }
    
    .btn-view,
    .btn-enquiry {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .category-card-dynamic {
        height: 250px;
        margin-bottom: 24px;
    }
    
    .category-content-dynamic h4 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .arrival-title {
        font-size: 16px;
    }
    
    .arrival-price .final-price {
        font-size: 18px;
    }
    
    .category-content-dynamic h4 {
        font-size: 18px;
    }
    
    .category-content-dynamic .avg-price {
        font-size: 16px;
    }
}

/* ================= Animation Enhancements ================= */
.arrival-card,
.category-card-dynamic {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-in .arrival-card,
.animate-in .category-card-dynamic {
    opacity: 1;
    transform: translateY(0);
}

.animate-in .arrival-card:nth-child(1) { transition-delay: 0.1s; }
.animate-in .arrival-card:nth-child(2) { transition-delay: 0.2s; }
.animate-in .arrival-card:nth-child(3) { transition-delay: 0.3s; }
.animate-in .arrival-card:nth-child(4) { transition-delay: 0.4s; }
.animate-in .arrival-card:nth-child(5) { transition-delay: 0.5s; }
.animate-in .arrival-card:nth-child(6) { transition-delay: 0.6s; }

.animate-in .category-card-dynamic:nth-child(1) { transition-delay: 0.1s; }
.animate-in .category-card-dynamic:nth-child(2) { transition-delay: 0.2s; }
.animate-in .category-card-dynamic:nth-child(3) { transition-delay: 0.3s; }
.animate-in .category-card-dynamic:nth-child(4) { transition-delay: 0.4s; }
.animate-in .category-card-dynamic:nth-child(5) { transition-delay: 0.5s; }
.animate-in .category-card-dynamic:nth-child(6) { transition-delay: 0.6s; }

/* ================= PREMIUM PRODUCT DETAIL PAGE GLOBAL STYLES ================= */

/* Product Detail Section Base */
.product-detail {
    background: var(--gradient-subtle);
    min-height: 100vh;
    padding: 80px 0;
}

/* Enhanced Breadcrumb for Product Detail */
.breadcrumb-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 3px solid var(--primary-purple);
    padding: 20px 0;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 12px 24px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.breadcrumb-item {
    font-weight: 600;
}

.breadcrumb-item a {
    color: var(--primary-navy);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.breadcrumb-item a:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-purple);
    transform: translateY(-2px);
}

.breadcrumb-item.active {
    color: var(--primary-purple);
    font-weight: 700;
}

/* Enhanced Product Images */
.product-images {
    position: sticky;
    top: 100px;
}

.main-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 3px solid var(--primary-purple);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.main-image img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 21px;
}

.main-image:hover img {
    transform: scale(1.05);
}

/* Enhanced Discount Badge */
.discount-badge {
    position: absolute;
    top: 20px;
    left: -45px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 12px 50px;
    transform: rotate(-45deg);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    z-index: 10;
    border: 2px solid white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Thumbnails */
.thumbnail-images {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    max-height: 120px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 0;
}

.thumbnail-images::-webkit-scrollbar {
    height: 8px;
}

.thumbnail-images::-webkit-scrollbar-track {
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
}

.thumbnail-images::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 10px;
}

.thumb-item {
    flex-shrink: 0;
}

.thumb-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 16px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thumb-item img:hover {
    border-color: var(--primary-purple);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.thumb-item.active img {
    border-color: var(--primary-navy);
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.4);
    transform: scale(1.05);
}

/* Enhanced Image Counter and Zoom Hint */
.image-counter,
.zoom-hint {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 8px 16px;
    display: inline-block;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 12px;
}

.image-counter .text-muted,
.zoom-hint .text-muted {
    color: var(--text-secondary) !important;
    font-weight: 600;
    margin: 0;
}

/* Enhanced Image Navigation Buttons */
.image-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-nav-btn:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Enhanced Floating WhatsApp */
.floating-whatsapp a {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
    border: 3px solid white;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
    color: white;
}

.floating-whatsapp .fa-2x {
    font-size: 2rem;
}

/* Enhanced Related Products */
.related-products {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.related-products h3 {
    color: var(--primary-navy);
    font-weight: 800;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
}

.related-products h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.related-products .card {
    border-radius: 24px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: white;
}

.related-products .card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.related-products .card-img-top {
    border-radius: 24px 24px 0 0;
    transition: transform 0.4s ease;
    height: 250px;
    object-fit: cover;
}

.related-products .card:hover .card-img-top {
    transform: scale(1.1);
}

.related-products .card-body {
    padding: 24px;
}

.related-products .card-title {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.related-products .card-text {
    margin-bottom: 20px;
}

.related-products .btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-products .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    color: white;
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .product-images {
        position: static;
        margin-bottom: 40px;
    }
    
    .main-image {
        margin-bottom: 20px;
    }
    
    .product-detail {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .main-image img {
        height: 400px !important;
    }
    
    .image-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .thumb-item img {
        width: 70px;
        height: 70px;
    }
    
    .floating-whatsapp a {
        width: 60px;
        height: 60px;
    }
    
    .floating-whatsapp .fa-2x {
        font-size: 1.5rem;
    }
    
    .related-products h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .breadcrumb {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .main-image {
        border-radius: 20px;
        border-width: 2px;
    }
    
    .main-image img {
        height: 300px !important;
        border-radius: 18px;
    }
    
    .image-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .thumb-item img {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }
    
    .thumbnail-images {
        justify-content: center;
        gap: 8px;
    }
    
    .discount-badge {
        font-size: 0.8rem;
        padding: 10px 40px;
        left: -40px;
    }
    
    .floating-whatsapp {
        bottom: 20px !important;
        right: 20px !important;
    }
    
    .floating-whatsapp a {
        width: 55px;
        height: 55px;
    }
    
    .floating-whatsapp .fa-2x {
        font-size: 1.3rem;
    }
    
    .related-products {
        padding: 60px 0;
    }
    
    .related-products h3 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .related-products .card-img-top {
        height: 200px;
    }
    
    .related-products .card-body {
        padding: 20px;
    }
}

/* Animation Keyframes */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Loading States */
.image-loading {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    z-index: 20 !important;
}

.image-loading .spinner-border {
    width: 4rem;
    height: 4rem;
    border-color: var(--primary-purple);
    border-top-color: var(--primary-navy);
    border-width: 4px;
}

/* Custom Toast Notifications */
.custom-toast {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--primary-purple);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
}

.custom-toast.alert-success {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.custom-toast.alert-info {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.custom-toast.alert-error {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
}
/* ================= PREMIUM FRESH COLLECTION CARDS ================= */

/* Premium Arrival Card Container */
.premium-arrival-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-arrival-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

/* Premium Card Image Section */
.premium-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    height: 300px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-arrival-card:hover .card-img {
    transform: scale(1.1);
}

/* Premium Badges */
.premium-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.new-badge-premium {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: newBadgePulse 2s infinite;
}

.new-badge-premium i {
    font-size: 0.9rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

.discount-badge-premium {
    position: absolute;
    top: 60px;
    left: 0;
}

.discount-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    border: 3px solid white;
    position: relative;
    animation: discountPulse 3s infinite;
}

.discount-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ef4444, #f97316, #eab308, #22c55e, #3b82f6, #8b5cf6, #ef4444);
    border-radius: 50%;
    z-index: -1;
    animation: rainbowRotate 3s linear infinite;
}

.discount-percent {
    font-size: 1.1rem;
    line-height: 1;
    margin-bottom: 2px;
}

.discount-text {
    font-size: 0.7rem;
    line-height: 1;
    letter-spacing: 0.5px;
}

/* Premium Overlay */
.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(99, 102, 241, 0.8) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.premium-arrival-card:hover .premium-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.quick-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.wishlist-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
}

.share-btn:hover {
    background: #3b82f6;
    border-color: #3b82f6;
}

.view-btn:hover {
    background: #10b981;
    border-color: #10b981;
}

.main-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-premium-view,
.btn-premium-enquiry {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-premium-view {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-premium-view:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-navy);
    border-color: white;
    transform: translateY(-2px);
}

.btn-premium-enquiry {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-premium-enquiry:hover {
    background: linear-gradient(135deg, #128c7e 0%, #0d7377 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Premium Card Content */
.premium-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Premium Meta Tags */
.premium-meta-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.meta-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-meta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.fabric-meta {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.meta-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Premium Title */
.premium-card-title {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.premium-card-title a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.premium-card-title a:hover {
    color: var(--primary-purple);
    transform: translateX(5px);
}

/* Color Info */
.color-info {
    margin-bottom: 16px;
}

.color-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.color-indicator i {
    color: var(--primary-purple);
}

/* Premium Price Section */
.premium-price-section {
    margin-bottom: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: white;
    position: relative;
    overflow: hidden;
}

.premium-price-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.original-price-premium {
    font-size: 1rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.current-price-premium {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.savings-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #fbbf24;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.savings-info i {
    font-size: 0.8rem;
}

/* Premium Stock Status */
.premium-stock-status {
    margin-top: auto;
}

.stock-indicator-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.stock-available {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.stock-limited {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.stock-out {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.stock-indicator-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes newBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(251, 191, 36, 0.6);
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

@keyframes discountPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(239, 68, 68, 0.6);
    }
}

@keyframes rainbowRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-card-image {
        height: 250px;
    }
    
    .premium-card-content {
        padding: 20px;
    }
    
    .discount-circle {
        width: 60px;
        height: 60px;
    }
    
    .discount-percent {
        font-size: 1rem;
    }
    
    .discount-text {
        font-size: 0.6rem;
    }
    
    .premium-meta-tags {
        gap: 6px;
    }
    
    .meta-tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .current-price-premium {
        font-size: 1.4rem;
    }
    
    .quick-actions {
        gap: 8px;
    }
    
    .action-btn {
        width: 40px;
        height: 40px;
    }
    
    .main-actions {
        gap: 10px;
    }
    
    .btn-premium-view,
    .btn-premium-enquiry {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .premium-card-image {
        height: 220px;
    }
    
    .premium-card-content {
        padding: 16px;
    }
    
    .premium-badges {
        top: 12px;
        left: 12px;
    }
    
    .new-badge-premium {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .discount-circle {
        width: 55px;
        height: 55px;
    }
    
    .discount-percent {
        font-size: 0.9rem;
    }
    
    .premium-card-title {
        font-size: 1.1rem;
    }
    
    .current-price-premium {
        font-size: 1.3rem;
    }
    
    .premium-meta-tags {
        flex-direction: column;
        gap: 4px;
    }
    
    .meta-tag {
        align-self: flex-start;
    }
}

/* Latest Arrivals Section Enhancement */
.latest-arrivals {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.latest-arrivals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(99,102,241,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.latest-arrivals .container {
    position: relative;
    z-index: 2;
}

/* Enhanced View All Button */
.btn-premium {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-premium::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 ease;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4);
    color: white;
}

/* Card Animation on Scroll */
.premium-arrival-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in .premium-arrival-card {
    opacity: 1;
    transform: translateY(0);
}

.animate-in .premium-arrival-card:nth-child(1) { transition-delay: 0.1s; }
.animate-in .premium-arrival-card:nth-child(2) { transition-delay: 0.2s; }
.animate-in .premium-arrival-card:nth-child(3) { transition-delay: 0.3s; }
.animate-in .premium-arrival-card:nth-child(4) { transition-delay: 0.4s; }
.animate-in .premium-arrival-card:nth-child(5) { transition-delay: 0.5s; }
.animate-in .premium-arrival-card:nth-child(6) { transition-delay: 0.6s; }

/* ================= ENHANCED ECOMMERCE SECTIONS CSS ================= */

/* Fresh from Our Collection Section */
.fresh-collection-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pulse-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s infinite;
}

.section-badge-fresh {
    position: relative;
    padding: 12px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.section-title-fresh {
    color: #1e293b;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 120px;
    height: 4px;
}

.divider-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.divider-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border: 2px solid #6366f1;
    border-radius: 50%;
}

/* Product Cards */
.product-card-enhanced {
    height: 100%;
    border: 0;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: white;
}

.product-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 320px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image:hover {
    transform: scale(1.08);
}

.product-badges {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px;
}

.discount-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-enhanced:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6366f1;
}

.overlay-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.overlay-main-btn {
    background: white;
    color: #6366f1;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.overlay-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #6366f1;
}

.product-details {
    padding: 20px;
}

.category-badge {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #64748b;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.product-rating {
    color: #fbbf24;
    font-size: 14px;
}

.product-title {
    color: #1e293b;
    line-height: 1.4;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.product-title a {
    color: inherit;
}

.product-meta {
    color: #64748b;
    display: flex;
    align-items: center;
}

.product-meta i {
    color: #6366f1;
}

.current-price {
    color: #6366f1;
    font-size: 1.25rem;
    font-weight: bold;
    margin-right: 8px;
}

.original-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.savings-text {
    color: #10b981;
    font-weight: 600;
}

.stock-status {
    color: #10b981;
    font-weight: 600;
    display: block;
}

.delivery-text {
    color: #64748b;
}

.btn-primary-action {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    padding: 12px;
    width: 100%;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    color: white;
}

.btn-whatsapp-action {
    background: transparent;
    border: 2px solid #6366f1;
    border-radius: 15px;
    color: #6366f1;
    padding: 12px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-whatsapp-action:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
}

.view-all-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    padding: 15px 40px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    color: white;
}

/* Categories Section */
.categories-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.pulse-bg-categories {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s infinite;
}

.section-badge-categories {
    position: relative;
    padding: 12px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.section-title-categories {
    color: #1e293b;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-divider-categories {
    width: 120px;
    height: 4px;
}

.divider-line-categories {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 2px;
}

.divider-dot-categories {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border: 2px solid #10b981;
    border-radius: 50%;
}

/* Category Cards */
.category-card-enhanced {
    height: 100%;
    border: 0;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.category-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-image:hover {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.7) 0%, rgba(5, 150, 105, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card-enhanced:hover .category-overlay {
    opacity: 1;
}

.category-arrow {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

.category-popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    padding: 6px 12px;
}

.category-details {
    padding: 20px;
}

.category-title {
    color: #1e293b;
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: bold;
}

.category-rank-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 15px;
    font-size: 10px;
    padding: 4px 8px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: #10b981;
    font-size: 1rem;
}

.stat-number {
    font-weight: bold;
    color: #1e293b;
    font-size: 1.1rem;
}

.feature-badge {
    border-radius: 12px;
    font-size: 10px;
    padding: 4px 8px;
}

.feature-badge-quality {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.feature-badge-delivery {
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
}

.feature-badge-rated {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.category-explore-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    padding: 12px;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: block;
    text-align: center;
}

.category-explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    color: white;
}

/* No Products/Categories States */
.no-products-state,
.no-categories-state {
    text-align: center;
    padding: 60px 20px;
}

.no-products-icon,
.no-categories-icon {
    display: inline-block;
    padding: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.no-products-icon i,
.no-categories-icon i {
    font-size: 3rem;
    color: #cbd5e1;
}

/* Error States */
.error-state {
    text-align: center;
    border: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 40px 20px;
}

.error-state i {
    font-size: 2rem;
    color: #f59e0b;
}

.error-state h5 {
    color: #92400e;
}

.error-state p {
    color: #92400e;
}

/* Animations */
@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05); 
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateY(0); 
    }
    40% { 
        transform: translateY(-10px); 
    }
    60% { 
        transform: translateY(-5px); 
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-image-container,
    .category-image-container {
        height: 250px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .overlay-btn {
        width: 40px;
        height: 40px;
        margin: 0 2px;
    }
    
    .product-details,
    .category-details {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .product-image-container,
    .category-image-container {
        height: 200px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .section-badge-fresh,
    .section-badge-categories {
        padding: 8px 16px;
    }
}

/* ================= PRODUCTS PAGE SPECIFIC STYLES ================= */

/* Premium Saree Hero Section Styling */
.products-hero {
    min-height: 70vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="saree-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(99,102,241,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(99,102,241,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(99,102,241,0.05)"/><circle cx="20" cy="80" r="0.5" fill="rgba(99,102,241,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23saree-pattern)"/></svg>');
    opacity: 0.4;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.premium-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
    display: inline-flex;
    align-items: center;
    animation: modernGlow 2s ease-in-out infinite alternate;
    border: 2px solid var(--primary-purple);
}

@keyframes modernGlow {
    from { box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4); }
    to { box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(30, 41, 59, 0.5);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-breadcrumb .breadcrumb {
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 12px 24px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-rose);
    text-shadow: 0 0 8px rgba(244, 63, 94, 0.5);
}

.hero-breadcrumb .breadcrumb-item.active {
    color: var(--primary-rose);
    font-weight: 600;
}

.hero-stats {
    margin-top: 3rem;
}

.stat-card {
    background: rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 15px;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 40px rgba(30, 41, 59, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.stat-number {
    font-size: 15px;
    font-weight: 900;
    color: var(--primary-rose);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(244, 63, 94, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Modern Filter Section */
.filter-section {
    background: var(--gradient-subtle);
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.1);
    backdrop-filter: blur(20px);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.filter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="filter-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(99,102,241,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23filter-pattern)"/></svg>');
    z-index: 1;
}

.filter-section > * {
    position: relative;
    z-index: 2;
}

.search-box {
    position: relative;
}

.search-box input {
    background: #ffffff;
    border: 2px solid rgba(128, 0, 32, 0.2);
    border-radius: 12px;
    padding: 14px 20px 14px 50px;
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.search-box input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 16px;
}

.form-select {
    background: #ffffff;
    border: 2px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.filter-btn {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(100, 116, 139, 0.3);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(100, 116, 139, 0.4);
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
}

.filter-results {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.view-toggle .btn {
    border: 2px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    background: #ffffff;
    color: #64748b;
    transition: all 0.3s ease;
}

.view-toggle .btn.active,
.view-toggle .btn:hover {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
    transform: translateY(-1px);
}

/* Enhanced Product Cards */
.product-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
    display: block;
}

.product-image:not([src]), .product-image[src=""] {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.product-image:not([src])::before, .product-image[src=""]::before {
    content: "🖼️";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #94a3b8;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.product-card:hover .quick-view-overlay {
    opacity: 1;
}

.quick-view-overlay .btn {
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    transform: translateY(20px);
}

.product-card:hover .quick-view-overlay .btn {
    transform: translateY(0);
}

.product-card .discount-badge{
    position: absolute;
    top: 10px;
    left: 5px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 40px;
    transform: rotate(0deg);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-view-overlay .btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: -135px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 40px;
    transform: rotate(0deg);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.wishlist-btn:hover {
    background: #ffffff;
    color: #ef4444;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.wishlist-btn.active {
    background: #ef4444;
    color: #ffffff;
}

.product-category .badge {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    font-weight: 600;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title a {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #3b82f6;
}

.rating .stars {
    color: #fbbf24;
    font-size: 14px;
}

.rating .text-muted {
    font-size: 13px;
    color: #64748b;
}

.original-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 500;
}

.final-price {
    color: #059669;
    font-size: 1.5rem;
    font-weight: 800;
}

.savings-text {
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
}

.action-buttons {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.action-buttons .btn {
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-buttons .btn-success {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-color: #059669;
}

.action-buttons .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

.action-buttons .btn-outline-primary {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #ffffff;
}

.action-buttons .btn-outline-primary:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.action-buttons .btn-outline-secondary {
    border-color: #64748b;
    color: #64748b;
    background: #ffffff;
}

.action-buttons .btn-outline-secondary:hover {
    background: #64748b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(100, 116, 139, 0.3);
}

/* Premium Loading Animation */
.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Page Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-card {
        margin: 10px 0;
    }
    
    .filter-section {
        padding: 20px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .action-buttons {
        padding: 15px;
    }
    
    .action-buttons .d-flex {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .products-hero {
        min-height: 60vh;
    }
    
    .hero-content-wrapper {
        padding: 60px 0;
    }
}

/*============================================================*/


/* Hero Product Showcase */
.hero-product-showcase {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-purple) 50%, var(--primary-rose) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.6;
}

.hero-product-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(244, 63, 94, 0.2) 0%, transparent 50%);
}

.showcase-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 80px;
}

.showcase-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.showcase-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.showcase-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
}

/* Featured Products Grid */
.featured-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.featured-product-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    cursor: pointer;
}

.featured-product-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.featured-product-item.main-product {
    grid-row: span 2;
    background: rgba(255, 255, 255, 0.15);
}

.featured-product-item.main-product:hover {
    transform: translateY(-20px) scale(1.03);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.featured-product-item.main-product .product-image-wrapper {
    height: 500px;
}

.product-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-item:hover .product-showcase-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(99, 102, 241, 0.6) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.featured-product-item:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-navy);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    transform: translateY(20px);
}

.featured-product-item:hover .overlay-btn {
    transform: translateY(0);
}

.overlay-btn:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.overlay-btn.whatsapp-btn {
    background: #25d366;
    color: white;
}

.overlay-btn.whatsapp-btn:hover {
    background: #128c7e;
    color: white;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.featured-product-item.main-product .product-info {
    padding: 35px;
}

.product-badge {
    background: linear-gradient(135deg, var(--primary-rose) 0%, var(--secondary-pink) 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.featured-product-item.main-product .product-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fbbf24;
}

.featured-product-item.main-product .current-price {
    font-size: 2rem;
}

.original-price {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.discount-badge {
    position: absolute;
    top: 20px;
    left: -10px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 8px 25px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(-5deg);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    z-index: 3;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.rating-stars {
    color: #fbbf24;
    font-size: 16px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-left: 5px;
}

/* Action Buttons */
.showcase-actions {
    text-align: center;
    margin-top: 60px;
}

.showcase-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.showcase-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.showcase-btn.primary {
    background: linear-gradient(135deg, var(--primary-rose) 0%, var(--secondary-pink) 100%);
    border-color: var(--primary-rose);
}

.showcase-btn.primary:hover {
    background: linear-gradient(135deg, var(--secondary-pink) 0%, var(--primary-rose) 100%);
    color: white;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatAround 20s linear infinite;
}

.floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes floatAround {
    0% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(20px) rotate(270deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .featured-products-grid {
        max-width: 1000px;
        gap: 20px;
    }
    
    .showcase-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .featured-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .featured-product-item.main-product {
        grid-row: span 1;
        grid-column: span 2;
    }
    
    .featured-product-item.main-product .product-image-wrapper {
        height: 350px;
    }
    
    .showcase-title {
        font-size: 3rem;
    }
    
    .showcase-content {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .hero-product-showcase {
        min-height: 90vh;
    }
    
    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .featured-product-item.main-product {
        grid-column: span 1;
    }
    
    .featured-product-item.main-product .product-image-wrapper {
        height: 300px;
    }
    
    .product-image-wrapper {
        height: 250px;
    }
    
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .showcase-subtitle {
        font-size: 1.1rem;
    }
    
    .showcase-content {
        padding: 60px 0;
    }
    
    .showcase-actions {
        margin-top: 40px;
    }
    
    .showcase-btn {
        padding: 12px 25px;
        font-size: 14px;
        margin: 5px;
        display: block;
        width: 90%;
        margin: 10px auto;
    }
}

@media (max-width: 576px) {
    .showcase-title {
        font-size: 2rem;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .current-price {
        font-size: 1.3rem;
    }
    
    .featured-product-item.main-product .product-name {
        font-size: 1.4rem;
    }
    
    .featured-product-item.main-product .current-price {
        font-size: 1.6rem;
    }
}

/* ================= Enhanced Product Showcase Animations ================= */

/* Smooth transitions for product items */
.featured-product-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

.featured-product-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-3deg); }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-element:nth-child(2) {
    animation-delay: 2s;
    animation-duration: 6s;
}

.floating-element:nth-child(3) {
    animation-delay: 4s;
    animation-duration: 10s;
}

/* Enhanced product overlay animations */
.product-overlay {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-item:hover .product-overlay {
    backdrop-filter: blur(10px);
}

.overlay-btn {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-item:hover .overlay-btn {
    transform: translateY(0);
    opacity: 1;
}

.overlay-btn:nth-child(1) { transition-delay: 0.1s; }
.overlay-btn:nth-child(2) { transition-delay: 0.2s; }

/* Enhanced showcase badge animation */
.showcase-badge {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Enhanced product image hover effects */
.product-showcase-image {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-item:hover .product-showcase-image {
    transform: scale(1.1);
}

/* Enhanced discount badge animation */
.discount-badge {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Enhanced rating stars animation */
.rating-stars i {
    transition: all 0.2s ease;
}

.featured-product-item:hover .rating-stars i {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

/* Enhanced showcase actions */
.showcase-actions {
    margin-top: 60px;
}

.showcase-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.showcase-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;
}

.showcase-btn:hover::before {
    left: 100%;
}

.showcase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Enhanced mobile responsiveness */
@media (max-width: 576px) {
    .showcase-header {
        margin-bottom: 40px;
    }
    
    .showcase-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .showcase-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .featured-product-item {
        margin-bottom: 20px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .showcase-actions {
        margin-top: 40px;
    }
    
    .showcase-btn {
        padding: 12px 24px;
        font-size: 14px;
        margin: 5px;
        display: block;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Enhanced accessibility */
.featured-product-item:focus-within {
    outline: 3px solid var(--primary-purple);
    outline-offset: 2px;
}

.overlay-btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Enhanced loading states */
.product-showcase-image[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Enhanced performance optimizations */
.featured-product-item {
    contain: layout style paint;
}

.product-showcase-image {
    will-change: transform;
}

/* Enhanced dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    .hero-product-showcase {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #374151 100%);
    }
}

/* Enhanced reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .floating-element,
    .showcase-badge,
    .discount-badge {
        animation: none;
    }
    
    .featured-product-item,
    .overlay-btn,
    .product-showcase-image {
        transition: none;
    }
}