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

:root {
    --primary-color: #2d5016;
    --secondary-color: #c4a45a;
    --bg-light: #f8f7f5;
    --text-color: #4a4a47;
    --border-light: #e8e6e1;
}

html,
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    background-color: #fefcf9;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

a:hover {
    color: var(--secondary-color);
}

.header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 1rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: 1px;
}

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

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

.hero {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero h1 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.hero-subtitle {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: #d9ba6b;
    border-color: #d9ba6b;
    transform: scale(1.02);
}

.btn-cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.02);
}

.btn-product {
    display: block;
    width: 100%;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.65rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-product:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.02);
}

.categories-section {
    background-color: #fefcf9;
}

.category-card {
    background-color: #fff;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(196, 164, 90, 0.1);
    transform: translateY(-2px);
}

.category-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #666;
}

.bestsellers-section {
    background-color: var(--bg-light);
}

.new-products-section {
    background-color: #fefcf9;
}

.featured-products-section {
    background-color: var(--bg-light);
}

.product-card-small {
    background-color: #fff;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.product-card-small:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(196, 164, 90, 0.1);
}

.product-card {
    background-color: #fff;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 16px rgba(196, 164, 90, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.product-card p {
    padding: 0 1rem;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.product-card .price {
    display: block;
    padding: 0 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.product-card .btn-product {
    margin: 1rem;
    margin-top: auto;
}

.product-format,
.product-quantity {
    padding: 0 1rem;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.product-format strong,
.product-quantity strong {
    color: var(--primary-color);
}

.guide-section {
    background-color: #fefcf9;
}

.guide-list {
    list-style: decimal;
    padding-left: 1.5rem;
}

.guide-list li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.faq-section {
    background-color: var(--bg-light);
}

.faq-item {
    background-color: #fff;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(196, 164, 90, 0.1);
}

.faq-item h3 {
    margin-top: 0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.95rem;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 0;
    margin-top: 3rem;
}

.footer h4 {
    color: var(--secondary-color);
    margin-top: 0;
}

.footer p {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 2rem;
    color: #b0b0b0;
}

.about-section {
    background-color: #fefcf9;
}

.about-section h2 {
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-light);
}

.about-section img {
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about-section img:hover {
    box-shadow: 0 8px 16px rgba(196, 164, 90, 0.15);
}

.info-list {
    list-style-position: inside;
    list-style-type: disc;
    padding-left: 1rem;
}

.info-list li {
    margin-bottom: 0.6rem;
    color: #666;
}

.promises-section {
    border-left: 4px solid var(--secondary-color);
}

.promises-section h3 {
    font-size: 1.1rem;
    margin-top: 0;
    color: var(--primary-color);
}

.principles-list {
    list-style: decimal;
    padding-left: 1.5rem;
}

.principles-list li {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-section {
    background-color: #fefcf9;
    padding: 3rem 0;
}

.legal-section h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.legal-section h2 {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-light);
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ol li {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-section {
    background-color: #fefcf9;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 0.75rem;
    color: var(--text-color);
    background-color: #fff;
}

.contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(196, 164, 90, 0.25);
}

.contact-form textarea.form-control {
    resize: vertical;
    font-family: inherit;
}

.custom-control-label {
    color: var(--text-color);
    font-weight: 500;
}

.custom-control-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.thank-you-section {
    background-color: var(--bg-light);
}

.filters-section {
    background-color: #fff;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.filters-section label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.filters-section .form-control {
    border: 1px solid var(--border-light);
    border-radius: 4px;
}

.filters-section .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(196, 164, 90, 0.25);
}

.products-grid {
    background-color: #fefcf9;
}

.hints-section {
    border-left: 4px solid var(--secondary-color);
}

.hints-section h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.hints-list {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.hints-list li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero {
        height: 250px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

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

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

    .product-card img {
        height: 150px;
    }

    .category-card {
        min-height: 120px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .legal-section {
        padding: 2rem 0;
    }

    .about-section {
        padding: 2rem 0;
    }
}

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

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .btn-cta,
    .btn-cta-secondary,
    .btn-product {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

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

    .filters-section {
        padding: 1rem;
    }

    .row {
        margin: 0;
    }

    .col-sm-6,
    .col-md-4 {
        padding: 0.5rem;
    }
}
