/* ===== ENHANCED CUSTOMER HOME STYLES ===== */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f1c3f;
    --secondary-color: #c9a96e;
    --primary-dark: #0a142c;
    --primary-light: #2a3a6b;
    --accent-color: #ff6b6b;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #d4af37);
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #ff8e8e);
    --gradient-hero: linear-gradient(135deg, #0f1c3f 0%, #1a2d5f 50%, #2a3a6b 100%);
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --box-shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --box-shadow-xxl: 0 30px 60px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
    --font-primary: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-accent: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Base Typography */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    background-color: var(--white);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    font-weight: 800;
}
h2 { 
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 700;
}
h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem); 
    font-weight: 600;
}
h4 { 
    font-size: clamp(1.25rem, 2.5vw, 1.75rem); 
    font-weight: 600;
}
h5 { 
    font-size: clamp(1.1rem, 2vw, 1.5rem); 
    font-weight: 500;
}
h6 { 
    font-size: clamp(1rem, 1.8vw, 1.25rem); 
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    line-height: 1.7;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-logo {
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    margin-bottom: 2rem;
    border-radius: 25px;
    box-shadow: var(--box-shadow-xl);
    object-fit: contain;
    animation: pulse 2s infinite;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

/* Enhanced Navigation */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
}

.navbar-brand-custom {
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--primary-color) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.02em;
}

.navbar-brand-custom img {
    height: clamp(40px, 8vw, 55px);
    border-radius: 12px;
    transition: var(--transition);
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(15, 28, 63, 0.2);
}

.navbar-brand-custom:hover img {
    transform: scale(1.1) rotate(5deg);
}

.navbar-toggler-custom {
    border: none;
    background: transparent;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    border-radius: 8px;
}

.navbar-toggler-custom:hover {
    color: var(--secondary-color);
    background: rgba(15, 28, 63, 0.05);
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link-custom {
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    border-radius: 25px;
    transition: var(--transition);
    color: var(--primary-color) !important;
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
    position: relative;
    overflow: hidden;
}

.nav-link-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
    border-radius: 25px;
}

.nav-link-custom:hover::before,
.nav-link-custom:focus::before {
    left: 0;
}

.nav-link-custom:hover,
.nav-link-custom:focus {
    color: var(--white) !important;
    transform: translateY(-2px);
}

.navbar-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-staff-login,
.btn-primary-order {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    white-space: nowrap;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-staff-login {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-staff-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.btn-staff-login:hover::before {
    left: 0;
}

.btn-staff-login:hover {
    color: var(--white);
    transform: translateY(-2px);
    border-color: transparent;
}

.btn-primary-order {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.btn-primary-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.5);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 28, 63, 0.9) 0%, rgba(42, 58, 107, 0.7) 100%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 15px rgba(201, 169, 110, 0.4);
    animation: pulse 2s infinite;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-primary);
}

.hero-logo {
    width: clamp(100px, 20vw, 180px);
    height: clamp(100px, 20vw, 180px);
    border-radius: 30px;
    margin-bottom: 2.5rem;
    box-shadow: var(--box-shadow-xxl);
    border: 3px solid rgba(255, 255, 255, 0.2);
    object-fit: contain;
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
}

.hero-title {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), #f0f0f0, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.hero-title:hover .highlight::after {
    transform: scaleX(1);
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-family: var(--font-primary);
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Enhanced CTA Buttons */
.hero-cta {
    margin: 2.5rem 0;
}

.btn-hero-primary {
    background: var(--gradient-secondary);
    border: none;
    padding: clamp(1rem, 2vw, 1.2rem) clamp(1.75rem, 4vw, 3rem);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero-primary::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: var(--transition-slow);
    z-index: -1;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.6);
    color: var(--white);
}

