:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --secondary: #2d3748;
    --light-bg: #f8f9fa;
    --dark-text: #1a202c;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-text);
    line-height: 1.3;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

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

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

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

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

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

.text-white-50 {
    color: rgba(255, 255, 255, 0.7);
}

.text-white-50:hover {
    color: rgba(255, 255, 255, 1);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
        min-height: 400px;
    }

    .hero-image {
        opacity: 0.1;
    }

    .hero-content {
        max-width: 100%;
    }
}

.page-hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    border-bottom: 2px solid var(--border-color);
}

.page-hero h1 {
    color: var(--dark-text);
}

.page-hero .lead {
    color: var(--text-muted);
}

.info-card, .product-card, .advantage-card, .value-card, .testimonial-card, .blog-card, .contact-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover, .product-card:hover, .advantage-card:hover, .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.testimonial-card {
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary);
}

.form-control {
    border-color: var(--border-color);
    font-size: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

.custom-control-input:checked ~ .custom-control-label {
    color: var(--dark-text);
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--primary);
    border-color: var(--primary);
}

.order-form, .contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.cookie-banner {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    bottom: 0;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
}

.legal-content h3 {
    color: var(--primary);
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hover-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.hover-card:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.content-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.content-body p {
    margin-bottom: 1.5rem;
}

footer {
    background-color: var(--secondary);
    margin-top: 4rem;
}

footer a {
    text-decoration: none;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
        min-height: 350px;
    }

    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .nav-link {
        margin-left: 0.5rem;
    }

    .product-card, .info-card {
        padding: 1.5rem;
    }

    .product-image {
        height: 200px;
    }

    .cookie-banner .row {
        flex-direction: column;
    }

    .cookie-banner .col-md-4 {
        margin-top: 1rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .row > [class*='col-'] {
        margin-bottom: 1.5rem;
    }
}

.text-decoration-none {
    text-decoration: none !important;
}

.shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}
