:root {
    --primary: #011526;
    --secondary: #F2DCC2;
    --success: #BFAE99;
    --danger: #F2522E;
    --warning: #F28B30;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* Carousel */
.carousel-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-caption {
    background: rgba(1, 21, 38, 0.7);
    padding: 2rem;
    border-radius: 10px;
}

/* Brands Slider */
.brands-slider {
    overflow: hidden;
    position: relative;
    height: 80px;
}

.brands-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.brand-item {
    height: 50px;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Cards */
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Contact Form */
.form-label {
    font-weight: 600;
    color: var(--primary);
}

/* Footer */
footer a:hover {
    color: var(--secondary) !important;
    text-decoration: underline !important;
}

/* Cookie Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid white;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Product Cards */
.product-card .btn {
    background-color: var(--primary);
    border-color: var(--primary);
}

.product-card .btn:hover {
    background-color: var(--success);
    border-color: var(--success);
}

/* WCAG Compliance */
:focus {
    outline: 3px solid var(--warning);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar, footer, .cookie-consent-banner {
        display: none !important;
    }
}