/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #e91e63;
    --primary-gradient: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    --secondary-color: #9c27b0;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --text-gradient: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    --header-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --footer-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    
    /* Font families */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    
    /* Design System - Spacing Scale */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    
    /* Design System - Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Design System - Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    
    /* Design System - Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Glass-morphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(20px);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--dark-color);
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: 0.3px;
    scroll-behavior: smooth;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Body text refinements */
p {
    font-weight: 400;
    line-height: 1.7;
    color: #555;
}

.lead {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
}

/* Buttons with accent font */
.btn {
    font-family: var(--font-accent);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 0.75rem 1.75rem;
    transition: all var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 44px; /* Touch-friendly */
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width var(--transition-slow), height var(--transition-slow);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
    transform: translateY(-2px);
}

/* ==========================
   MODERN DESIGN UTILITIES
   ========================== */

/* Glass-morphism Effects */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-dark {
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Fade-in Animations on Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation delays */
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* Parallax Effect */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Skeleton Loaders */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.skeleton-title {
    height: 24px;
    margin-bottom: 12px;
    border-radius: 4px;
    width: 70%;
}

.skeleton-img {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-md);
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Gradient Overlays */
.gradient-overlay {
    position: relative;
    overflow: hidden;
}

.gradient-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8) 0%, rgba(156, 39, 176, 0.8) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.gradient-overlay:hover::before {
    opacity: 1;
}

.gradient-overlay-content {
    position: relative;
    z-index: 2;
}

/* Floating Animation */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Ripple Effect */
@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Image Zoom on Hover */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform var(--transition-slow);
}

.img-zoom:hover img {
    transform: scale(1.1);
}

