:root {
    /* Modern Color Palette */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-secondary: #059669;
    --color-secondary-light: #10b981;
    --color-accent: #f59e0b;
    --color-accent-light: #fbbf24;
    
    /* Neutral Colors */
    --color-bg: #ffffff;
    --color-bg-light: #f8fafc;
    --color-bg-gray: #f1f5f9;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-text-muted: #94a3b8;
    
    /* Semantic Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #3b82f6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-light);
}

/* Navigation */
.navbar {
    background: var(--color-bg) !important;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--color-bg-gray);
    padding: var(--spacing-md) 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

body {
    padding-top: 80px;
}

.navbar-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--color-primary) !important;
    text-decoration: none;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text) !important;
    padding: var(--spacing-sm) var(--spacing-md) !important;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    text-align: center;
}

.nav-link:hover {
    color: var(--color-primary) !important;
    background-color: var(--color-bg-gray);
}

.nav-link.active {
    color: var(--color-primary) !important;
    background-color: var(--color-bg-gray);
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

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

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

.btn-secondary {
    background: var(--color-secondary);
    color: white;
}

.btn-secondary:hover {
    background: var(--color-secondary-light);
    transform: translateY(-1px);
}

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

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

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
}

.btn-sm {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.875rem;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
    background: var(--color-bg);
}

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

.card-img-top {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: var(--spacing-lg);
}

.card-title {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.card-text {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

/* Forms */
.form-control {
    border: 2px solid var(--color-bg-gray);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1rem;
    transition: all 0.2s ease;
    background: var(--color-bg);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

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

/* Modern Hero Carousel */
.hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: var(--spacing-2xl);
}

.modern-carousel {
    height: 70vh;
    min-height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.carousel-bg {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.carousel-content {
    height: 100%;
    position: relative;
    z-index: 2;
}

.min-vh-50 {
    min-height: 50vh;
}

.carousel-text {
    color: white;
    padding: var(--spacing-xl) 0;
    position: relative;
}

.carousel-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    z-index: -1;
}

.carousel-badge {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-badge.sale-badge {
    background: var(--color-warning);
    animation: pulse 2s infinite;
}

.carousel-badge.magic-badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.carousel-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.carousel-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.6);
    font-weight: 500;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.4));
}

.carousel-actions {
    margin-bottom: var(--spacing-lg);
}

.carousel-features,
.carousel-stats {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.feature-item,
.stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.6);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.feature-item i,
.stat-item i {
    color: var(--color-accent-light);
    font-size: 1.1rem;
}

.carousel-timer {
    display: flex;
    gap: var(--spacing-md);
}

.timer-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
}

.timer-label {
    font-size: 0.875rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    font-weight: 600;
}

