    :root {
        /* Premium Brass Color Palette */
        --primary-dark: #1a1a1a;
        --rich-black: #0d0d0d;
        --deep-charcoal: #1c1c1c;
        --brass-gold: #B8860B;
        --antique-gold: #CD7F32;
        --warm-white: #FFF8DC;
        --light-gold: #F5DEB3;
        --dark-bronze: #654321;
        --copper-highlight: #B87333;
        --brass-accent: #DAA520;

        /* Luxury gradients */
        --hero-gradient: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #1c1c1c 100%);
        --brass-gradient: linear-gradient(135deg, #B8860B 0%, #CD7F32 100%);
        --gold-gradient: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
        --bronze-gradient: linear-gradient(135deg, #654321 0%, #B87333 100%);

        /* Premium shadows and effects */
        --shadow-luxury: 0 15px 50px rgba(0,0,0,0.3);
        --shadow-brass: 0 8px 25px rgba(184, 134, 11, 0.2);
        --shadow-gold: 0 4px 20px rgba(218, 165, 32, 0.3);
        --glow-brass: 0 0 20px rgba(184, 134, 11, 0.4);
        --border-radius: 12px;
        --border-radius-lg: 24px;
        --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --transition-luxury: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* Premium Brass Hero Section */
    .hero-section {
        background: var(--hero-gradient);
        min-height: 100vh;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        padding: 120px 0 80px;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 80%, rgba(184, 134, 11, 0.15) 0%, transparent 60%),
            radial-gradient(circle at 80% 20%, rgba(205, 127, 50, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
        pointer-events: none;
        z-index: 1;
    }

    .hero-section::after {
        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="brass-texture" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(184,134,11,0.03)"/><circle cx="5" cy="5" r="0.5" fill="rgba(205,127,50,0.02)"/><circle cx="25" cy="25" r="0.5" fill="rgba(218,165,32,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23brass-texture)"/></svg>');
        pointer-events: none;
        opacity: 0.4;
        z-index: 1;
    }

    /* Premium Hero Content */
    .hero-content {
        position: relative;
        z-index: 3;
        color: var(--warm-white);
    }

    .hero-content h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(3.5rem, 8vw, 7rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 2rem;
        color: var(--warm-white);
        letter-spacing: -0.02em;
        animation: fadeInUp 1s ease-out;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .hero-content .highlight {
        background: var(--brass-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        display: inline-block;
        font-style: italic;
    }

    .hero-content .subtitle {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(1.25rem, 3vw, 1.75rem);
        font-weight: 400;
        line-height: 1.5;
        margin-bottom: 3rem;
        color: var(--light-gold);
        max-width: 650px;
        animation: fadeInUp 1s ease-out 0.2s both;
        opacity: 0.95;
    }

    .hero-buttons {
        animation: fadeInUp 1s ease-out 0.4s both;
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        align-items: center;
    }

    /* Premium Hero Visual */
    .hero-visual {
        position: relative;
        z-index: 2;
        animation: fadeInRight 1s ease-out 0.3s both;
    }

    .hero-visual img {
        max-width: 100%;
        height: auto;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-luxury);
        border: 2px solid rgba(184, 134, 11, 0.3);
        transition: var(--transition-luxury);
    }

    .hero-visual:hover img {
        transform: scale(1.02);
        box-shadow: var(--shadow-luxury), var(--glow-brass);
        border-color: var(--brass-gold);
    }

    .btn-modern {
        padding: 1rem 2.5rem;
        border-radius: var(--border-radius);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        border: none;
    }

    .btn-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .btn-modern:hover::before {
        left: 100%;
    }

    /* Premium Brass CTA Button */
    .btn-primary-modern {
        background: var(--brass-gradient);
        color: var(--rich-black);
        font-weight: 700;
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: var(--shadow-brass);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .btn-primary-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.6s ease;
    }

    .btn-primary-modern:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-gold), var(--glow-brass);
        color: var(--rich-black);
        background: var(--gold-gradient);
    }

    .btn-primary-modern:hover::before {
        left: 100%;
    }

    /* Heritage Outline Button */
    .btn-secondary-modern {
        background: transparent;
        color: var(--brass-gold);
        border: 2px solid var(--brass-gold);
        backdrop-filter: blur(10px);
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
    }

    .btn-secondary-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--brass-gradient);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .btn-secondary-modern:hover {
        color: var(--rich-black);
        border-color: var(--antique-gold);
        transform: translateY(-3px);
        box-shadow: var(--shadow-brass);
    }

    .btn-secondary-modern:hover::before {
        opacity: 1;
    }

    /* Heritage Link Button */
    .btn-link-modern {
        background: transparent;
        color: var(--light-gold);
        border: none;
        padding: 1rem 0;
        font-weight: 500;
        font-family: 'Dancing Script', cursive;
        font-size: 1.1rem;
        text-decoration: none;
        position: relative;
    }

    .btn-link-modern::after {
        content: '';
        position: absolute;
        bottom: 0.5rem;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--brass-gradient);
        transition: width 0.4s ease;
    }

    .btn-link-modern:hover {
        color: var(--brass-gold);
        text-decoration: none;
        transform: translateX(5px);
    }

    .btn-link-modern:hover::after {
        width: 100%;
    }

    /* Premium Trust Section */
    .trust-section {
        background: linear-gradient(135deg, #f8f6f0 0%, #f5f3ed 100%);
        padding: 5rem 0;
        border-top: 3px solid var(--brass-gold);
        border-bottom: 1px solid rgba(184, 134, 11, 0.2);
        position: relative;
    }

    .trust-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="trust-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(184,134,11,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23trust-pattern)"/></svg>');
        pointer-events: none;
        opacity: 0.3;
    }

    .trust-header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
        z-index: 2;
    }

    .trust-header h6 {
        font-family: 'Dancing Script', cursive;
        font-size: 1.5rem;
        color: var(--brass-gold);
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .client-logos-container {
        overflow: hidden;
        position: relative;
        z-index: 2;
    }

    .client-logos-track {
        display: flex;
        animation: scroll-logos 40s linear infinite;
        gap: 5rem;
        align-items: center;
    }

    .client-logo {
        flex-shrink: 0;
        opacity: 0.7;
        transition: all 0.4s ease;
        filter: sepia(100%) saturate(200%) hue-rotate(25deg) brightness(0.8);
    }

    .client-logo:hover {
        opacity: 1;
        filter: sepia(100%) saturate(300%) hue-rotate(25deg) brightness(1.1);
        transform: scale(1.05);
    }

    .client-logo img,
    .client-logo > div {
        height: 70px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(184, 134, 11, 0.1);
    }

    @keyframes scroll-logos {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Premium Customer Results Section */
    .results-section {
        background: var(--hero-gradient);
        color: var(--warm-white);
        padding: 8rem 0;
        position: relative;
    }

    .results-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 30% 20%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(205, 127, 50, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
        pointer-events: none;
    }

    .results-header {
        text-align: center;
        margin-bottom: 5rem;
        position: relative;
        z-index: 2;
    }

    .results-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--warm-white);
    }

    .results-header p {
        font-family: 'Poppins', sans-serif;
        font-size: 1.3rem;
        color: var(--light-gold);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .result-card {
        background: rgba(255, 255, 255, 0.08);
        border-radius: var(--border-radius-lg);
        padding: 3rem;
        text-align: center;
        backdrop-filter: blur(15px);
        border: 2px solid rgba(184, 134, 11, 0.2);
        transition: var(--transition-luxury);
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    .result-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--brass-gradient);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .result-card:hover::before {
        transform: scaleX(1);
    }

    .result-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow-luxury), var(--glow-brass);
        border-color: var(--brass-gold);
    }

    /* Optimized Customer Image Integration */
    .customer-image-container {
        position: relative;
        display: inline-block;
        margin: 0 auto;
        /* Ensure container encompasses both image and rating as unified component */
        padding-bottom: 15px; /* Space for rating badge */
        z-index: 1;
    }

    .customer-image {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid var(--brass-gold);
        box-shadow: var(--shadow-brass);
        transition: var(--transition-luxury);
        display: block;
        /* Ensure image is properly contained */
        position: relative;
        z-index: 2;
    }

    .result-card:hover .customer-image {
        transform: scale(1.05);
        box-shadow: var(--shadow-gold), var(--glow-brass);
        border-color: var(--brass-accent);
    }

    .customer-rating {
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--brass-gradient);
        padding: 0.4rem 0.9rem;
        border-radius: 25px;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--rich-black);
        box-shadow: var(--shadow-brass);
        /* Enhanced visual cohesion */
        border: 2px solid var(--brass-gold);
        white-space: nowrap;
        z-index: 3;
        /* Improved touch target for mobile */
        min-height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-luxury);
    }

    .customer-rating i {
        margin: 0 1px;
        font-size: 0.7rem;
        color: var(--rich-black);
    }

    /* Enhanced hover effects for unified component */
    .result-card:hover .customer-rating {
        background: var(--gold-gradient);
        border-color: var(--brass-accent);
        box-shadow: var(--shadow-gold), var(--glow-brass);
        transform: translateX(-50%) scale(1.05);
    }

    .result-card:hover .customer-image-container {
        transform: translateY(-2px);
    }

    .result-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--warm-white);
    }

    .result-card .service-tags {
        background: rgba(184, 134, 11, 0.2);
        color: var(--brass-gold);
        padding: 0.6rem 1.2rem;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        display: inline-block;
        border: 1px solid rgba(184, 134, 11, 0.3);
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .result-card .metric {
        font-family: 'Poppins', sans-serif;
        font-size: 1.1rem;
        color: var(--light-gold);
        line-height: 1.7;
        font-style: italic;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .result-card .metric::before {
        content: '"';
        font-size: 3rem;
        color: var(--brass-gold);
        position: absolute;
        top: -15px;
        left: -10px;
        font-family: serif;
        opacity: 0.3;
    }

    .customer-location {
        font-family: 'Poppins', sans-serif;
        font-size: 0.9rem;
        color: var(--brass-gold);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1rem;
    }

    .customer-location i {
        color: var(--antique-gold);
    }

    /* Responsive Customer Image Integration */
    @media (max-width: 767.98px) {
        .customer-image-container {
            padding-bottom: 18px; /* Slightly more space on mobile */
        }

        .customer-image {
            width: 90px;
            height: 90px;
            border-width: 3px; /* Thinner border on smaller screens */
        }

        .customer-rating {
            padding: 0.35rem 0.8rem;
            font-size: 0.7rem;
            min-height: 22px;
            border-width: 1.5px;
        }

        .customer-rating i {
            font-size: 0.65rem;
            margin: 0 0.5px;
        }

        /* Ensure touch targets remain accessible */
        .result-card:hover .customer-rating {
            transform: translateX(-50%) scale(1.03); /* Reduced scale on mobile */
        }
    }

    @media (max-width: 575.98px) {
        .customer-image-container {
            padding-bottom: 20px;
        }

        .customer-image {
            width: 80px;
            height: 80px;
            border-width: 3px;
        }

        .customer-rating {
            padding: 0.3rem 0.7rem;
            font-size: 0.65rem;
            min-height: 20px;
            bottom: -8px; /* Closer to image on very small screens */
        }

        .customer-rating i {
            font-size: 0.6rem;
        }
    }

    @media (min-width: 1200px) {
        .customer-image-container {
            padding-bottom: 12px;
        }

        .customer-image {
            width: 110px;
            height: 110px;
            border-width: 5px; /* Enhanced border on large screens */
        }

        .customer-rating {
            padding: 0.45rem 1rem;
            font-size: 0.8rem;
            min-height: 26px;
            bottom: -12px;
        }

        .customer-rating i {
            font-size: 0.75rem;
            margin: 0 1.5px;
        }

        /* Enhanced hover effects on desktop */
        .result-card:hover .customer-rating {
            transform: translateX(-50%) scale(1.08);
        }

        .result-card:hover .customer-image-container {
            transform: translateY(-3px);
        }
    }

    /* Ensure SVG fallback images maintain proper styling */
    .customer-image[src*="data:image/svg"] {
        border: 4px solid var(--brass-gold);
        background: transparent;
    }

    /* Accessibility and focus states */
    .customer-image-container:focus-within .customer-image {
        outline: 3px solid var(--brass-accent);
        outline-offset: 2px;
    }

    .customer-image-container:focus-within .customer-rating {
        background: var(--gold-gradient);
        border-color: var(--brass-accent);
        box-shadow: var(--shadow-gold);
    }

    /* Ensure rating badge doesn't interfere with image border */
    .customer-rating::before {
        content: '';
        position: absolute;
        top: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 4px solid var(--brass-gold);
        z-index: -1;
    }

    /* Enhanced visual cohesion with subtle animation */
    @keyframes ratingPulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.8; }
    }

    .customer-rating i:nth-child(1) { animation: ratingPulse 2s infinite 0.1s; }
    .customer-rating i:nth-child(2) { animation: ratingPulse 2s infinite 0.2s; }
    .customer-rating i:nth-child(3) { animation: ratingPulse 2s infinite 0.3s; }
    .customer-rating i:nth-child(4) { animation: ratingPulse 2s infinite 0.4s; }
    .customer-rating i:nth-child(5) { animation: ratingPulse 2s infinite 0.5s; }

    /* Heritage Section */
    .heritage-section {
        background: linear-gradient(135deg, #f8f6f0 0%, #f5f3ed 100%);
        padding: 8rem 0;
        position: relative;
    }

    .heritage-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 200 200"><defs><pattern id="heritage-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M30,10 Q40,20 30,30 Q20,20 30,10" fill="none" stroke="rgba(184,134,11,0.08)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23heritage-pattern)"/></svg>');
        pointer-events: none;
        opacity: 0.4;
    }

    .heritage-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .heritage-text h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 800;
        margin-bottom: 2rem;
        color: var(--rich-black);
        line-height: 1.2;
    }

    .heritage-text .highlight {
        background: var(--brass-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        font-style: italic;
    }

    .heritage-text p {
        font-family: 'Poppins', sans-serif;
        font-size: 1.2rem;
        color: #4a4a4a;
        line-height: 1.8;
        margin-bottom: 2.5rem;
    }

    .heritage-quote {
        background: white;
        padding: 2.5rem;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-luxury);
        border-left: 6px solid var(--brass-gold);
        font-family: 'Dancing Script', cursive;
        font-size: 1.3rem;
        color: var(--dark-bronze);
        line-height: 1.6;
        position: relative;
    }

    .heritage-quote::before {
        content: '"';
        font-size: 4rem;
        color: var(--brass-gold);
        position: absolute;
        top: -10px;
        left: 15px;
        font-family: serif;
    }

    .heritage-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    .stat-item {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-luxury);
        transition: var(--transition-luxury);
        border-top: 4px solid var(--brass-gold);
    }

    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-luxury), var(--glow-brass);
    }

    .stat-number {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        font-weight: 800;
        background: var(--brass-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--dark-bronze);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .heritage-visual {
        position: relative;
    }

    .heritage-visual img {
        width: 100%;
        height: auto;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-luxury);
        border: 3px solid var(--brass-gold);
        transition: var(--transition-luxury);
    }

    .heritage-visual:hover img {
        transform: scale(1.02);
        box-shadow: var(--shadow-luxury), var(--glow-brass);
    }

    /* Heritage Section Responsive Design */
    @media (max-width: 1199.98px) {
        .heritage-section {
            padding: 6rem 0;
        }

        .heritage-content {
            gap: 3rem;
        }

        .heritage-text h2 {
            font-size: 2.5rem;
        }

        .heritage-quote {
            padding: 2rem;
        }

        .heritage-stats {
            gap: 1.5rem;
        }

        .stat-item {
            padding: 1.5rem;
        }

        .stat-number {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 991.98px) {
        .heritage-section {
            padding: 5rem 0;
        }

        .heritage-content {
            grid-template-columns: 1fr;
            gap: 3rem;
            text-align: center;
        }

        .heritage-text {
            order: 1;
        }

        .heritage-visual {
            order: 2;
            max-width: 500px;
            margin: 0 auto;
        }

        .heritage-text h2 {
            font-size: 2.2rem;
        }

        .heritage-quote {
            padding: 1.8rem;
            margin: 2rem 0;
        }

        .heritage-stats {
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .stat-item {
            padding: 1.2rem;
        }

        .stat-number {
            font-size: 2.2rem;
        }

        .stat-label {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 767.98px) {
        .heritage-section {
            padding: 4rem 0;
        }

        .heritage-content {
            gap: 2rem;
        }

        .heritage-text h2 {
            font-size: 1.8rem;
            line-height: 1.3;
        }

        .heritage-text p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .heritage-quote {
            padding: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .heritage-quote::before {
            font-size: 3rem;
            top: -5px;
            left: 10px;
        }

        .heritage-stats {
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .stat-item {
            padding: 1rem;
        }

        .stat-number {
            font-size: 2rem;
        }

        .stat-label {
            font-size: 0.85rem;
        }

        .heritage-visual {
            max-width: 400px;
        }
    }

    @media (max-width: 575.98px) {
        .heritage-section {
            padding: 3rem 0;
        }

        .heritage-content {
            gap: 1.5rem;
        }

        .heritage-text h2 {
            font-size: 1.6rem;
        }

        .heritage-text p {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .heritage-quote {
            padding: 1.2rem;
            font-size: 0.9rem;
            margin: 1.5rem 0;
        }

        .heritage-quote::before {
            font-size: 2.5rem;
            top: -2px;
            left: 8px;
        }

        .heritage-stats {
            margin-top: 1rem;
        }

        .stat-item {
            padding: 0.8rem;
        }

        .stat-number {
            font-size: 1.8rem;
        }

        .stat-label {
            font-size: 0.8rem;
        }

        .heritage-visual {
            max-width: 320px;
        }
    }

    @media (max-width: 320px) {
        .heritage-section {
            padding: 2rem 0;
        }

        .heritage-text h2 {
            font-size: 1.4rem;
        }

        .heritage-text p {
            font-size: 0.9rem;
        }

        .heritage-quote {
            padding: 1rem;
            font-size: 0.85rem;
        }

        .heritage-quote::before {
            font-size: 2rem;
            top: 0;
            left: 5px;
        }

        .stat-item {
            padding: 0.6rem;
        }

        .stat-number {
            font-size: 1.6rem;
        }

        .stat-label {
            font-size: 0.75rem;
        }

        .heritage-visual {
            max-width: 280px;
        }
    }

    /* Why Choose Us Section */
    .why-choose-section {
        background: var(--hero-gradient);
        color: var(--warm-white);
        padding: 8rem 0;
        position: relative;
    }

    .why-choose-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(205, 127, 50, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
        pointer-events: none;
    }

    .why-choose-header {
        text-align: center;
        margin-bottom: 5rem;
        position: relative;
        z-index: 2;
    }

    .why-choose-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--warm-white);
    }

    .why-choose-header .highlight {
        background: var(--brass-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        font-style: italic;
    }

    .why-choose-header p {
        font-family: 'Poppins', sans-serif;
        font-size: 1.3rem;
        color: var(--light-gold);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .capabilities-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        position: relative;
        z-index: 2;
    }

    .capability-card {
        background: rgba(255, 255, 255, 0.08);
        border-radius: var(--border-radius-lg);
        padding: 2.5rem;
        text-align: center;
        backdrop-filter: blur(15px);
        border: 2px solid rgba(184, 134, 11, 0.2);
        transition: var(--transition-luxury);
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .capability-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: var(--brass-gradient);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .capability-card:hover::before {
        transform: scaleX(1);
    }

    .capability-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow-luxury), var(--glow-brass);
        border-color: var(--brass-gold);
    }

    .capability-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        background: var(--brass-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--rich-black);
        transition: var(--transition-luxury);
        box-shadow: var(--shadow-brass);
    }

    .capability-card:hover .capability-icon {
        transform: scale(1.1) rotate(10deg);
        box-shadow: var(--shadow-gold), var(--glow-brass);
    }

    .capability-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--warm-white);
    }

    .capability-card p {
        font-family: 'Poppins', sans-serif;
        color: var(--light-gold);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-size: 1rem;
        flex-grow: 1;
    }

    .capability-link {
        color: var(--brass-gold);
        text-decoration: none;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: var(--transition);
        position: relative;
    }

    .capability-link::after {
        content: '→';
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .capability-link:hover {
        color: var(--warm-white);
    }

    .capability-link:hover::after {
        transform: translateX(5px);
    }

    /* Responsive Design for New Sections */
    @media (max-width: 991.98px) {
        .partnerships-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .partnerships-text {
            text-align: center;
        }

        .partnership-stats {
            grid-template-columns: repeat(3, 1fr);
        }

        .capabilities-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .result-card {
            padding: 2rem;
        }
    }

    @media (max-width: 767.98px) {
        .hero-content h1 {
            font-size: clamp(2.5rem, 8vw, 4rem);
        }

        .hero-buttons {
            flex-direction: column;
            align-items: stretch;
        }

        .btn-modern {
            width: 100%;
            margin-bottom: 1rem;
        }

        .btn-link-modern {
            text-align: center;
        }

        .partnership-stats {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .capabilities-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .client-logos-track {
            gap: 2rem;
        }

        .client-logo img,
        .client-logo > div {
            height: 50px;
            width: 120px;
        }

        .results-header h2 {
            font-size: clamp(2rem, 6vw, 3rem);
        }

        .partnerships-text h2 {
            font-size: clamp(2rem, 6vw, 3rem);
        }

        .capabilities-header h2 {
            font-size: clamp(2rem, 6vw, 3rem);
        }
    }

    @media (max-width: 575.98px) {
        .hero-section {
            padding: 100px 0 60px;
        }

        .results-section,
        .partnerships-section,
        .capabilities-section {
            padding: 4rem 0;
        }

        .client-logos-section {
            padding: 3rem 0;
        }

        .result-card,
        .capability-card {
            padding: 1.5rem;
        }

        .testimonial {
            padding: 1.5rem;
        }
    }

    /* Animation Enhancements */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Smooth scrolling for anchor links */
    html {
        scroll-behavior: smooth;
    }

    /* Enhanced loading states */
    .loading-placeholder {
        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;
        }
    }

    .hero-image {
        animation: fadeInRight 1s ease-out 0.3s both;
    }

    .hero-image {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-image img {
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-soft);
        transition: var(--transition);
        width: 100%;
        height: auto;
        aspect-ratio: 16/10;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .hero-image:hover img {
        transform: scale(1.03);
        box-shadow: var(--shadow-hover);
    }

    .hero-placeholder {
        width: 100%;
        height: 400px;
        background: rgba(255,255,255,0.1);
        border-radius: var(--border-radius);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255,255,255,0.2);
    }

    .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .floating-element {
        position: absolute;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }

    .floating-element:nth-child(1) {
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
        top: 20%;
        right: 15%;
        animation-delay: 2s;
    }

    .floating-element:nth-child(3) {
        bottom: 30%;
        left: 5%;
        animation-delay: 4s;
    }

    .floating-element:nth-child(4) {
        bottom: 10%;
        right: 10%;
        animation-delay: 1s;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes expandWidth {
        from {
            width: 0;
        }
        to {
            width: 100%;
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0px) rotate(0deg);
        }
        50% {
            transform: translateY(-20px) rotate(180deg);
        }
    }

    /* Professional Card Base - Bootstrap Compatible */
    .card-professional {
        background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%) !important;
        border-radius: 1.5rem !important;
        box-shadow:
            0 4px 20px rgba(0, 0, 0, 0.08),
            0 1px 3px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        backdrop-filter: blur(10px);
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease-out forwards;
        min-height: 500px;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Staggered animation delays for professional effect */
    .product-card-modern:nth-child(1),
    .new-arrival-card:nth-child(1),
    .card-professional:nth-child(1) {
        animation-delay: 0.1s;
    }

    .product-card-modern:nth-child(2),
    .new-arrival-card:nth-child(2),
    .card-professional:nth-child(2) {
        animation-delay: 0.2s;
    }

    .product-card-modern:nth-child(3),
    .new-arrival-card:nth-child(3),
    .card-professional:nth-child(3) {
        animation-delay: 0.3s;
    }

    .product-card-modern:nth-child(4),
    .new-arrival-card:nth-child(4),
    .card-professional:nth-child(4) {
        animation-delay: 0.4s;
    }

    /* Professional card interaction states */
    .product-card-modern,
    .new-arrival-card,
    .card-professional {
        cursor: pointer;
        user-select: none;
    }

    .product-card-modern:active,
    .new-arrival-card:active,
    .card-professional:active {
        transform: translateY(-8px) scale(0.98) !important;
        transition: transform 0.1s ease !important;
    }

    /* Enhanced image loading states */
    .product-image,
    .arrival-image {
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .product-image.loaded,
    .arrival-image.loaded {
        opacity: 1;
    }

    /* Professional badge positioning */
    .sale-badge,
    .new-badge {
        transform: rotate(-5deg);
        transition: transform 0.3s ease;
    }

    .product-card-modern:hover .sale-badge,
    .new-arrival-card:hover .new-badge {
        transform: rotate(0deg) scale(1.05);
    }

    .card-professional::before,
    .product-card-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
        z-index: 1;
    }

    .card-professional::after,
    .product-card-modern::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 0%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .card-professional:hover::after,
    .product-card-modern:hover::after {
        opacity: 1;
    }

    .card-professional:hover,
    .product-card-modern:hover {
        transform: translateY(-15px) scale(1.03) !important;
        box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 12px 20px rgba(184, 134, 11, 0.3),
            inset 0 1px 0 rgba(255, 248, 220, 0.2) !important;
        border-color: var(--brass-gold) !important;
        z-index: 5 !important;
    }

    /* Enhanced image hover effects */
    .card-professional:hover .image-professional,
    .product-card-modern:hover .product-image {
        transform: scale(1.12) !important;
        filter: brightness(1.15) contrast(1.15) saturate(1.25) !important;
    }

    /* Smooth transition for all card elements */
    .card-professional,
    .product-card-modern,
    .new-arrival-card {
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    }

    .image-professional,
    .product-image,
    .arrival-image {
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }

    .image-wrapper-professional {
        height: 280px !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
        border-radius: 1.25rem 1.25rem 0 0 !important;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    }

    .product-image-wrapper {
        position: relative;
        width: 100%;
        height: 280px; /* Fixed height for consistency */
        overflow: hidden;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 20px 20px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .product-image-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.05) 100%
        );
        pointer-events: none;
        z-index: 2;
    }

    /* Loading shimmer effect for images */
    .product-image-wrapper.loading::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent
        );
        animation: shimmer 1.5s infinite;
        z-index: 3;
    }

    @keyframes shimmer {
        0% {
            left: -100%;
        }
        100% {
            left: 100%;
        }
    }

    .image-professional {
        object-fit: cover !important;
        object-position: center !important;
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        border-radius: 1.25rem 1.25rem 0 0 !important;
        filter: brightness(1.02) contrast(1.05) saturate(1.1) !important;
        z-index: 1;
        position: relative;
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: block;
        border-radius: 20px 20px 0 0;
        position: relative;
        z-index: 1;
        filter: brightness(1.02) contrast(1.05) saturate(1.1);
    }

    .card-professional:hover .image-professional,
    .product-card-modern:hover .product-image {
        transform: scale(1.08) !important;
        filter: brightness(1.1) contrast(1.1) saturate(1.2) !important;
    }

    /* Responsive image dimensions */
    @media (max-width: 576px) {
        .product-image-wrapper {
            height: 220px;
        }
    }

    @media (min-width: 577px) and (max-width: 768px) {
        .product-image-wrapper {
            height: 250px;
        }
    }

    @media (min-width: 769px) and (max-width: 992px) {
        .product-image-wrapper {
            height: 260px;
        }
    }

    @media (min-width: 993px) {
        .product-image-wrapper {
            height: 280px;
        }
    }

    .product-card-modern:hover .product-image {
        transform: scale(1.08);
    }

    .product-image-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        color: #6c757d;
        border-radius: 15px 15px 0 0;
    }

    .product-image-placeholder i {
        margin-bottom: 0.5rem;
        opacity: 0.5;
        font-size: 2rem;
    }

    .product-image-placeholder p {
        margin: 0;
        font-size: 0.875rem;
        opacity: 0.7;
        text-align: center;
        padding: 0 1rem;
    }

    /* Loading state for images */
    .product-image {
        transition: opacity 0.3s ease;
    }

    .product-image[loading="lazy"] {
        opacity: 0;
        animation: fadeInImage 0.5s ease forwards;
    }

    @keyframes fadeInImage {
        to {
            opacity: 1;
        }
    }

    .product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
    }

    .product-card-modern:hover .product-overlay {
        opacity: 1;
    }

    .product-actions {
        display: flex;
        gap: 0.5rem;
    }

    .sale-badge {
        position: absolute;
        top: 1.25rem;
        left: 1.25rem;
        background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
        color: white;
        padding: 0.75rem 1.25rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 800;
        z-index: 3;
        box-shadow:
            0 6px 20px rgba(229, 62, 62, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.1);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        animation: pulse-badge 2s infinite;
    }

    @keyframes pulse-badge {
        0%, 100% {
            transform: scale(1);
            box-shadow:
                0 6px 20px rgba(229, 62, 62, 0.4),
                0 2px 4px rgba(0, 0, 0, 0.1);
        }
        50% {
            transform: scale(1.05);
            box-shadow:
                0 8px 25px rgba(229, 62, 62, 0.5),
                0 4px 8px rgba(0, 0, 0, 0.15);
        }
    }

    .product-content {
        padding: 2rem 1.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        height: calc(100% - 280px); /* Subtract image height */
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(184, 134, 11, 0.2);
        position: relative;
    }

    .product-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 1.5rem;
        right: 1.5rem;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    }

    /* Ensure consistent card heights */
    .product-card-modern {
        min-height: 500px;
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.3),
            0 4px 16px rgba(184, 134, 11, 0.2),
            inset 0 1px 0 rgba(255, 248, 220, 0.1);
        border: 2px solid rgba(184, 134, 11, 0.2);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow: hidden;
        position: relative;
        backdrop-filter: blur(15px);
    }

    .product-buttons {
        margin-top: auto;
    }

    .product-category {
        color: var(--light-gold);
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        background: var(--brass-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        font-family: 'Poppins', sans-serif;
    }

    .product-category::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 30px;
        height: 2px;
        background: var(--brass-gradient);
        border-radius: 1px;
    }

    .product-title {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--warm-white);
        line-height: 1.3;
        letter-spacing: -0.025em;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        font-family: 'Playfair Display', serif;
    }

    .product-rating {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
        padding: 0.5rem 0.75rem;
        background: rgba(255, 193, 7, 0.1);
        border-radius: 12px;
        border: 1px solid rgba(255, 193, 7, 0.2);
    }

    .rating-stars {
        color: #ffc107;
        filter: drop-shadow(0 1px 2px rgba(255, 193, 7, 0.3));
        transition: all 0.3s ease;
    }

    .rating-stars:hover {
        transform: scale(1.1);
        filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.5));
    }

    .rating-stars i {
        display: inline-block;
        transition: transform 0.2s ease;
    }

    .rating-stars:hover i:nth-child(1) { animation-delay: 0.1s; }
    .rating-stars:hover i:nth-child(2) { animation-delay: 0.2s; }
    .rating-stars:hover i:nth-child(3) { animation-delay: 0.3s; }
    .rating-stars:hover i:nth-child(4) { animation-delay: 0.4s; }
    .rating-stars:hover i:nth-child(5) { animation-delay: 0.5s; }

    .rating-stars:hover i {
        animation: starPulse 0.6s ease-in-out;
    }

    @keyframes starPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.2); }
    }

    .rating-text {
        font-size: 0.875rem;
        color: #495057;
        font-weight: 500;
        margin-left: 0.25rem;
    }

    .product-price {
        margin-bottom: 1.5rem;
        display: flex;
        align-items: baseline;
        gap: 0.75rem;
    }

    .price-original {
        color: #adb5bd;
        text-decoration: line-through;
        font-size: 1rem;
        font-weight: 500;
        opacity: 0.8;
    }

    .price-sale {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        font-size: 1.4rem;
        text-shadow: 0 2px 4px rgba(231, 76, 60, 0.2);
    }

    .price-current {
        background: linear-gradient(135deg, #667eea, #764ba2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        font-size: 1.4rem;
        text-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
    }

    .btn-professional {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        border: none !important;
        color: white !important;
        font-weight: 700 !important;
        padding: 1rem 2rem !important;
        border-radius: 1rem !important;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        position: relative;
        overflow: hidden;
        box-shadow:
            0 4px 15px rgba(102, 126, 234, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.1) !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.875rem !important;
    }

    .btn-primary-gradient {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        color: white;
        font-weight: 700;
        padding: 1rem 2rem;
        border-radius: 16px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        box-shadow:
            0 4px 15px rgba(102, 126, 234, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.1);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.875rem;
    }

    .btn-primary-gradient::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.6s ease;
    }

    .btn-professional:hover,
    .btn-primary-gradient:hover {
        transform: translateY(-2px) !important;
        box-shadow:
            0 8px 25px rgba(102, 126, 234, 0.5),
            0 4px 8px rgba(0, 0, 0, 0.15) !important;
        background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
    }

    .btn-professional:hover::before,
    .btn-primary-gradient:hover::before {
        left: 100%;
    }

    .btn-professional:active,
    .btn-primary-gradient:active {
        transform: translateY(0) !important;
        box-shadow:
            0 4px 15px rgba(102, 126, 234, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.1) !important;
    }

    /* Enhanced button with icon support */
    .btn-primary-gradient i {
        margin-right: 0.5rem;
        transition: transform 0.3s ease;
    }

    .btn-primary-gradient:hover i {
        transform: translateX(2px);
    }

    /* Secondary button styling */
    .btn-outline-primary {
        background: transparent;
        border: 2px solid #667eea;
        color: #667eea;
        font-weight: 600;
        padding: 0.875rem 1.75rem;
        border-radius: 16px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.875rem;
    }

    .btn-outline-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #667eea, #764ba2);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .btn-outline-primary:hover {
        color: white;
        border-color: #667eea;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }

    .btn-outline-primary:hover::before {
        opacity: 1;
    }

    /* Professional tooltip system */
    .tooltip-wrapper {
        position: relative;
        display: inline-block;
    }

    .tooltip-content {
        position: absolute;
        bottom: 125%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(45, 55, 72, 0.95);
        color: white;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        font-size: 0.875rem;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    .tooltip-content::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: rgba(45, 55, 72, 0.95);
    }

    .tooltip-wrapper:hover .tooltip-content {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(-5px);
    }

    /* Professional Product Overlay System */
    .product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.8) 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 10;
        backdrop-filter: blur(8px);
        border-radius: 1.25rem 1.25rem 0 0;
    }

    .card-professional:hover .product-overlay,
    .product-card-modern:hover .product-overlay,
    .new-arrival-card:hover .product-overlay {
        opacity: 1;
        visibility: visible;
    }

    /* Professional Overlay Buttons */
    .overlay-actions {
        display: flex;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

    .overlay-btn {
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #667eea;
        font-size: 1.1rem;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow:
            0 4px 15px rgba(0, 0, 0, 0.2),
            0 2px 4px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }

    .overlay-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #667eea, #764ba2);
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 50%;
    }

    .overlay-btn:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow:
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 4px 8px rgba(0, 0, 0, 0.15);
        color: white;
    }

    .overlay-btn:hover::before {
        opacity: 1;
    }

    .overlay-btn i {
        position: relative;
        z-index: 1;
        transition: transform 0.3s ease;
    }

    .overlay-btn:hover i {
        transform: scale(1.1);
    }

    /* Specific button styling */
    .overlay-btn.quick-view:hover {
        color: white;
    }

    .overlay-btn.wishlist:hover {
        color: white;
    }

    .overlay-btn.wishlist.active {
        background: rgba(220, 53, 69, 0.95);
        color: white;
    }

    .overlay-btn.wishlist.active::before {
        opacity: 1;
        background: linear-gradient(135deg, #dc3545, #c82333);
    }

    /* Responsive overlay behavior */
    @media (max-width: 767.98px) {
        .product-overlay {
            opacity: 1;
            visibility: visible;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(3px);
        }

        .overlay-actions {
            gap: 0.75rem;
        }

        .overlay-btn {
            width: 3rem;
            height: 3rem;
            font-size: 1rem;
        }

        /* Reduce hover effects on mobile */
        .card-professional:hover,
        .product-card-modern:hover,
        .new-arrival-card:hover {
            transform: translateY(-5px) scale(1.01) !important;
        }
    }

    @media (min-width: 768px) {
        /* Enhanced desktop hover effects */
        .card-professional:hover,
        .product-card-modern:hover,
        .new-arrival-card:hover {
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        }
    }

    /* Accessibility enhancements */
    .overlay-btn:focus {
        outline: 3px solid rgba(102, 126, 234, 0.5);
        outline-offset: 2px;
        transform: translateY(-3px) scale(1.1);
    }

    .overlay-btn:focus-visible {
        box-shadow:
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 4px 8px rgba(0, 0, 0, 0.15),
            0 0 0 3px rgba(102, 126, 234, 0.3);
    }

    /* Tooltip for overlay buttons */
    .overlay-btn[title]:hover::after {
        content: attr(title);
        position: absolute;
        bottom: -2.5rem;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 0.5rem 0.75rem;
        border-radius: 0.5rem;
        font-size: 0.75rem;
        white-space: nowrap;
        z-index: 1000;
        pointer-events: none;
    }

    /* Professional loading skeleton */
    .card-skeleton {
        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;
        }
    }

    .skeleton-text {
        height: 1rem;
        background: #e0e0e0;
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }

    .skeleton-text.short {
        width: 60%;
    }

    .skeleton-text.medium {
        width: 80%;
    }

    .skeleton-text.long {
        width: 100%;
    }

    /* Enhanced focus states for accessibility */
    .product-card-modern:focus-within,
    .new-arrival-card:focus-within,
    .card-professional:focus-within {
        outline: 3px solid rgba(102, 126, 234, 0.5);
        outline-offset: 2px;
    }

    .btn-primary-gradient:focus-visible,
    .btn-outline-primary:focus-visible,
    .btn-professional:focus-visible {
        outline: 3px solid rgba(102, 126, 234, 0.5);
        outline-offset: 2px;
    }

    /* Bootstrap Integration Overrides */
    .card-professional.card {
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%) !important;
    }

    .card-professional .card-body {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%) !important;
        position: relative;
    }

    .card-professional .card-body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 1.5rem;
        right: 1.5rem;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    }

    /* Ensure proper stacking context */
    .card-professional {
        z-index: 1;
    }

    .card-professional:hover {
        z-index: 2;
    }

    /* Override Bootstrap button styles */
    .btn-professional.btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        border: none !important;
        color: white !important;
    }

    .btn-professional.btn:hover {
        background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
        color: white !important;
    }

    .btn-professional.btn:focus {
        background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
        color: white !important;
        box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25) !important;
    }

    /* Bootstrap Grid Integration */
    .row .col-lg-3 .card-professional,
    .row .col-md-6 .card-professional {
        width: 100%;
        margin: 0;
    }

    /* Responsive adjustments for Bootstrap grid */
    @media (max-width: 767.98px) {
        .card-professional {
            margin-bottom: 1.5rem;
        }

        .image-wrapper-professional {
            height: 220px !important;
        }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
        .image-wrapper-professional {
            height: 250px !important;
        }
    }

    @media (min-width: 992px) {
        .image-wrapper-professional {
            height: 280px !important;
        }
    }

    /* Ensure proper Bootstrap card behavior */
    .card-professional.h-100 {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .card-professional .card-body {
        flex: 1 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Enhanced overlay positioning and z-index management */
    .image-wrapper-professional {
        position: relative;
        z-index: 1;
    }

    .card-professional:hover {
        z-index: 10 !important;
    }

    .card-professional:hover .product-overlay {
        z-index: 15 !important;
    }

    /* Smooth overlay entrance animation */
    @keyframes overlayFadeIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .card-professional:hover .overlay-actions,
    .product-card-modern:hover .overlay-actions,
    .new-arrival-card:hover .overlay-actions {
        animation: overlayFadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* Button entrance stagger animation */
    .overlay-btn:nth-child(1) {
        animation-delay: 0.1s;
    }

    .overlay-btn:nth-child(2) {
        animation-delay: 0.2s;
    }

    @keyframes buttonSlideIn {
        from {
            opacity: 0;
            transform: translateY(20px) scale(0.8);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .card-professional:hover .overlay-btn,
    .product-card-modern:hover .overlay-btn,
    .new-arrival-card:hover .overlay-btn {
        animation: buttonSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    }

    /* Enhanced card shadow on hover */
    .card-professional:hover::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 1.5rem;
        box-shadow: 0 30px 60px rgba(102, 126, 234, 0.15);
        z-index: -1;
        pointer-events: none;
    }

    .btn-primary-gradient:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102,126,234,0.3);
        color: white;
    }

    .empty-state {
        padding: 3rem 2rem;
        border-radius: var(--border-radius);
        background: white;
        box-shadow: var(--shadow-soft);
    }

    /* Categories Styles */
    .category-card-modern {
        position: relative;
        height: 300px;
        border-radius: var(--border-radius);
        overflow: hidden;
        cursor: pointer;
        transition: var(--transition);
        background: white;
        box-shadow: var(--shadow-soft);
    }

    .category-card-modern:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
    }

    .category-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2rem;
        color: white;
    }

    .category-icon-wrapper {
        margin-bottom: 1.5rem;
    }

    .category-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        transition: var(--transition);
        border: 2px solid rgba(255,255,255,0.3);
    }

    .category-card-modern:hover .category-icon {
        transform: scale(1.1);
        background: rgba(255,255,255,0.3);
        border-color: rgba(255,255,255,0.5);
    }

    .category-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: white;
    }

    .category-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        opacity: 0.9;
        color: white;
    }

    .category-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: white;
        text-decoration: none;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 50px;
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }

    .category-link:hover {
        background: rgba(255,255,255,0.2);
        border-color: rgba(255,255,255,0.5);
        color: white;
        transform: translateX(5px);
    }

    .category-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        background: var(--brass-gradient);
        transition: var(--transition);
    }

    .category-card-modern:nth-child(3n+1) .category-background {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .category-card-modern:nth-child(3n+2) .category-background {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }

    .category-card-modern:nth-child(3n+3) .category-background {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    }

    .category-card-modern:hover .category-background {
        transform: scale(1.05);
    }

    /* New Arrivals Styles - Professional Design */
    .new-arrival-card {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.3),
            0 4px 16px rgba(184, 134, 11, 0.2),
            inset 0 1px 0 rgba(255, 248, 220, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow: hidden;
        border: 2px solid rgba(184, 134, 11, 0.2);
        position: relative;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        backdrop-filter: blur(15px);
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease-out forwards;
    }

    .new-arrival-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
        z-index: 1;
    }

    .new-arrival-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 0%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .new-arrival-card:hover::after {
        opacity: 1;
    }

    .new-arrival-card:hover {
        transform: translateY(-15px) scale(1.03) !important;
        box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 12px 20px rgba(184, 134, 11, 0.3),
            inset 0 1px 0 rgba(255, 248, 220, 0.2) !important;
        border-color: var(--brass-gold) !important;
        z-index: 5 !important;
    }

    .new-badge {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        padding: 0.75rem 1.25rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 800;
        z-index: 3;
        box-shadow:
            0 6px 20px rgba(16, 185, 129, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.1);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        animation: pulse-new-badge 2s infinite;
    }

    @keyframes pulse-new-badge {
        0%, 100% {
            transform: scale(1);
            box-shadow:
                0 6px 20px rgba(16, 185, 129, 0.4),
                0 2px 4px rgba(0, 0, 0, 0.1);
        }
        50% {
            transform: scale(1.05);
            box-shadow:
                0 8px 25px rgba(16, 185, 129, 0.5),
                0 4px 8px rgba(0, 0, 0, 0.15);
        }
    }

    .arrival-image-wrapper {
        position: relative;
        width: 100%;
        height: 280px; /* Fixed height for consistency */
        overflow: hidden;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 20px 20px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .arrival-image-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.05) 100%
        );
        pointer-events: none;
        z-index: 2;
    }

    /* Loading shimmer effect for arrival images */
    .arrival-image-wrapper.loading::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent
        );
        animation: shimmer 1.5s infinite;
        z-index: 3;
    }

    .arrival-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: block;
        border-radius: 20px 20px 0 0;
        position: relative;
        z-index: 1;
        filter: brightness(1.02) contrast(1.05) saturate(1.1);
    }

    /* Responsive arrival image dimensions */
    @media (max-width: 576px) {
        .arrival-image-wrapper {
            height: 220px;
        }
    }

    @media (min-width: 577px) and (max-width: 768px) {
        .arrival-image-wrapper {
            height: 250px;
        }
    }

    @media (min-width: 769px) and (max-width: 992px) {
        .arrival-image-wrapper {
            height: 260px;
        }
    }

    @media (min-width: 993px) {
        .arrival-image-wrapper {
            height: 280px;
        }
    }

    .new-arrival-card:hover .arrival-image,
    .card-professional:hover .arrival-image {
        transform: scale(1.12) !important;
        filter: brightness(1.15) contrast(1.15) saturate(1.25) !important;
    }

    .arrival-image-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        color: #6c757d;
        border-radius: 15px 15px 0 0;
    }

    .arrival-image-placeholder i {
        margin-bottom: 0.5rem;
        opacity: 0.5;
        font-size: 2rem;
    }

    .arrival-image-placeholder p {
        margin: 0;
        font-size: 0.875rem;
        opacity: 0.7;
        text-align: center;
        padding: 0 1rem;
    }

    /* Loading state for arrival images */
    .arrival-image {
        transition: opacity 0.3s ease;
    }

    .arrival-image[loading="lazy"] {
        opacity: 0;
        animation: fadeInImage 0.5s ease forwards;
    }

    .arrival-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
    }

    .new-arrival-card:hover .arrival-overlay {
        opacity: 1;
    }

    .arrival-actions {
        display: flex;
        gap: 0.5rem;
    }

    .arrival-content {
        padding: 2rem 1.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        height: calc(100% - 280px); /* Subtract image height */
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(184, 134, 11, 0.2);
        position: relative;
    }

    .arrival-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 1.5rem;
        right: 1.5rem;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    }

    /* Ensure arrival buttons are at bottom */
    .arrival-buttons {
        margin-top: auto;
    }

    .arrival-category {
        color: var(--light-gold);
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        background: var(--brass-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        font-family: 'Poppins', sans-serif;
    }

    .arrival-category::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 30px;
        height: 2px;
        background: var(--brass-gradient);
        border-radius: 1px;
    }

    .arrival-title {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--warm-white);
        line-height: 1.3;
        letter-spacing: -0.025em;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        font-family: 'Playfair Display', serif;
    }

    .arrival-price {
        margin-bottom: 1.5rem;
        display: flex;
        align-items: baseline;
        gap: 0.75rem;
    }

    .arrival-price .price-original {
        color: #adb5bd;
        text-decoration: line-through;
        font-size: 1rem;
        font-weight: 500;
        opacity: 0.8;
    }

    .arrival-price .price-sale {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        font-size: 1.4rem;
        text-shadow: 0 2px 4px rgba(231, 76, 60, 0.2);
    }

    .arrival-price .price-current {
        background: linear-gradient(135deg, #667eea, #764ba2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        font-size: 1.4rem;
        text-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
    }

    .arrival-buttons {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Newsletter Styles */
    .newsletter-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
        overflow: hidden;
    }

    .newsletter-background {
        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="newsletter-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23newsletter-pattern)"/></svg>');
    }

    .newsletter-card {
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px);
        border-radius: var(--border-radius);
        padding: 3rem;
        box-shadow: var(--shadow-hover);
        border: 1px solid rgba(255,255,255,0.2);
    }

    .newsletter-icon {
        width: 80px;
        height: 80px;
        background: var(--brass-gradient);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        margin: 0 auto;
    }

    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        line-height: 1.2;
    }

    .highlight-text {
        background: var(--text-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .newsletter-description {
        font-size: 1.1rem;
        color: #6c757d;
        line-height: 1.6;
    }

    .newsletter-benefits {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        color: #28a745;
        font-weight: 500;
    }

    .benefit-item i {
        color: #28a745;
    }

    .newsletter-form-wrapper {
        background: white;
        padding: 2rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-soft);
    }

    .newsletter-form .form-label {
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .newsletter-form .input-group-text {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        color: #6c757d;
    }

    .newsletter-form .form-control {
        border: 1px solid #e9ecef;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        transition: var(--transition);
    }

    .newsletter-form .form-control:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 0.2rem rgba(102,126,234,0.25);
    }

    .btn-newsletter {
        background: var(--brass-gradient);
        border: none;
        color: white;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: var(--border-radius);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .btn-newsletter::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .btn-newsletter:hover::before {
        left: 100%;
    }

    .btn-newsletter:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102,126,234,0.3);
        color: white;
    }

    .newsletter-privacy {
        text-align: center;
        color: #6c757d;
    }

    .newsletter-decorations {
        position: absolute;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .decoration {
        position: absolute;
        color: rgba(255,255,255,0.1);
        font-size: 2rem;
        animation: float 8s ease-in-out infinite;
    }

    .decoration-1 {
        top: 10%;
        left: 5%;
        animation-delay: 0s;
    }

    .decoration-2 {
        top: 20%;
        right: 10%;
        animation-delay: 2s;
    }

    .decoration-3 {
        bottom: 30%;
        left: 8%;
        animation-delay: 4s;
    }

    .decoration-4 {
        bottom: 15%;
        right: 5%;
        animation-delay: 6s;
    }

    /* Features Section Styles */
    .features-section {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }

    .feature-card {
        padding: 2rem 1.5rem;
        border-radius: var(--border-radius);
        background: white;
        box-shadow: var(--shadow-soft);
        transition: var(--transition);
        border: 1px solid rgba(0,0,0,0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--brass-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--rich-black);
        margin-bottom: 1.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow-brass);
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.1);
        box-shadow: var(--shadow-gold), var(--glow-brass);
        background: var(--gold-gradient);
    }

    .feature-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1rem;
    }

    .feature-description {
        color: #6c757d;
        line-height: 1.6;
        text-align: center;
        flex-grow: 1;
    }

    /* ===== MOBILE-FIRST RESPONSIVE DESIGN ===== */

    /* Base Mobile Styles (Default - Mobile First) */
    /* These styles apply to all devices and are overridden by larger breakpoints */

    .hero-section {
        min-height: 100vh;
        padding: 1rem 0;
    }

    .hero-content h1 {
        font-size: clamp(1.75rem, 5vw, 4rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: clamp(0.9rem, 2.5vw, 1.25rem);
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .btn-modern {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        margin-bottom: 0.75rem;
        min-height: 48px; /* Touch-friendly minimum */
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Product and Category Cards - Mobile */
    .product-card-modern,
    .new-arrival-card,
    .category-card-modern,
    .feature-card {
        margin-bottom: 1.5rem;
        border-radius: 20px;
    }

    /* Mobile-specific enhancements */
    .product-card-modern,
    .new-arrival-card {
        box-shadow:
            0 2px 10px rgba(0, 0, 0, 0.06),
            0 1px 2px rgba(0, 0, 0, 0.08);
    }

    .product-card-modern:hover,
    .new-arrival-card:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.12),
            0 4px 8px rgba(0, 0, 0, 0.08);
    }

    .product-image-wrapper {
        height: 220px !important;
        border-radius: 20px 20px 0 0;
    }

    .arrival-image-wrapper {
        height: 220px !important;
        border-radius: 20px 20px 0 0;
    }

    /* Ensure arrival images maintain aspect ratio on mobile */
    .arrival-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    /* Ensure images maintain aspect ratio on mobile */
    .product-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    /* Adjust card heights for mobile */
    .product-card-modern,
    .new-arrival-card {
        min-height: 420px !important;
    }

    .product-content,
    .arrival-content {
        height: calc(100% - 220px) !important; /* Subtract mobile image height */
        padding: 1rem !important;
    }

    .category-card-modern {
        height: 200px;
        margin-bottom: 1rem;
    }

    .category-content {
        padding: 1rem;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .category-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .category-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    /* Typography - Mobile */
    .display-5 {
        font-size: 1.75rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .lead {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    /* Newsletter - Mobile */
    .newsletter-card {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
        border-radius: 15px;
    }

    .newsletter-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .newsletter-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .newsletter-form-wrapper {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .newsletter-benefits {
        margin-bottom: 1.5rem;
    }

    .benefit-item {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    /* Features Section - Mobile */
    .feature-card {
        padding: 1.5rem 1rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .feature-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    /* Hide decorative elements on mobile for performance */
    .floating-elements,
    .newsletter-decorations {
        display: none;
    }

    /* Touch-friendly improvements */
    .product-overlay,
    .arrival-overlay {
        opacity: 1; /* Always visible on mobile */
        background: rgba(0,0,0,0.5);
    }

    .product-actions,
    .arrival-actions {
        gap: 1rem;
    }

    .product-actions .btn,
    .arrival-actions .btn {
        min-width: 44px;
        min-height: 44px;
        padding: 0.75rem;
    }

    /* ===== TABLET STYLES ===== */
    @media (min-width: 576px) {
        /* Small tablets and large phones */
        .hero-content h1 {
            font-size: clamp(2rem, 6vw, 3rem);
        }

        .hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
        }

        .btn-modern {
            width: auto;
            min-width: 150px;
            padding: 0.875rem 2rem;
            font-size: 0.9rem;
        }

        .hero-buttons {
            flex-direction: row;
            justify-content: center;
            gap: 1rem;
        }

        .category-card-modern {
            height: 220px;
        }

        .category-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }

        .newsletter-card {
            padding: 2rem 1.5rem;
            margin: 1rem;
        }

        .newsletter-title {
            font-size: 1.75rem;
        }

        .display-5 {
            font-size: 2rem !important;
        }
    }

    @media (min-width: 768px) {
        /* Tablets */
        .hero-section {
            min-height: 90vh;
            padding: 2rem 0;
        }

        .hero-content {
            text-align: left;
            margin-bottom: 0;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            font-size: clamp(1.1rem, 2.5vw, 1.25rem);
            margin-bottom: 2rem;
        }

        .btn-modern {
            padding: 1rem 2.5rem;
            font-size: 1rem;
        }

        .hero-buttons {
            justify-content: flex-start;
        }

        /* Image wrappers use fixed heights now - no aspect-ratio needed */

        .product-content,
        .arrival-content {
            padding: 1.25rem;
            height: calc(100% - 250px) !important; /* Adjust for tablet image height */
        }

        .product-title,
        .arrival-title {
            font-size: 1.1rem;
        }

        .category-card-modern {
            height: 250px;
        }

        .category-content {
            padding: 1.5rem;
        }

        .category-icon {
            width: 70px;
            height: 70px;
            font-size: 1.75rem;
        }

        .category-title {
            font-size: 1.35rem;
        }

        .newsletter-card {
            padding: 2.5rem 2rem;
            margin: 1.5rem;
        }

        .newsletter-title {
            font-size: 2.25rem;
        }

        .newsletter-form-wrapper {
            padding: 2rem;
        }

        .display-5 {
            font-size: 2.5rem !important;
        }

        .lead {
            font-size: 1.15rem !important;
        }

        /* Show decorative elements on larger screens */
        .floating-elements,
        .newsletter-decorations {
            display: block;
        }

        /* Hover effects for non-touch devices */
        .product-overlay,
        .arrival-overlay {
            opacity: 0;
        }

        .product-card-modern:hover .product-overlay,
        .new-arrival-card:hover .arrival-overlay {
            opacity: 1;
        }
    }

    /* ===== DESKTOP STYLES ===== */
    @media (min-width: 992px) {
        /* Desktop */
        .hero-section {
            min-height: 100vh;
            padding: 3rem 0;
        }

        .hero-content h1 {
            font-size: clamp(3rem, 5vw, 4rem);
            margin-bottom: 2rem;
        }

        .hero-content p {
            font-size: clamp(1.2rem, 2vw, 1.35rem);
            margin-bottom: 2.5rem;
        }

        .btn-modern {
            padding: 1rem 2.5rem;
            font-size: 1rem;
        }

        /* Image wrappers use fixed heights now - no aspect-ratio needed */

        .product-content,
        .arrival-content {
            padding: 1.5rem;
            height: calc(100% - 280px) !important; /* Adjust for desktop image height */
        }

        .product-title,
        .arrival-title {
            font-size: 1.2rem;
        }

        .category-card-modern {
            height: 280px;
        }

        .category-content {
            padding: 2rem;
        }

        .category-icon {
            width: 80px;
            height: 80px;
            font-size: 2rem;
        }

        .category-title {
            font-size: 1.5rem;
        }

        .newsletter-card {
            padding: 3rem 2.5rem;
            margin: 2rem;
        }

        .newsletter-title {
            font-size: 2.5rem;
        }

        .newsletter-form-wrapper {
            padding: 2.5rem;
        }

        .feature-card {
            padding: 2rem 1.5rem;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            font-size: 2rem;
        }

        .feature-title {
            font-size: 1.25rem;
        }

        .display-5 {
            font-size: 3rem !important;
        }

        .lead {
            font-size: 1.25rem !important;
        }

        /* Enhanced hover effects for desktop */
        .product-card-modern:hover,
        .new-arrival-card:hover,
        .category-card-modern:hover,
        .feature-card:hover {
            transform: translateY(-10px);
        }

        .category-card-modern:hover .category-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* Desktop specific adjustments */
        .product-card-modern,
        .new-arrival-card {
            min-height: 520px !important;
        }

        .product-content,
        .arrival-content {
            height: calc(100% - 280px) !important;
            padding: 1.5rem !important;
        }

        .product-image-wrapper,
        .arrival-image-wrapper {
            height: 280px !important;
        }
    }

    /* ===== LARGE DESKTOP STYLES ===== */
    @media (min-width: 1200px) {
        /* Large Desktop */
        .container {
            max-width: 1140px;
        }

        .hero-content h1 {
            font-size: clamp(3.5rem, 5vw, 4.5rem);
        }

        .hero-content p {
            font-size: 1.4rem;
        }

        /* Image wrappers use fixed heights now - no aspect-ratio needed */

        .category-card-modern {
            height: 320px;
        }

        .newsletter-card {
            padding: 4rem 3rem;
        }

        .newsletter-title {
            font-size: 3rem;
        }

        .display-5 {
            font-size: 3.5rem !important;
        }
    }

    @media (min-width: 1400px) {
        /* Extra Large Desktop */
        .container {
            max-width: 1320px;
        }

        .hero-content h1 {
            font-size: 4.5rem;
        }

        .hero-content p {
            font-size: 1.5rem;
        }

        .category-card-modern {
            height: 350px;
        }

        .newsletter-card {
            padding: 4rem 3.5rem;
        }

        .display-5 {
            font-size: 4rem !important;
        }
    }

    /* ===== PERFORMANCE OPTIMIZATIONS ===== */

    /* Reduce animations on low-end devices */
    @media (max-width: 768px) and (max-resolution: 150dpi) {
        .product-card-modern,
        .new-arrival-card,
        .category-card-modern,
        .feature-card {
            transition: none;
        }

        .product-image,
        .arrival-image {
            transition: none;
        }

        .floating-elements,
        .newsletter-decorations {
            display: none !important;
        }
    }

    /* High DPI displays */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .product-image,
        .arrival-image {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
    }

    /* Landscape orientation adjustments */
    @media (max-width: 768px) and (orientation: landscape) {
        .hero-section {
            min-height: 70vh;
            padding: 1rem 0;
        }

        .hero-content h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .category-card-modern {
            height: 180px;
        }

        .newsletter-card {
            padding: 1.5rem 1rem;
        }
    }

    /* Touch device optimizations */
    @media (hover: none) and (pointer: coarse) {
        /* Touch devices */
        .product-overlay,
        .arrival-overlay {
            opacity: 1;
            background: rgba(0,0,0,0.4);
        }

        .product-actions .btn,
        .arrival-actions .btn {
            min-width: 48px;
            min-height: 48px;
            font-size: 1.1rem;
        }

        .btn-modern {
            min-height: 48px;
            font-size: 1rem;
        }

        .category-link {
            min-height: 48px;
            padding: 1rem 1.5rem;
            font-size: 1rem;
        }

        /* Larger touch targets */
        .newsletter-form .form-control {
            min-height: 48px;
            font-size: 16px; /* Prevents zoom on iOS */
        }

        .btn-newsletter {
            min-height: 48px;
            font-size: 1rem;
        }
    }

    /* Reduced motion preferences */
    @media (prefers-reduced-motion: reduce) {
        .product-card-modern,
        .new-arrival-card,
        .category-card-modern,
        .feature-card,
        .product-image,
        .arrival-image,
        .floating-element,
        .decoration {
            transition: none !important;
            animation: none !important;
        }

        .hero-image:hover img,
        .product-card-modern:hover .product-image,
        .new-arrival-card:hover .arrival-image {
            transform: none !important;
        }
    }

    /* Print optimizations */
    @media print {
        .hero-section {
            min-height: auto !important;
            padding: 1rem 0 !important;
            background: white !important;
            color: black !important;
        }

        .floating-elements,
        .newsletter-decorations,
        .product-overlay,
        .arrival-overlay,
        .newsletter-section {
            display: none !important;
        }

        .product-card-modern,
        .new-arrival-card,
        .category-card-modern {
            box-shadow: none !important;
            border: 1px solid #ddd !important;
            break-inside: avoid;
        }

        .btn {
            display: none !important;
        }

        .hero-content h1,
        .display-5 {
            color: black !important;
            font-size: 2rem !important;
        }

        .product-title,
        .arrival-title,
        .category-title {
            color: black !important;
        }
    }

    /* Large Desktop Styles */
    @media (min-width: 1400px) {
        .container {
            max-width: 1320px;
        }

        .hero-content h1 {
            font-size: 4.5rem;
        }

        .hero-content p {
            font-size: 1.35rem;
        }

        /* Image wrappers use fixed heights now - no aspect-ratio needed */

        .category-card-modern {
            height: 350px;
        }

        .newsletter-card {
            padding: 4rem;
        }
    }

    /* Accessibility Improvements */
    .btn:focus,
    .form-control:focus,
    .category-link:focus {
        outline: 2px solid #667eea;
        outline-offset: 2px;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    /* High contrast mode support */
    @media (prefers-contrast: high) {
        .product-card-modern,
        .new-arrival-card,
        .category-card-modern,
        .newsletter-card {
            border: 2px solid #000;
        }

        .btn-primary-gradient,
        .btn-newsletter {
            background: #000 !important;
            color: #fff !important;
        }

        .product-title,
        .arrival-title {
            color: #000 !important;
        }
    }

    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
        .product-card-modern,
        .new-arrival-card {
            background: linear-gradient(145deg, #2d3748 0%, #1a202c 100%);
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow:
                0 4px 20px rgba(0, 0, 0, 0.3),
                0 1px 3px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .product-content,
        .arrival-content {
            background: linear-gradient(180deg, rgba(45, 55, 72, 0.95) 0%, rgba(26, 32, 44, 0.95) 100%);
        }

        .product-title,
        .arrival-title {
            color: #000;
        }

        .product-category,
        .arrival-category {
            color: #a0aec0;
        }

        .rating-text {
            color: #cbd5e0;
        }

        .product-image-wrapper,
        .arrival-image-wrapper {
            background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
        }
    }

    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        .floating-element,
        .decoration {
            animation: none !important;
        }
    }

    /* Performance optimizations */
    .product-image,
    .arrival-image {
        will-change: transform;
        backface-visibility: hidden;
        transform: translateZ(0); /* Force hardware acceleration */
    }

    .product-card-modern,
    .new-arrival-card,
    .category-card-modern {
        will-change: transform;
        backface-visibility: hidden;
        transform: translateZ(0); /* Force hardware acceleration */
    }

    /* Responsive image optimizations */
    @media (max-width: 768px) {
        .product-image,
        .arrival-image {
            will-change: auto; /* Reduce GPU usage on mobile */
            image-rendering: auto;
        }

        .product-card-modern,
        .new-arrival-card,
        .category-card-modern {
            will-change: auto; /* Reduce GPU usage on mobile */
        }
    }

    /* Container max-widths for better responsive behavior */
    @media (min-width: 576px) {
        .container {
            max-width: 540px;
        }
    }

    @media (min-width: 768px) {
        .container {
            max-width: 720px;
        }
    }

    @media (min-width: 992px) {
        .container {
            max-width: 960px;
        }
    }

    @media (min-width: 1200px) {
        .container {
            max-width: 1140px;
        }
    }

    @media (min-width: 1400px) {
        .container {
            max-width: 1320px;
        }
    }

    /* Section Spacing Improvements */
    section {
        position: relative;
        z-index: 1;
    }

    /* Brass-themed section backgrounds */
    .featured-products,
    .new-arrivals {
        background: var(--hero-gradient);
        position: relative;
        overflow: hidden;
        padding: 6rem 0;
    }

    .featured-products::before,
    .new-arrivals::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(205, 127, 50, 0.1) 0%, transparent 50%);
        z-index: 1;
    }

    .featured-products .container,
    .new-arrivals .container {
        position: relative;
        z-index: 2;
    }

    .categories-section,
    .features-section {
        padding: 5rem 0;
    }

    .newsletter-section {
        padding: 6rem 0;
    }

    /* Improved spacing between elements */
    .product-card-modern,
    .new-arrival-card,
    .category-card-modern,
    .feature-card {
        margin-bottom: 2rem;
    }

    /* Brass-themed section headers */
    .featured-products .display-5,
    .new-arrivals .display-5 {
        font-family: 'Playfair Display', serif;
        color: var(--warm-white);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .featured-products .lead,
    .new-arrivals .lead {
        color: var(--light-gold);
        line-height: 1.6;
        margin-bottom: 3rem;
        font-family: 'Poppins', sans-serif;
    }

    .featured-products .badge,
    .new-arrivals .badge {
        background: var(--brass-gradient) !important;
        color: var(--rich-black) !important;
        font-weight: 600;
        border: 2px solid rgba(184, 134, 11, 0.3);
        box-shadow: var(--shadow-brass);
    }

    /* Brass-themed buttons for sections */
    .featured-products .btn,
    .new-arrivals .btn {
        background: var(--brass-gradient);
        border: 2px solid var(--brass-gold);
        color: var(--rich-black);
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-brass);
    }

    .featured-products .btn:hover,
    .new-arrivals .btn:hover {
        background: var(--gold-gradient);
        border-color: var(--brass-accent);
        color: var(--rich-black);
        transform: translateY(-2px);
        box-shadow: var(--shadow-gold), var(--glow-brass);
    }

    /* Better visual hierarchy */
    .display-5 {
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .lead {
        line-height: 1.6;
        margin-bottom: 3rem;
    }

    /* Print styles */
    @media print {
        .floating-elements,
        .newsletter-decorations,
        .btn,
        .newsletter-section {
            display: none !important;
        }

        .hero-section {
            background: #fff !important;
            color: #000 !important;
        }

        .product-card-modern,
        .new-arrival-card,
        .category-card-modern {
            box-shadow: none !important;
            border: 1px solid #ccc !important;
        }
    }