/* Modern Card Styles */
.modern-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Gradient Text */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(233, 30, 99, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Focus States */
*:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

/* Navigation */
.nav-link,
.nav-link-clean,
.nav-link-mobile {
    font-family: var(--font-accent);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Brand name */
.navbar-brand-clean h3,
.brand-text h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 1px;
}

/* Badges */
.badge {
    font-family: var(--font-accent);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* Product cards */
.card-title {
    font-family: var(--font-body);
    font-weight: 600;
    color: #2d2d2d;
}

.card-text {
    font-weight: 400;
    color: #666;
}

/* Price styling */
.price,
.h5 {
    font-family: var(--font-accent);
    font-weight: 700;
}

/* Footer headings */
.footer-heading {
    font-family: var(--font-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Forms */
input, textarea, select {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
}

::placeholder {
    font-weight: 300;
    color: #aaa;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-brand {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #c2185b;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12) !important;
}

.hover-scale {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Header Styles */
.top-bar {
    font-size: 0.875rem;
}

.main-header {
    border-bottom: 1px solid #dee2e6;
}

.navbar-brand h3 {
    font-weight: 700;
}

.search-form .form-control {
    border-right: none;
}

.search-form .btn {
    border-left: none;
}

/* Product Card */
.product-card {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    border: none !important;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl) !important;
}

.product-card img {
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-card .card-body {
    padding: 1.25rem;
    background: white;
}

.product-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    transition: color var(--transition-base);
}

.product-card:hover .card-title {
    color: var(--primary-color);
}

.product-card .badge {
    z-index: 10;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.product-card .price-wrapper {
    flex-grow: 1;
}

.product-card .price-wrapper .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    box-shadow: none;
}

.product-card .btn {
    transition: all var(--transition-base);
}

.product-card .btn:hover {
    transform: scale(1.1);
}

.z-index-1 {
    z-index: 1;
}

.rating {
    font-size: 0.875rem;
}

/* Category Card */
.category-card {
    transition: all var(--transition-base);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.category-card img {
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Modern Form Inputs */
.form-control,
.form-select {
    border-radius: var(--radius-md);
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all var(--transition-base);
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

/* Floating Label Effect */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
}

/* Card Improvements */
.card {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
    padding: 1.25rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: white;
    top: -200px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: white;
    bottom: -100px;
    left: -100px;
    animation: float 15s infinite ease-in-out reverse;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: white;
    top: 50%;
    left: 30%;
    animation: float 25s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.hero-title {
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-main-image {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    max-height: 600px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    animation: floatCard 3s infinite ease-in-out;
    z-index: 10;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 30%;
    left: -50px;
    animation-delay: 1s;
}

.floating-card-3 {
    top: 50%;
    right: -30px;
    animation-delay: 2s;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: white;
}

/* Modern Category Cards */
.category-card-modern {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    background: white;
}

.category-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
}

.category-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card-modern:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

/* Feature Box Modern */
.feature-box-modern {
    transition: all 0.3s ease;
    border: none;
}

.feature-box-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-box-modern:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Newsletter Section - Modern & Executive */
.newsletter-section-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
}

.newsletter-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.newsletter-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
    animation: float 3s ease-in-out infinite;
}

.newsletter-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.newsletter-subheading {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.newsletter-form-modern {
    max-width: 100%;
}

.newsletter-input-wrapper {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.newsletter-input-wrapper:hover {
    box-shadow: 0 25px 70px rgba(233, 30, 99, 0.2);
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.newsletter-input-icon {
    position: absolute;
    left: 25px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    z-index: 2;
}

.newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    color: white;
    padding: 10px 12px 10px 40px;
    font-size: 0.85rem;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-submit-btn {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.3);
}

.newsletter-submit-btn:hover {
    background: linear-gradient(135deg, #c2185b 0%, #ad1457 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.4);
}

.newsletter-submit-btn:active {
    transform: translateY(0);
}

.newsletter-submit-btn .btn-icon {
    transition: transform 0.3s ease;
}

.newsletter-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.newsletter-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-stats {
    color: rgba(255, 255, 255, 0.9);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-accent);
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
}

/* Responsive Newsletter */
@media (max-width: 768px) {
    .newsletter-heading {
        font-size: 1.2rem;
    }
    
    .newsletter-subheading {
        font-size: 0.8rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .newsletter-input {
        width: 100%;
        text-align: center;
        padding: 10px 15px;
    }
    
    .newsletter-input-icon {
        display: none;
    }
    
    .newsletter-submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .trust-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
}

/* Old Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    position: relative;
}

.newsletter-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%239c27b0" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.5;
}

.newsletter-form .form-control {
    border: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

/* Features Section */
.feature-box {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* Footer */
.footer {
    margin-top: auto;
}

.footer h5, .footer h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.social-links a {
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Cart Badge */
.badge {
    font-size: 0.75rem;
}

/* Alerts */
.alert {
    border-radius: 0.375rem;
}

/* Tables */
.table img {
    border-radius: 0.25rem;
}

/* Product Detail */
.product-image-container img {
    max-height: 600px;
    object-fit: contain;
}

.product-meta p {
    margin-bottom: 0.5rem;
}

/* Checkout */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .hero-section-new {
        min-height: 60vh;
    }
    
    .hero-content-wrapper {
        padding: 50px 0 40px;
        min-height: 60vh;
    }
    
    .hero-main-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-buttons .btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
    
    .hero-feature-icon-size {
        font-size: 1.5rem;
    }
    
    .hero-features h6 {
        font-size: 0.85rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-shape {
        width: 200px !important;
        height: 200px !important;
    }
    
    .hero-section-new {
        min-height: auto;
    }
    
    .hero-content-wrapper {
        padding: 40px 0 35px;
        min-height: auto;
    }
    
    .hero-main-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-description br {
        display: none;
    }
    
    .hero-buttons .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .hero-features {
        margin-top: 1rem !important;
    }
    
    .hero-feature-icon-size {
        font-size: 1.3rem;
    }
    
    .hero-features h6 {
        font-size: 0.75rem;
    }
    
    .hero-star,
    .hero-lipstick,
    .hero-makeup {
        font-size: 2rem;
    }
    
    .hero-circle-1 {
        width: 200px;
        height: 200px;
    }
    
    .hero-circle-2 {
        width: 150px;
        height: 150px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .hero-section-new {
        min-height: auto;
    }
    
    .hero-content-wrapper {
        padding: 30px 0 30px;
    }
    
    .hero-main-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        gap: 0.5rem !important;
    }
    
    .hero-buttons .btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .hero-feature-icon-size {
        font-size: 1.1rem;
    }
    
    .hero-features h6 {
        font-size: 0.7rem;
    }
    
    .badge {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem !important;
    }
}

/* New Hero Section Design - Matching Screenshot */
.hero-section-new {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    min-height: 65vh;
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    padding: 60px 0 50px;
    min-height: 65vh;
    display: flex;
    align-items: center;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-star {
    position: absolute;
    font-size: 3rem;
    animation: twinkle 3s infinite ease-in-out;
}

.hero-star-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hero-star-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: 10%;
    animation: float 20s infinite ease-in-out;
}

.hero-circle-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 5%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 25s infinite ease-in-out reverse;
}

.hero-lipstick {
    position: absolute;
    font-size: 3rem;
    bottom: 20%;
    right: 8%;
    animation: float 15s infinite ease-in-out;
    transform: rotate(15deg);
}

.hero-makeup {
    position: absolute;
    font-size: 2.5rem;
    bottom: 30%;
    left: 8%;
    animation: float 18s infinite ease-in-out;
    animation-delay: 2s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero-black-text {
    color: #1a1a1a;
    display: inline-block;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #ffc0cb 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    color: #f8bbd0;
}

.hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 650px;
    font-size: 1rem;
    line-height: 1.6;
}

.hero-buttons .btn {
    padding: 12px 35px;
    font-size: 0.95rem;
}

.hero-feature-icon-size {
    font-size: 1.8rem;
}

.hero-features h6 {
    font-size: 0.9rem;
}

.btn-hero-primary {
    background: white;
    color: #e91e63;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: #f8f9fa;
    color: #c2185b;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.hero-feature {
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
}

.hero-feature-icon {
    opacity: 0.9;
}
    
    .floating-card {
        display: none;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .product-card img {
        height: 200px;
    }
    
    .category-image-wrapper {
        height: 200px;
    }
    
    .top-bar .col-md-6:last-child {
        text-align: start !important;
        margin-top: 0.5rem;
    }
    
    .display-3 {
        font-size: 2.5rem !important;
    }
    
    .display-5 {
        font-size: 2rem !important;
    }


/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Card Hover Effects */
.card {
    transition: box-shadow 0.3s ease;
}

/* ============================
   HEADER STYLES
   ============================ */

/* Promotional Banner */
.promo-banner {
    font-size: 0.9rem;
    background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 100%);
}

.promo-banner a {
    transition: all 0.3s ease;
}

.promo-banner a:hover {
    color: #ffc107 !important;
}

/* Main Header */
.header {
    position: relative;
    z-index: 1020;
}

.main-header {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* Logo Styles */
.navbar-brand-clean {
    text-decoration: none;
    display: inline-block;
}

.navbar-brand-clean .logo-img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-brand-clean:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(214, 51, 132, 0.3));
}

/* Legacy text logo support */
.navbar-brand-clean h3 {
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.navbar-brand-clean:hover h3 {
    transform: scale(1.05);
}

/* Clean Search Form */
.search-form-clean .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.search-form-clean .form-control {
    padding: 12px 20px;
    font-size: 0.95rem;
}

.search-form-clean .form-control:focus {
    box-shadow: none;
    background-color: #f8f9fa !important;
}

.search-form-clean .btn-primary {
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
}

/* Navigation Links */
.nav-link-clean {
    text-decoration: none;
    color: #495057;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-clean:hover {
    color: var(--primary-color);
}

.nav-link-clean::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-link-clean:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.nav-link-mobile {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.nav-link-mobile:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
}

/* Cart Badge */
.badge {
    font-size: 0.65rem;
}

/* ============================
   MOBILE HEADER STYLES
   ============================ */

/* Mobile Header Container */
.mobile-header-top {
    padding: 1rem 1rem !important;
    position: relative;
}

.main-header {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1a1a1a;
    padding: 0;
    margin-left: -0.25rem;
    border-radius: 12px;
    position: relative;
}

.mobile-menu-btn:hover {
    background: #f5f5f5;
    transform: scale(1.05);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-menu-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover i {
    transform: rotate(90deg);
}

/* Mobile Logo */
.mobile-logo {
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    margin-top: -0.1rem;
    transition: transform 0.3s ease;
}

.mobile-logo:active {
    transform: translateX(-50%) scale(0.95);
}

.logo-wrapper {
    position: relative;
    overflow: hidden;
}

.mobile-logo img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.mobile-logo:active img {
    filter: drop-shadow(0 4px 8px rgba(214, 51, 132, 0.3));
}

/* Legacy text logo support for mobile */
.mobile-logo h3 {
    font-size: 1.55rem !important;
    margin: 0;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 50%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* Logo shimmer effect */
.logo-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Mobile Action Icons */
.mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: -0.25rem;
}

.mobile-icon-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 12px;
}

.mobile-icon-btn:hover {
    background: #f5f5f5;
    transform: scale(1.05);
}

.mobile-icon-btn:active {
    transform: scale(0.9);
}

.mobile-icon-btn i {
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.mobile-icon-btn:hover i {
    color: #e91e63;
}

/* Icon pulse effect */
.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
        background: #e91e63;
        transform: scale(1.1);
    }
}

/* Mobile Badge */
.mobile-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(233, 30, 99, 0.4);
    border: 2px solid white;
}

.mobile-badge.animate-badge {
    animation: badgeBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes badgeBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Mobile Search */
.mobile-search-container {
    padding: 0 1rem 1rem 1rem;
}

.mobile-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 24px;
    padding: 0 1rem;
    height: 48px;
    border: 2px solid transparent;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-search-wrapper:focus-within {
    border-color: #e91e63;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.15);
    transform: translateY(-2px);
}

.mobile-search-wrapper .search-icon {
    color: #9e9e9e;
    font-size: 1.1rem;
    margin-right: 0.75rem;
    transition: color 0.3s ease;
}

.mobile-search-wrapper:focus-within .search-icon {
    color: #e91e63;
}

.mobile-search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    color: #333;
    min-width: 0;
}

.mobile-search-input::placeholder {
    color: #bdbdbd;
    font-weight: 400;
}

.mobile-voice-btn {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    color: #9e9e9e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-voice-btn:hover {
    background: #f5f5f5;
    color: #e91e63;
}

.mobile-voice-btn.listening {
    background: #e91e63;
    color: white;
    animation: voicePulse 1.5s ease-in-out infinite;
}

@keyframes voicePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.mobile-voice-btn i {
    font-size: 0.95rem;
}

.mobile-search-btn {
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.mobile-search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.mobile-search-btn:active {
    transform: scale(0.95);
}

.mobile-search-btn i {
    font-size: 0.9rem;
}

/* ============================
   DESKTOP HEADER STYLES
   ============================ */

/* Header Actions Wrapper */
.header-actions-wrapper {
    gap: 0.5rem;
}

.header-actions-mobile {
    gap: 1.25rem;
    display: flex;
    align-items: center;
}

.header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
    padding: 0;
    margin: 0 0.5rem;
    border: none;
    background: transparent;
    flex-shrink: 0;
}

.header-icon-btn i {
    font-size: 1.2rem;
    color: #333;
}

.header-icon-btn:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
}

.header-icon-btn:hover i {
    color: var(--primary-color);
}

.cart-badge {
    font-size: 0.55rem !important;
    padding: 0.2rem 0.4rem !important;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Logo Text Responsive */
.logo-text {
    font-size: 1.4rem;
    transition: font-size 0.3s ease;
}

/* Tablet Devices (768px to 991px) */
@media (max-width: 991px) {
    .header-actions-wrapper {
        gap: 0.6rem;
    }
    
    .logo-text {
        font-size: 1.3rem !important;
    }
    
    .header-actions-mobile {
        gap: 1rem !important;
    }
    
    .header-icon-btn {
        min-width: 44px !important;
        height: 44px !important;
        margin: 0 0.4rem !important;
    }
    
    .header-icon-btn i {
        font-size: 1.2rem !important;
    }
}

/* Mobile Devices (max 768px) - Show Mobile Header */
@media (max-width: 768px) {
    .mobile-header-top {
        padding: 1.1rem 0.95rem !important;
    }
    
    .mobile-logo h3 {
        font-size: 1.55rem !important;
    }
    
    .mobile-icon-btn {
        width: 44px;
        height: 44px;
    }
    
    .mobile-icon-btn i {
        font-size: 1.35rem;
    }
    
    .mobile-menu-btn {
        width: 44px;
        height: 44px;
    }
    
    .mobile-menu-btn i {
        font-size: 1.35rem;
    }
    
    .mobile-search-container {
        padding: 0 0.95rem 1rem 0.95rem;
    }
    
    .mobile-search-wrapper {
        height: 52px;
        padding: 0 1.15rem;
    }
    
    .mobile-search-btn {
        width: 40px;
        height: 40px;
    }
    
    .promo-banner {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }
    
    .promo-banner p {
        font-size: 0.7rem;
        line-height: 1.5;
    }
    
    .promo-banner .ms-2 {
        margin-left: 0.5rem !important;
    }
}

/* Small Mobile Devices (max 576px) */
@media (max-width: 576px) {
    .mobile-header-top {
        padding: 1rem 0.85rem !important;
    }
    
    .mobile-logo h3 {
        font-size: 1.5rem !important;
    }
    
    .mobile-icon-btn {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
    
    .mobile-icon-btn i {
        font-size: 1.3rem;
    }
    
    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
    
    .mobile-menu-btn i {
        font-size: 1.3rem;
    }
    
    .mobile-actions {
        gap: 0.6rem;
    }
    
    .mobile-search-container {
        padding: 0 0.85rem 0.95rem 0.85rem;
    }
    
    .mobile-search-wrapper {
        height: 50px;
        padding: 0 1.1rem;
        border-radius: 15px;
    }
    
    .mobile-search-btn {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }
    
    .mobile-badge {
        min-width: 20px;
        height: 20px;
        font-size: 0.68rem;
        top: 2px;
        right: 2px;
        border-radius: 10px;
    }
}

/* Extra Small Devices (max 400px) */
@media (max-width: 400px) {
    .mobile-header-top {
        padding: 0.95rem 0.75rem !important;
    }
    
    .mobile-logo h3 {
        font-size: 1.4rem !important;
    }
    
    .mobile-icon-btn {
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }
    
    .mobile-icon-btn i {
        font-size: 1.25rem;
    }
    
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }
    
    .mobile-menu-btn i {
        font-size: 1.25rem;
    }
    
    .mobile-actions {
        gap: 0.55rem;
    }
    
    .mobile-badge {
        font-size: 0.65rem;
        min-width: 19px;
        height: 19px;
        top: 2px;
        right: 2px;
        border-radius: 9.5px;
    }
    
    .mobile-search-container {
        padding: 0 0.75rem 0.9rem 0.75rem;
    }
    
    .mobile-search-wrapper {
        height: 48px;
        padding: 0 1rem;
        border-radius: 14px;
    }
    
    .mobile-search-wrapper .search-icon {
        font-size: 1.15rem;
        margin-right: 0.8rem;
    }
    
    .mobile-search-input {
        font-size: 0.9rem;
    }
    
    .mobile-search-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    
    .mobile-search-btn i {
        font-size: 1rem;
    }
    
    .promo-banner p {
        font-size: 0.65rem;
    }
    
    .promo-banner strong {
        display: inline;
    }
}

/* Ultra Small Devices (max 340px) */
@media (max-width: 340px) {
    .mobile-menu-btn i {
        font-size: 1.25rem;
    }
    
    .mobile-actions {
        gap: 0.3rem;
    }
    
    .mobile-badge {
        font-size: 0.6rem;
        min-width: 16px;
        height: 16px;
        top: 4px;
        right: 4px;
    }
    
    .mobile-search-wrapper {
        height: 42px;
        padding: 0 0.65rem;
    }
    
    .mobile-search-wrapper .search-icon {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .mobile-search-input {
        font-size: 0.9rem;
    }
    
    .mobile-search-btn {
        width: 30px;
        height: 30px;
        border-radius: 6px;
    }
    
    .promo-banner p {
        font-size: 0.65rem;
    }
    
    .promo-banner strong {
        display: inline;
    }
}

/* ============================
   FOOTER STYLES
   ============================ */

.footer {
    background: var(--footer-gradient);
    position: relative;
    margin-top: 0;
}

/* Footer Decoration */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer Headings */
.footer-heading {
    font-weight: 600;
    color: white;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
}

/* Footer Links */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links i {
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    color: var(--primary-color);
}

/* Social Icons Footer */
.social-links-footer {
    display: flex;
    gap: 10px;
}

.social-icon-footer {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon-footer:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

/* Contact Icons */
.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    background: rgba(233, 30, 99, 0.1);
    transform: scale(1.1);
}

.hover-text-primary:hover {
    color: var(--primary-color) !important;
}

/* Trust Badges */
.trust-badge {
    padding: 15px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.trust-badge i {
    transition: all 0.3s ease;
}

.trust-badge:hover i {
    transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    animation: fadeInUp 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
}

/* Payment Methods */
.payment-methods .badge {
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Trust Badges Section */
.trust-badges-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.trust-badge-item {
    transition: transform 0.3s ease;
}

.trust-badge-item:hover {
    transform: translateY(-5px);
}

.trust-badge-icon {
    transition: transform 0.3s ease;
}

.trust-badge-item:hover .trust-badge-icon {
    transform: scale(1.1);
}

.trust-badge-item h5 {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.trust-payment-badge {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.trust-payment-badge:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive Trust Badges */
@media (max-width: 767px) {
    .trust-badge-item {
        margin-bottom: 1rem;
    }
    
    .trust-badge-icon i {
        font-size: 2rem !important;
    }
    
    .trust-badge-item h5 {
        font-size: 1rem;
    }
    
    .trust-payment-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Mobile Footer Accordion */
.footer .accordion-button {
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .accordion-button:not(.collapsed) {
    background: transparent;
    color: #e91e63;
}

.footer .accordion-button::after {
    filter: brightness(0) invert(1);
}

.footer .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.footer .accordion-item {
    border: none;
}

.footer .accordion-body {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.footer-links-mobile li {
    padding: 0.4rem 0;
}

.footer-links-mobile a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-mobile a:hover {
    color: #e91e63;
    padding-left: 5px;
}

.footer-contact-mobile p {
    line-height: 1.8;
}

.social-icon-footer-sm {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon-footer-sm:hover {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
}

/* Responsive Header & Footer */
@media (max-width: 991px) {
    .brand-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    
    .social-links-header {
        display: none !important;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .social-icon-footer {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .top-bar .col-md-6 {
        font-size: 0.8rem;
    }
    
    .brand-text h4 {
        font-size: 1.2rem;
    }
    
    .footer {
        margin-top: 50px;
    }
    
    .trust-badge {
        padding: 10px;
    }
    
    .trust-badge i {
        font-size: 1.5rem !important;
    }
}

/* ============================
   ABOUT PAGE STYLES
   ============================ */

.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Years Badge Overlay */
.years-badge {
    bottom: 30px;
    right: 30px;
    min-width: 120px;
    animation: float 3s ease-in-out infinite;
}

.feature-icon-about {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon-about:hover {
    transform: scale(1.1);
}

/* Responsive About Page */
@media (max-width: 768px) {
    .years-badge {
        bottom: 20px;
        right: 20px;
        min-width: 100px;
        padding: 1rem !important;
    }
    
    .years-badge h3 {
        font-size: 2rem !important;
    }
    
    .about-hero .display-4 {
        font-size: 2.5rem;
    }
}

/* ============================
   BEST SELLERS SECTION
   ============================ */

.best-sellers-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.best-seller-card {
    transition: all 0.3s ease;
}

.best-seller-card:hover {
    transform: translateY(-5px);
}

.rank-badge {
    z-index: 10;
}

.rank-badge .badge {
    font-size: 1rem;
    padding: 8px 12px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(255, 193, 7, 0.5);
    }
}

.best-seller-card .card {
    transition: all 0.3s ease;
}

.best-seller-card:hover .card {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

.object-fit-cover {
    object-fit: cover;
}

/* Best Sellers Responsive */
@media (max-width: 768px) {
    .rank-badge .badge {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    .best-seller-card .card-body {
        padding: 1rem;
    }
}

/* ============================
   COMPREHENSIVE RESPONSIVE DESIGN
   ============================ */

/* Extra Large Devices (Desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* Large Devices (Laptops/Desktops, 992px to 1199px) */
@media (max-width: 1199px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .display-3 {
        font-size: 3rem !important;
    }
    
    .display-4 {
        font-size: 2.5rem !important;
    }
    
    .floating-card {
        font-size: 0.9rem;
        padding: 1rem !important;
    }
}

/* Medium Devices (Tablets, 768px to 991px) */
@media (max-width: 991px) {
    /* Header */
    .promo-banner {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
    
    .main-header .container {
        padding: 0 15px;
    }
    
    .search-form-clean {
        margin-bottom: 1rem;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 70vh;
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-shape {
        width: 250px !important;
        height: 250px !important;
    }
    
    .floating-card {
        display: none !important;
    }
    
    /* Stats */
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    /* Categories */
    .category-card-modern {
        margin-bottom: 1rem;
    }
    
    .category-image-wrapper {
        height: 250px;
    }
    
    /* Products Grid */
    .product-card {
        margin-bottom: 1rem;
    }
    
    /* Features */
    .feature-box-modern {
        margin-bottom: 1rem;
        padding: 1.5rem !important;
    }
    
    /* Newsletter */
    .newsletter-section .display-6 {
        font-size: 1.8rem;
    }
    
    /* Footer */
    .footer .col-lg-4,
    .footer .col-lg-2 {
        margin-bottom: 2rem;
    }
    
    /* About Page */
    .about-hero .col-lg-6 {
        margin-bottom: 2rem;
    }
    
    /* Best Sellers */
    .best-sellers-section .col-lg-3 {
        margin-bottom: 1rem;
    }
}

/* Small Devices (Phones, 576px to 767px) */
@media (max-width: 767px) {
    /* Typography */
    .display-3 {
        font-size: 2rem !important;
    }
    
    .display-4 {
        font-size: 1.8rem !important;
    }
    
    .display-5 {
        font-size: 1.5rem !important;
    }
    
    .display-6 {
        font-size: 1.3rem !important;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    /* Header */
    .promo-banner p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .navbar-brand-clean h3 {
        font-size: 1.3rem;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-image {
        max-height: 300px;
        margin-top: 2rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem !important;
        font-size: 1rem;
    }
    
    /* Categories */
    .category-image-wrapper {
        height: 200px;
    }
    
    .category-content {
        padding: 1.5rem !important;
    }
    
    .category-content h5 {
        font-size: 1.1rem;
    }
    
    /* Products */
    .product-card img {
        height: 180px;
    }
    
    .product-card .card-title {
        font-size: 0.95rem;
    }
    
    .product-card .price {
        font-size: 1.1rem;
    }
    
    /* Features */
    .feature-box-modern {
        padding: 1.5rem 1rem !important;
    }
    
    .feature-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .feature-box-modern h5 {
        font-size: 1rem;
    }
    
    /* Newsletter */
    .newsletter-section {
        padding: 2rem 0 !important;
    }
    
    .newsletter-section .container {
        padding: 2rem 0 !important;
    }
    
    .newsletter-form .input-group-lg .form-control {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem;
    }
    
    .newsletter-form .btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0;
    }
    
    .footer-brand h4 {
        font-size: 1.3rem;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    .social-icon-footer {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    /* About Page */
    .about-image-wrapper {
        margin-bottom: 2rem;
    }
    
    .years-badge {
        bottom: 15px;
        right: 15px;
        padding: 0.75rem !important;
    }
    
    .years-badge h3 {
        font-size: 1.8rem !important;
    }
    
    .feature-icon-about {
        width: 50px;
        height: 50px;
    }
    
    /* Best Sellers */
    .best-sellers-section .row.align-items-end {
        text-align: center !important;
    }
    
    .best-sellers-section .col-md-4 {
        margin-top: 1rem;
    }
    
    .best-seller-card .card-img-top {
        height: 220px !important;
    }
    
    /* Spacing */
    section {
        padding: 2rem 0 !important;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .g-4 {
        gap: 1rem !important;
    }
}

/* Extra Small Devices (Small Phones, less than 576px) */
@media (max-width: 575px) {
    /* Base */
    body {
        font-size: 0.9rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Header */
    .promo-banner {
        display: none; /* Hide on very small screens */
    }
    
    .navbar-brand-clean h3 {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    /* Hero */
    .hero-section {
        min-height: 50vh;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        display: none; /* Hide long text on very small screens */
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-item h3 {
        font-size: 1.2rem;
    }
    
    .stat-item p {
        font-size: 0.75rem;
    }
    
    .btn-lg {
        padding: 0.65rem 1.5rem !important;
        font-size: 0.9rem;
    }
    
    .rounded-pill {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Typography */
    .display-3,
    .display-4,
    .display-5,
    .display-6 {
        font-size: 1.5rem !important;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.65rem;
    }
    
    /* Categories */
    .category-image-wrapper {
        height: 180px;
    }
    
    .category-content {
        padding: 1rem !important;
    }
    
    .category-content h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem !important;
    }
    
    .category-content p {
        display: none; /* Hide description on very small screens */
    }
    
    /* Products */
    .product-card {
        margin-bottom: 1rem;
    }
    
    .product-card img {
        height: 160px;
    }
    
    .product-card .card-body {
        padding: 0.75rem;
    }
    
    .product-card .card-title {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .product-card .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Best Sellers */
    .rank-badge {
        margin: 0.5rem;
    }
    
    .rank-badge .badge {
        font-size: 0.75rem;
        padding: 5px 8px;
    }
    
    .best-seller-card .card-img-top {
        height: 180px !important;
    }
    
    /* Features */
    .feature-box-modern {
        padding: 1rem !important;
    }
    
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }
    
    .feature-box-modern h5 {
        font-size: 0.95rem;
    }
    
    .feature-box-modern p {
        font-size: 0.8rem;
    }
    
    /* Newsletter */
    .newsletter-section .lead {
        font-size: 0.9rem;
    }
    
    .newsletter-form .form-control {
        font-size: 0.85rem;
    }
    
    .newsletter-form .btn {
        font-size: 0.85rem;
        padding: 0.65rem 1.2rem !important;
    }
    
    .newsletter-form small {
        font-size: 0.7rem;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .social-links-footer {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom {
        padding: 1rem 0 !important;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 0.5rem;
    }
    
    /* About Page */
    .about-hero {
        text-align: center;
    }
    
    .about-hero .badge {
        display: inline-block;
    }
    
    .about-hero .row.g-4 {
        gap: 1.5rem !important;
    }
    
    .years-badge {
        position: static !important;
        display: inline-block;
        margin: 1rem auto;
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    /* Spacing Adjustments */
    section {
        padding: 1.5rem 0 !important;
    }
    
    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .py-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .mb-5 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1rem !important;
    }
    
    .g-4,
    .g-5 {
        gap: 0.75rem !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
    
    /* Remove hover effects that don't work on touch */
    .hover-lift:hover {
        transform: none;
    }
    
    .hover-scale:hover {
        transform: none;
    }
}

/* Landscape Orientation for Tablets */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-section {
        min-height: 60vh;
    }
    
    .newsletter-section {
        padding: 3rem 0 !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .promo-banner,
    .newsletter-section,
    .back-to-top {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: black;
        background: white;
    }
    
    .container {
        max-width: 100%;
    }
}

/* ============================
   CONTACT PAGE STYLES
   ============================ */

/* Executive Hero Section */
.contact-hero-executive {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(156, 39, 176, 0.15) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.executive-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.executive-stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.executive-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-content .stat-number {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.stat-content .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.hero-image-executive {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.image-frame img {
    display: block;
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.image-overlay-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 16px;
    color: white;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Executive Contact Cards */
.executive-contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.executive-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63 0%, #9c27b0 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.executive-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.executive-contact-card:hover::before {
    transform: scaleX(1);
}

.executive-contact-card.active {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
    transform: scale(1.05);
}

.executive-contact-card.active .card-title-executive,
.executive-contact-card.active .card-subtitle-executive,
.executive-contact-card.active .contact-link-executive,
.executive-contact-card.active .location-text-executive {
    color: white;
}

.executive-contact-card.active .card-badge-featured {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.card-icon-executive {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
}

.bg-gradient-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.card-title-executive {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.card-subtitle-executive {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.card-content-executive {
    margin-bottom: 20px;
}

.contact-link-executive {
    display: block;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.contact-link-executive:hover {
    color: #e91e63;
    padding-left: 5px;
}

.location-text-executive {
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
}

.card-badge-executive {
    background: #f1f5f9;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
}

.btn-executive {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-executive:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
    color: white;
}

/* Executive Form Section */
.executive-form-wrapper {
    padding: 40px;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e91e63;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.text-gradient-primary {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Contact Page */
@media (max-width: 991px) {
    .contact-hero-executive {
        min-height: auto;
        padding: 60px 0 !important;
    }
    
    .display-2 {
        font-size: 2.5rem !important;
    }
    
    .image-frame img {
        height: 400px;
    }
    
    .executive-contact-card {
        margin-bottom: 20px;
    }
    
    .executive-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .contact-hero-executive {
        padding: 40px 0 60px !important;
    }
    
    .display-2 {
        font-size: 2rem !important;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .executive-stat-card {
        padding: 15px;
    }
    
    .stat-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stat-content .stat-number {
        font-size: 1.4rem;
    }
    
    .image-frame img {
        height: 300px;
    }
    
    .image-overlay-badge {
        left: 15px;
        bottom: 15px;
        padding: 15px 20px;
    }
    
    .executive-contact-card {
        padding: 30px 20px;
    }
    
    .card-icon-executive {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Old Contact Hero - Keep for reference */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%239c27b0" fill-opacity="0.2" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.contact-stat-icon {
    backdrop-filter: blur(10px);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Contact Method Cards */
.contact-method-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
    border-color: rgba(102, 126, 234, 0.2);
}

.contact-method-icon {
    transition: all 0.3s ease;
}

.contact-method-card:hover .contact-method-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Contact Form Modern */
.contact-form-modern .form-control,
.contact-form-modern .form-select {
    border: 2px solid #e0e0e0;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.contact-form-modern .form-floating > .form-control,
.contact-form-modern .form-floating > .form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 1.25rem;
}

.contact-form-modern .form-control:focus,
.contact-form-modern .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.15);
}

.contact-form-modern .form-floating > label {
    padding: 1rem 1.25rem;
}

/* Info Cards */
.info-card {
    transition: all 0.3s ease;
}

.info-card-icon {
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
    transform: scale(1.1);
}

.business-hours {
    font-size: 0.95rem;
}

/* Map Container */
.map-container {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.2) !important;
}

/* FAQ Improvements */
.accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    background-color: white;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.accordion-item {
    margin-bottom: 1rem;
    overflow: hidden;
}

/* Alert Improvements */
.alert-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Social Media Buttons */
.btn-outline-primary:hover,
.btn-outline-danger:hover,
.btn-outline-info:hover,
.btn-outline-success:hover {
    transform: translateX(5px);
}

/* Responsive Contact Page */
@media (max-width: 991px) {
    .contact-hero {
        padding: 3rem 0 !important;
    }
    
    .contact-hero .display-3 {
        font-size: 2.5rem !important;
    }
    
    .contact-stat-icon {
        width: 50px !important;
        height: 50px !important;
        padding: 0.75rem !important;
    }
    
    .contact-stat-icon i {
        font-size: 1.5rem !important;
    }
    
    .contact-hero-image img {
        max-height: 300px !important;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 2rem 0 !important;
    }
    
    .contact-hero .display-3 {
        font-size: 2rem !important;
    }
    
    .contact-hero .lead {
        font-size: 1rem;
    }
    
    .contact-method-card {
        margin-bottom: 1rem;
    }
    
    .contact-method-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .contact-method-icon i {
        font-size: 1.5rem !important;
    }
    
    .info-card {
        margin-bottom: 1.5rem !important;
    }
    
    .map-container {
        height: 300px !important;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

.card:hover {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Input Focus */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

/* Breadcrumb */
.breadcrumb-item.active {
    color: var(--primary-color);
}
/* ==========================
   MOBILE OPTIMIZATIONS
   ========================== */

/* Touch-friendly elements */
@media (max-width: 768px) {
    /* Minimum touch target size */
    .btn,
    button,
    a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Larger tap targets for mobile */
    .product-card .btn {
        padding: 0.75rem 1rem;
    }
    
    /* Better spacing on mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Stack elements vertically */
    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .row > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    /* Optimize hero section for mobile */
    .hero-section-new {
        min-height: 70vh !important;
        padding: 3rem 0 !important;
    }
    
    .hero-main-title {
        font-size: 2rem !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
    }
    
    /* Better button sizing on mobile */
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Optimize cards for mobile */
    .modern-card {
        margin-bottom: 1rem;
    }
    
    .product-card img {
        height: 200px;
    }
    
    /* Better form inputs on mobile */
    .form-control,
    .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Hide animations on mobile for performance */
    .fade-in,
    .fade-in-left,
    .fade-in-right {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Optimize trust badges for mobile */
    .trust-badge-item {
        padding: 1.5rem 1rem !important;
    }
    
    .trust-badge-icon i {
        font-size: 2rem !important;
    }
    
    /* Better newsletter on mobile */
    .newsletter-section-modern {
        padding: 2rem 0 !important;
    }
    
    /* Stack features vertically */
    .feature-box-modern {
        margin-bottom: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    /* Optimize product grid */
    .col-sm-6 {
        width: 100%;
    }
    
    /* Better spacing */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* ==========================
   PERFORMANCE OPTIMIZATIONS
   ========================== */

/* Hardware acceleration for animations */
.hover-lift,
.product-card,
.modern-card,
.btn,
.floating {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating,
    .pulse {
        animation: none !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .back-to-top,
    .btn {
        display: none !important;
    }
    
    .container {
        max-width: 100% !important;
    }
}

/* ==========================
   ACCESSIBILITY IMPROVEMENTS
   ========================== */

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 100;
}

.skip-to-main:focus {
    top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .modern-card {
        border: 2px solid currentColor;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-color: #f8f9fa;
        --light-color: #212529;
    }
    
    /* Add dark mode styles as needed */
}