/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #faf9f7;
}

.area-yeart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: #8b4513;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Buttons */
.area-yeart-btn-primary {
    background: linear-gradient(135deg, #d2691e, #cd853f);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.area-yeart-btn-primary:hover {
    background: linear-gradient(135deg, #cd853f, #d2691e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
}

.area-yeart-btn-secondary {
    background: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.area-yeart-btn-secondary:hover {
    background: #8b4513;
    color: white;
    transform: translateY(-2px);
}

/* Cookie Banner */
.area-yeart-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #9acd32, #8fbc8f);
    z-index: 1000;
    padding: 20px;
    display: none;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.area-yeart-cookie-container {
    max-width: 1200px;
    margin: 0 auto;
}

.area-yeart-cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.area-yeart-cookie-content p {
    color: white;
    margin: 0;
    flex: 1;
}

.area-yeart-cookie-buttons {
    display: flex;
    gap: 10px;
}

.area-yeart-cookie-accept, .area-yeart-cookie-decline {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-yeart-cookie-accept {
    background: white;
    color: #8fbc8f;
}

.area-yeart-cookie-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.area-yeart-cookie-accept:hover {
    background: #f0f0f0;
}

.area-yeart-cookie-decline:hover {
    background: white;
    color: #8fbc8f;
}

/* Header */
.area-yeart-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.area-yeart-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.area-yeart-logo h1 {
    font-size: 1.8rem;
    color: #8b4513;
    margin: 0;
}

.area-yeart-logo span {
    font-size: 0.9rem;
    color: #d2691e;
    font-weight: 400;
}

.area-yeart-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.area-yeart-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.area-yeart-menu a:hover {
    color: #d2691e;
}

.area-yeart-contact-info {
    color: #8b4513;
    font-weight: 600;
}

/* Hero Section */
.area-yeart-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5dc, #faf0e6);
    overflow: hidden;
}

.area-yeart-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.area-yeart-hero-text h2 {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.area-yeart-hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.area-yeart-hero-buttons {
    display: flex;
    gap: 1rem;
}

.area-yeart-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Features Section */
.area-yeart-features {
    padding: 80px 0;
    background: white;
}

.area-yeart-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.area-yeart-feature-card {
    text-align: center;
    padding: 2rem;
    background: #faf9f7;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.area-yeart-feature-card:hover {
    transform: translateY(-5px);
}

.area-yeart-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.area-yeart-feature-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

/* Products Section */
.area-yeart-products {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
}

.area-yeart-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.area-yeart-section-header h2 {
    color: #8b4513;
}

.area-yeart-products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.area-yeart-product-category {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.area-yeart-product-category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.area-yeart-product-category:hover img {
    transform: scale(1.05);
}

.area-yeart-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.area-yeart-category-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.area-yeart-category-link {
    background: #d2691e;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.area-yeart-category-link:hover {
    background: #cd853f;
}

/* Testimonials Section */
.area-yeart-testimonials {
    padding: 80px 0;
    background: #f8f8f8;
}

.area-yeart-testimonials h2 {
    text-align: center;
    color: #8b4513;
    margin-bottom: 3rem;
}

.area-yeart-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.area-yeart-testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.area-yeart-testimonial-card:hover {
    transform: translateY(-3px);
}

.area-yeart-testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
}

.area-yeart-testimonial-author strong {
    color: #8b4513;
    display: block;
}

.area-yeart-testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* About Section */
.area-yeart-about {
    padding: 80px 0;
    background: white;
}

.area-yeart-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.area-yeart-about-text h2 {
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.area-yeart-about-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

.area-yeart-about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.area-yeart-stat {
    text-align: center;
}

.area-yeart-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d2691e;
    font-family: 'Playfair Display', serif;
}

.area-yeart-stat-label {
    color: #666;
    font-size: 0.9rem;
}

.area-yeart-about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Newsletter Section */
.area-yeart-newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #9acd32, #8fbc8f);
    color: white;
}

.area-yeart-newsletter-content {
    text-align: center;
}

.area-yeart-newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.area-yeart-newsletter-content p {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.area-yeart-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.area-yeart-newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.area-yeart-newsletter-btn {
    background: #8b4513;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.area-yeart-newsletter-btn:hover {
    background: #a0522d;
}

/* Contact Info Section */
.area-yeart-contact-info {
      padding: 10px 10px;
    background: #f8f8f8;
    border-radius: 20px;
}

.area-yeart-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.area-yeart-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.area-yeart-contact-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.area-yeart-contact-card p {
    margin-bottom: 0.5rem;
    color: #666;
}

.area-yeart-contact-link {
    background: #d2691e;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.area-yeart-contact-link:hover {
    background: #cd853f;
}

.area-yeart-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.area-yeart-social-links a {
    color: #8b4513;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.area-yeart-social-links a:hover {
    color: #d2691e;
}

/* Footer */
.area-yeart-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.area-yeart-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.area-yeart-footer-section h4 {
    color: #d2691e;
    margin-bottom: 1rem;
}

.area-yeart-footer-section p {
    color: #bdc3c7;
}

.area-yeart-footer-section ul {
    list-style: none;
}

.area-yeart-footer-section ul li {
    margin-bottom: 0.5rem;
}

.area-yeart-footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.area-yeart-footer-section ul li a:hover {
    color: #d2691e;
}

.area-yeart-footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .area-yeart-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .area-yeart-hero-text h2 {
        font-size: 2.2rem;
    }
    
    .area-yeart-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .area-yeart-about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .area-yeart-about-stats {
        justify-content: center;
    }
    
    .area-yeart-nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .area-yeart-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .area-yeart-newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .area-yeart-cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .area-yeart-cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .area-yeart-container {
        padding: 0 15px;
    }
    
    .area-yeart-hero {
        padding: 40px 0;
    }
    
    .area-yeart-hero-text h2 {
        font-size: 1.8rem;
    }
    
    .area-yeart-features,
    .area-yeart-products,
    .area-yeart-testimonials,
    .area-yeart-about {
        padding: 40px 0;
    }
    
    .area-yeart-feature-card,
    .area-yeart-testimonial-card,
    .area-yeart-contact-card {
        padding: 1.5rem;
    }
}

.area-yeart-category-overlay p {
    color: white;
}

        .area-yeart-thank-you {
            padding: 120px 0;
            background: linear-gradient(135deg, #f5f5dc, #faf0e6);
            text-align: center;
        }
        
        .area-yeart-thank-you-content {
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }
        
        .area-yeart-thank-you-content.area-yeart-fade-in {
            opacity: 1;
            transform: translateY(0);
        }
        
        .area-yeart-success-icon {
            margin-bottom: 2rem;
        }
        
        .area-yeart-checkmark {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #9acd32, #8fbc8f);
            border-radius: 50%;
            color: white;
            font-size: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            transform: scale(0);
            transition: transform 0.4s ease;
        }
        
        .area-yeart-success-icon.area-yeart-animate .area-yeart-checkmark {
            transform: scale(1);
        }
        
        .area-yeart-thank-you h1 {
            font-size: 3rem;
            color: #8b4513;
            margin-bottom: 1.5rem;
        }
        
        .area-yeart-thank-you-message {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .area-yeart-next-steps {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            text-align: left;
        }
        
        .area-yeart-next-steps h3 {
            color: #8b4513;
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .area-yeart-next-steps ul {
            list-style: none;
            padding: 0;
        }
        
        .area-yeart-next-steps li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f0f0;
            color: #666;
        }
        
        .area-yeart-next-steps li:last-child {
            border-bottom: none;
        }
        
        .area-yeart-next-steps li:before {
            content: "✓";
            color: #9acd32;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .area-yeart-thank-you-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .area-yeart-contact-alternatives {
            padding: 80px 0;
            background: white;
        }
        
        .area-yeart-alt-contact h2 {
            text-align: center;
            color: #8b4513;
            margin-bottom: 3rem;
        }
        
        .area-yeart-contact-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .area-yeart-contact-option {
            background: #f8f8f8;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .area-yeart-contact-option:hover {
            transform: translateY(-5px);
        }
        
        .area-yeart-contact-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .area-yeart-contact-option h3 {
            color: #8b4513;
            margin-bottom: 1rem;
        }
        
        .area-yeart-contact-option p {
            color: #666;
            margin-bottom: 0.5rem;
        }
        
        .area-yeart-contact-option p:last-child {
            font-size: 0.9rem;
            color: #999;
        }
        
        @media (max-width: 768px) {
            .area-yeart-thank-you {
                padding: 80px 0;
            }
            
            .area-yeart-thank-you h1 {
                font-size: 2.2rem;
            }
            
            .area-yeart-thank-you-message {
                font-size: 1.1rem;
            }
            
            .area-yeart-thank-you-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .area-yeart-contact-alternatives {
                padding: 40px 0;
            }
        }

    