:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.hero-section h1 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.category-card {
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.category-card img {
    height: 250px;
    object-fit: cover;
}

.product-card {
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card img {
    height: 300px;
    object-fit: cover;
}

.product-details {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.product-details li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.product-features {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.product-features li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-box {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.feature-box:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    height: 100%;
}

.cta-section {
    background-color: var(--primary-color);
}

.page-header {
    border-bottom: 1px solid var(--border-color);
}

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

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

.contact-info {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.thank-you-content {
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.success-icon {
    display: inline-block;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content ul {
    margin-bottom: 1.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner a {
    color: var(--primary-color);
}

footer {
    margin-top: 3rem;
}

footer h5 {
    margin-bottom: 1rem;
    font-weight: 600;
}

footer a {
    text-decoration: none;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .feature-box {
        margin-bottom: 1rem;
    }
    
    .cookie-banner .text-right {
        text-align: center !important;
        margin-top: 1rem;
    }
}
