body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    color: #1a3a3a;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.header-main {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
}

.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 90, 122, 0.35);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.featured-card-glow {
    animation: softGlow 3s ease-in-out infinite;
}

@keyframes softGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(26, 198, 198, 0.3); }
    50% { box-shadow: 0 0 40px rgba(26, 198, 198, 0.5); }
}

.tile-crystal {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #1a9fc6;
    transition: all 180ms ease;
    box-shadow: 0 2px 8px rgba(26, 90, 122, 0.05);
}

.tile-crystal:hover {
    transform: scale(1.035);
    box-shadow: 0 8px 20px rgba(26, 90, 122, 0.15);
    border-left-color: #0d7a9e;
}

.tile-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.note-item {
    flex: 0 1 auto;
    padding: 0.75rem 1.5rem;
    background-color: #f9fbfc;
    border-radius: 6px;
    min-width: 140px;
}

.product-card {
    transition: all 200ms ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(26, 90, 122, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.product-card:hover {
    transform: scale(1.035);
    box-shadow: 0 12px 24px rgba(26, 90, 122, 0.15);
}

.product-image-wrapper {
    overflow: hidden;
    height: 280px;
    background-color: #f9fbfc;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 200ms ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.card-link {
    text-decoration: none;
    color: inherit;
}

.availability-line {
    font-weight: 500;
}

.product-detail {
    background-color: white;
}

.product-image-detail {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-detail img {
    max-width: 100%;
    height: auto;
}

.quick-tiles-section {
    background-color: #f9fbfc;
}

.eclat-pur {
    color: white;
}

.eclat-pur p {
    color: white;
    line-height: 1.8;
}

.faq-section {
    background-color: #f9fbfc;
}

.faq-section .card {
    background-color: white;
    box-shadow: 0 1px 3px rgba(26, 90, 122, 0.05);
}

.faq-section .card-header {
    background-color: white;
}

.faq-section .btn-link {
    text-decoration: none;
    color: #1a5a7a;
    font-weight: 600;
}

.faq-section .btn-link:hover {
    color: #1a9fc6;
}

.cta-section {
    background: linear-gradient(135deg, #1a9fc6 0%, #1a5a7a 100%);
}

.footer-main {
    background-color: #0f3f52;
    color: white;
}

.footer-main a {
    color: #b3d9e8;
    transition: color 150ms ease;
}

.footer-main a:hover {
    color: #ffffff;
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0f3f52;
    color: white;
    padding: 1.5rem 0;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-banner a {
    color: #1a9fc6;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        background-attachment: scroll;
    }

    .hero-section .row {
        flex-direction: column-reverse;
    }

    .note-item {
        min-width: 100px;
        padding: 0.5rem 1rem;
    }

    .product-card {
        margin-bottom: 1.5rem;
    }

    .product-image-wrapper {
        height: 200px;
    }

    .cookie-banner .col-md-8,
    .cookie-banner .col-md-4 {
        flex: 0 0 100%;
    }

    .cookie-banner .col-md-4 {
        text-align: left !important;
        margin-top: 1rem;
    }

    .tile-crystal {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 300px;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-section .lead {
        font-size: 0.95rem;
    }

    .product-image-wrapper {
        height: 150px;
    }

    .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem;
    }

    .note-item {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: auto;
        margin-bottom: 0.5rem;
    }
}

.btn-outline-primary {
    color: #1a9fc6;
    border-color: #1a9fc6;
}

.btn-outline-primary:hover {
    background-color: #1a9fc6;
    border-color: #1a9fc6;
    color: white;
}

.btn-outline-secondary {
    color: #666;
    border-color: #ddd;
}

.btn-outline-secondary:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.form-control {
    border-color: #e8eef5;
}

.form-control:focus {
    border-color: #1a9fc6;
    box-shadow: 0 0 0 0.2rem rgba(26, 198, 198, 0.25);
}

.badge {
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.navbar {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-light .navbar-nav .nav-link {
    color: #1a5a7a;
    font-weight: 500;
    transition: color 150ms ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #1a9fc6;
}

a {
    color: #1a9fc6;
    text-decoration: none;
}

a:hover {
    color: #0d7a9e;
    text-decoration: none;
}

.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}