.cta-subtext {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

/* Enhanced Trust Indicators */
.trust-indicators {
    margin-top: 3.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 500;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.trust-item i {
    font-size: 1.2em;
    color: var(--secondary-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: var(--transition);
    opacity: 1;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Section Common Styles */
.section-title {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Promotions Section */
.promotions-section {
    padding: 6rem 0;
    background: var(--gray-100);
    position: relative;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%230f1c3f" opacity="0.02"><polygon points="0,0 1000,50 1000,100 0,100"/></svg>');
    background-size: cover;
}

.promo-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(15, 28, 63, 0.1);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.promo-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--danger-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.promo-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-family: var(--font-secondary);
    font-weight: 700;
}

.promo-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-family: var(--font-primary);
}

.promo-timer {
    background: var(--warning-color);
    color: var(--dark-color);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-family: var(--font-primary);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.btn-promo {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    width: 100%;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-promo::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: var(--transition-slow);
    z-index: -1;
}

.btn-promo:hover::before {
    left: 100%;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 28, 63, 0.3);
    color: var(--white);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23c9a96e" opacity="0.02"><polygon points="0,100 1000,50 1000,0 0,0"/></svg>');
    background-size: cover;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 28, 63, 0.03), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(15, 28, 63, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--gradient-secondary);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-family: var(--font-secondary);
    font-weight: 700;
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.feature-stats {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--primary-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-family: var(--font-primary);
    display: inline-block;
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: var(--gray-100);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%230f1c3f" opacity="0.02"><polygon points="0,0 1000,50 1000,100 0,100"/></svg>');
    background-size: cover;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--danger-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 600;
    z-index: 2;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.btn-quick-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-family: var(--font-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image:hover .btn-quick-view {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.product-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-family: var(--font-secondary);
    font-weight: 700;
}

.product-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    flex-grow: 1;
    font-family: var(--font-primary);
    line-height: 1.6;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-family: var(--font-primary);
}

.product-rating i {
    color: var(--warning-color);
}

.product-rating span {
    color: var(--gray-600);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.current-price {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.original-price {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--gray-500);
    text-decoration: line-through;
    font-family: var(--font-primary);
}

.btn-add-to-cart {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-top: auto;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-add-to-cart::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: var(--transition-slow);
    z-index: -1;
}

.btn-add-to-cart:hover::before {
    left: 100%;
}

.btn-add-to-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 28, 63, 0.3);
}

.no-products {
    text-align: center;
    padding: 4rem;
    color: var(--gray-600);
}

.no-products i {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-size: 4rem;
}

.no-products h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    font-weight: 700;
}

.no-products p {
    margin-bottom: 2rem;
    font-family: var(--font-primary);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23c9a96e" opacity="0.02"><polygon points="0,100 1000,50 1000,0 0,0"/></svg>');
    background-size: cover;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    font-size: 8rem;
    color: var(--secondary-color);
    position: absolute;
    top: -1rem;
    left: 1rem;
    opacity: 0.1;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.stars {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.testimonial-card p {
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-family: var(--font-primary);
    line-height: 1.7;
}

.customer {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
}

.customer strong {
    color: var(--primary-color);
    display: block;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-family: var(--font-secondary);
    font-weight: 600;
}

.customer span {
    color: var(--gray-600);
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    font-family: var(--font-primary);
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.final-cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: var(--font-accent);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-family: var(--font-primary);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-section .btn {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
}

.final-cta-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
    z-index: -1;
}

.final-cta-section .btn:hover::before {
    left: 100%;
}

.final-cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.6);
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23c9a96e" opacity="0.02"><polygon points="0,0 1000,50 1000,100 0,100"/></svg>');
    background-size: cover;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-text {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-family: var(--font-primary);
    line-height: 1.7;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 169, 110, 0.4);
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-family: var(--font-secondary);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 1px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-family: var(--font-primary);
    display: block;
    padding: 0.25rem 0;
}

.footer ul li a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.contact-info p {
    color: var(--gray-400);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-family: var(--font-primary);
    line-height: 1.6;
}

.contact-info i {
    color: var(--secondary-color);
    width: 20px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    margin-top: 3rem;
    color: var(--gray-400);
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    font-family: var(--font-primary);
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Floating Action Button */
.floating-action {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.fab-button {
    width: 65px;
    height: 65px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--box-shadow-lg);
    transition: var(--transition);
    position: relative;
    font-size: 1.3rem;
}

.fab-button:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.5);
}

.fab-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: var(--white);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-primary);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

/* Alert Notifications */
.alert-notification {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    animation: slideInRight 0.3s ease-out;
    font-family: var(--font-primary);
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
}

.alert-notification .btn-close {
    padding: 0.5rem;
    font-size: 0.8rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 575.98px) {
    .hero-section {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .navbar-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    
    .navbar-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .floating-action {
        bottom: 1rem;
        right: 1rem;
    }
    
    .fab-button {
        width: 55px;
        height: 55px;
    }
    
    .trust-indicators .row {
        gap: 0.5rem;
    }
    
    .trust-item {
        padding: 1rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .feature-card,
    .testimonial-card,
    .promo-card {
        padding: 2rem 1.5rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-collapse {
        background: var(--white);
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow-lg);
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-link-custom {
        justify-content: center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .product-image {
        height: 180px;
    }
}

@media (max-width: 991.98px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .navbar-nav {
        margin: 1rem 0;
    }
}

@media (max-width: 1199.98px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Additional Utility Classes */
.text-gradient {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.shadow-custom {
    box-shadow: var(--box-shadow);
}

.shadow-custom-lg {
    box-shadow: var(--box-shadow-lg);
}

.shadow-custom-xl {
    box-shadow: var(--box-shadow-xl);
}

.rounded-custom {
    border-radius: var(--border-radius);
}

.rounded-custom-lg {
    border-radius: var(--border-radius-lg);
}

.rounded-custom-xl {
    border-radius: var(--border-radius-xl);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.bounce-in {
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-action,
    .hero-cta,
    .scroll-indicator,
    .btn {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-title,
    .hero-subtitle {
        color: black !important;
        background: none !important;
        -webkit-text-fill-color: black !important;
    }
}

/* 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;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #000000;
        --gray-400: #000000;
        --gray-600: #000000;
    }
    
    .box-shadow,
    .box-shadow-lg,
    .box-shadow-xl {
        box-shadow: 0 0 0 2px currentColor !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover,
    .feature-card:hover,
    .testimonial-card:hover,
    .promo-card:hover {
        transform: none;
    }
    
    .btn-quick-view {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    
    .nav-link-custom:hover {
        transform: none;
    }
}

/* Landscape Mobile Optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 6rem 0 2rem;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-stats {
        margin: 1.5rem 0;
    }
    
    .trust-indicators {
        margin-top: 1.5rem;
    }
}