/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2D5016;
    background-color: #F5F1E8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 400;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.3rem; }

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

a {
    color: #C5351C;
    text-decoration: none;
}

a:hover {
    color: #2D5016;
}

/* Header */
.header {
    background: linear-gradient(135deg, #F5F1E8 0%, rgba(245,241,232,0.95) 100%);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.header-content {
    text-align: center;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.logo {
    filter: drop-shadow(0 2px 4px rgba(45, 80, 22, 0.1));
}

.brand-name {
    color: #2D5016;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.tagline {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, rgba(245,241,232,0.8), rgba(245,241,232,0.95));
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: #2D5016;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

.hero-image {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2D5016;
}

/* Introduction Section */
.introduction {
    background: rgba(45, 80, 22, 0.03);
}

.centered {
    text-align: center;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    margin-bottom: 3rem;
}

.intro-text h3 {
    margin-bottom: 1.5rem;
    color: #2D5016;
}

.intro-text p {
    font-size: 1.1rem;
    color: #666;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

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

.feature h4 {
    margin-bottom: 1rem;
    color: #2D5016;
}

.feature p {
    color: #666;
    margin: 0;
}

/* Featured Collections */
.featured-collections {
    background: rgba(197, 53, 28, 0.03);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.collection-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
    padding-bottom: 1.5rem;
}

.collection-image {
    height: 250px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-card h4 {
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
    color: #2D5016;
    text-align: center;
}

.collection-card p {
    padding: 0 1.5rem;
    color: #666;
    margin: 0;
    text-align: center;
}

/* Products Section */
.products {
    background: rgba(45, 80, 22, 0.03);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svg-product {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F1E8;
}

.svg-product svg {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
}
.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h4 {
    margin-bottom: 0.5rem;
    color: #2D5016;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #C5351C;
    margin-bottom: 1.5rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    flex: 1;
    min-width: 120px;
}

.btn-primary {
    background: #2D5016;
    color: white;
}

.btn-primary:hover {
    background: #1a2e0d;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #C5351C;
    border: 1px solid #C5351C;
}

.btn-secondary:hover {
    background: #C5351C;
    color: white;
}

/* Why Choose Us */
.why-choose {
    background: rgba(197, 53, 28, 0.03);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
}

.benefit h4 {
    margin-bottom: 1rem;
    color: #2D5016;
}

.benefit p {
    color: #666;
    margin: 0;
}

/* Seasonal Section */
.seasonal {
    background: rgba(45, 80, 22, 0.03);
}

.seasonal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.seasonal-text h3 {
    margin-bottom: 1.5rem;
    color: #2D5016;
}

.seasonal-text p {
    color: #666;
}

.seasonal-image {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.12);
}

.seasonal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Process Section */
.process {
    background: rgba(197, 53, 28, 0.03);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2D5016;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem auto;
}

.step h4 {
    margin-bottom: 1rem;
    color: #2D5016;
}

.step p {
    color: #666;
    margin: 0;
}

/* Sustainability Section */
.sustainability {
    background: rgba(45, 80, 22, 0.03);
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sustainability-image {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.12);
}

.sustainability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sustainability-text h3 {
    margin-bottom: 1.5rem;
    color: #2D5016;
}

.sustainability-text p {
    color: #666;
}

/* Contacts Section */
.contacts {
    background: rgba(197, 53, 28, 0.03);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.1);
}

.contact-icon {
    flex-shrink: 0;
    padding: 0.5rem;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 4px;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: #2D5016;
}

.contact-details a {
    color: #C5351C;
    font-weight: 500;
}

.contact-details a:hover {
    color: #2D5016;
}

.contact-details address {
    color: #666;
    font-style: normal;
    line-height: 1.4;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2D5016;
    color: #F5F1E8;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 12px rgba(45, 80, 22, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h4 {
    color: #F5F1E8;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    color: rgba(245, 241, 232, 0.9);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: #C5351C;
    color: white;
}

.cookie-btn-accept:hover {
    background: #a02a17;
}

.cookie-btn-reject {
    background: transparent;
    color: #F5F1E8;
    border: 1px solid rgba(245, 241, 232, 0.5);
}

.cookie-btn-reject:hover {
    background: rgba(245, 241, 232, 0.1);
}

.cookie-btn-customize {
    background: transparent;
    color: #F5F1E8;
    border: 1px solid rgba(245, 241, 232, 0.5);
}

.cookie-btn-customize:hover {
    background: rgba(245, 241, 232, 0.1);
}

.cookie-link {
    color: rgba(245, 241, 232, 0.8);
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-link:hover {
    color: #C5351C;
}

/* Cookie Customization Panel */
.cookie-customization {
    background: rgba(45, 80, 22, 0.95);
    border-top: 1px solid rgba(245, 241, 232, 0.2);
    padding: 1.5rem 0;
}

.cookie-custom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-custom-content h4 {
    color: #F5F1E8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-category {
    background: rgba(245, 241, 232, 0.1);
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid rgba(245, 241, 232, 0.2);
}

.cookie-label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

.cookie-category-name {
    color: #F5F1E8;
    font-weight: 500;
    font-size: 0.95rem;
}

.cookie-category-desc {
    color: rgba(245, 241, 232, 0.8);
    font-size: 0.85rem;
    line-height: 1.3;
}

.cookie-custom-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: #2D5016;
    color: #F5F1E8;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .logo path {
    fill: #F5F1E8;
}

.footer-brand .logo circle {
    fill: #C5351C;
}

.footer-brand .brand-name {
    color: #F5F1E8;
    font-size: 1.2rem;
}

.footer-brand p {
    color: rgba(245, 241, 232, 0.8);
    margin: 0;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.link-group h4 {
    margin-bottom: 1rem;
    color: #F5F1E8;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 0.5rem;
}

.link-group ul li a {
    color: rgba(245, 241, 232, 0.8);
}

.link-group ul li a:hover {
    color: #C5351C;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 241, 232, 0.2);
}

.footer-bottom p {
    color: rgba(245, 241, 232, 0.7);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .collections-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .seasonal-content,
    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn {
        flex: none;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
    }
    
    .cookie-custom-actions {
        flex-direction: column;
        align-items: center;
    }
}