.carousel-image {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.carousel-image img {
    max-height: 400px;
    width: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Modern Carousel Controls */
.modern-control {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.modern-control:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.modern-control .carousel-control-prev-icon,
.modern-control .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel indicators removed */

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Sections */
section {
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: var(--spacing-2xl) 0;
    margin: var(--spacing-2xl) 0;
}

.newsletter-section h2 {
    color: white;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-section .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.newsletter-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-section .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    background: var(--color-text);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

footer h5 {
    color: white;
    margin-bottom: var(--spacing-lg);
}

footer p,
footer .text-muted {
    color: rgba(255, 255, 255, 0.8);
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: white;
}

/* Modern Footer */
.footer-modern {
    background: linear-gradient(135deg, var(--color-text) 0%, #0f172a 100%);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.footer-brand h5 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: var(--spacing-xs);
}


.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.contact-item i {
    color: var(--color-primary);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.payment-methods i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.payment-methods i:hover {
    color: var(--color-primary);
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
}

/* Shopping Cart */
.snipcart-checkout, 
.snipcart-customer-signin {
    background: none;
    border: none;
    color: var(--color-text);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.snipcart-checkout:hover, 
.snipcart-customer-signin:hover {
    color: var(--color-primary);
    background-color: var(--color-bg-gray);
}

.cart-button {
    position: relative;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    background: none;
    border: none;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.cart-button:hover {
    background-color: var(--color-bg-gray);
}

.snipcart-items-count {
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    min-width: 20px;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: var(--spacing-md) 0;
}

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

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

/* Category Cards */
.category-card {
    position: relative;
    overflow: hidden;
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-card:hover .card-overlay {
    opacity: 1;
}

/* Product Cards */
.product-card {
    position: relative;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

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

.product-actions {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-footer {
    margin-top: auto;
}

.price-section {
    display: flex;
    flex-direction: column;
}

/* About Section */
.about-content {
    padding-right: var(--spacing-lg);
}

.stat-item {
    padding: var(--spacing-md);
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-bg-gray);
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.image-overlay {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    z-index: 2;
}

/* Badges */
.badge {
    font-weight: 600;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

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

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

/* Newsletter Improvements */
.newsletter-section .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.newsletter-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Section Improvements */
.hero-section {
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
}

@media (max-width: 992px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .search-form {
        max-width: 250px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-stats .col-4 {
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: var(--spacing-sm) 0;
    }
    
    .nav-link {
        min-width: 100px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .modern-carousel {
        height: 60vh;
        min-height: 400px;
        border-radius: var(--radius-lg);
    }
    
    .carousel-title {
        font-size: 2.5rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.9), 0 0 15px rgba(0,0,0,0.6);
    }
    
    .carousel-description {
        font-size: 1.1rem;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.9), 0 0 10px rgba(0,0,0,0.7);
        font-weight: 600;
    }
    
    .carousel-features,
    .carousel-stats {
        gap: var(--spacing-md);
    }
    
    .feature-item,
    .stat-item {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.9rem;
    }
    
    .carousel-timer {
        gap: var(--spacing-sm);
    }
    
    .timer-item {
        padding: var(--spacing-sm);
        min-width: 60px;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .carousel-image img {
        max-height: 250px;
    }
    
    .modern-control {
        width: 50px;
        height: 50px;
    }
    
    .modern-control .carousel-control-prev-icon,
    .modern-control .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
    
    .btn-lg {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 1rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
    }
    
    .product-actions {
        opacity: 1;
    }
    
    .card-overlay {
        opacity: 1;
    }
    
    .footer-modern .row > div {
        margin-bottom: var(--spacing-lg);
    }
    
    
    .payment-methods {
        text-align: center;
        margin-top: var(--spacing-md);
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .footer-bottom .col-md-6:first-child {
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }
    
    body {
        padding-top: 60px;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .nav-link {
        min-width: 80px;
        height: 32px;
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-sm) !important;
    }
    
    .search-form {
        max-width: 200px;
    }
    
    .search-form input {
        font-size: 0.875rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .search-form button {
        width: 32px;
        height: 32px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .modern-carousel {
        height: 50vh;
        min-height: 350px;
        border-radius: var(--radius-md);
    }
    
    .carousel-title {
        font-size: 2rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.9), 0 0 12px rgba(0,0,0,0.7);
    }
    
    .carousel-description {
        font-size: 1rem;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.9), 0 0 8px rgba(0,0,0,0.8);
        font-weight: 600;
    }
    
    .carousel-badge {
        font-size: 0.75rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .carousel-features,
    .carousel-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .carousel-timer {
        justify-content: center;
    }
    
    .timer-item {
        min-width: 50px;
        padding: var(--spacing-xs);
    }
    
    .timer-number {
        font-size: 1.25rem;
    }
    
    .timer-label {
        font-size: 0.75rem;
    }
    
    .carousel-image img {
        max-height: 200px;
    }
    
    .modern-control {
        width: 40px;
        height: 40px;
    }
    
    .modern-control .carousel-control-prev-icon,
    .modern-control .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }
    
    .modern-indicators {
        bottom: var(--spacing-md);
    }
    
    .modern-indicators button {
        width: 10px;
        height: 10px;
    }
    
    .card-body {
        padding: var(--spacing-md);
    }
    
    .btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.875rem;
    }
    
    .btn-lg {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 2px var(--spacing-xs);
    }
    
    .about-stats .col-4 {
        margin-bottom: var(--spacing-sm);
    }
    
    .stat-item {
        padding: var(--spacing-sm);
    }
    
    .footer-modern {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }
    
    .footer-brand h5 {
        font-size: 1.25rem;
    }
    
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .payment-methods i {
        font-size: 1.25rem;
    }
}
