:root {
    --forest-green: #2D5016;
    --meadow-green: #4A7C2C;
    --soft-sage: #8BA888;
    --honey-gold: #D4A574;
    --sunset-orange: #E87722;
    --sky-blue: #87CEEB;
    --cream-white: #FAF8F3;
    --warm-beige: #E8DCC4;
    --earth-brown: #6B4423;
    --charcoal: #2C2C2C;
    --light-wheat: #F5F1E8;
    --soft-green: #E8F3E8;
    --pure-white: #FFFFFF;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--charcoal);
    background-color: var(--cream-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.iti, #phone {
    width: 100%;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--forest-green);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--meadow-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--meadow-green);
}

.nav-link:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--soft-green);
    border-radius: 20px;
}

.lang-link {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.lang-link.active {
    color: var(--meadow-green);
    font-weight: 700;
}

.lang-separator {
    color: var(--soft-sage);
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--meadow-green) 0%, var(--forest-green) 100%);
    background-image: url('../images/hero-farm.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.7) 0%, rgba(74, 124, 44, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pure-white);
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--honey-gold);
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
}

.cta-button:hover {
    background: var(--sunset-orange);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 119, 34, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--pure-white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.sticky-section {
    position: relative;
    padding: 8rem 2rem;
    background: var(--pure-white);
}

.sticky-section:nth-child(even) {
    background: var(--light-wheat);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--soft-green);
    color: var(--meadow-green);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-large {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--charcoal);
    font-weight: 500;
}

.text-regular {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--earth-brown);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    background: var(--soft-green);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--meadow-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 500;
}

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

.animal-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.animal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(74, 124, 44, 0.2);
    border-color: var(--meadow-green);
}

.animal-icon {
    width: 80px;
    height: 80px;
    background: var(--soft-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--meadow-green);
}

.animal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1rem;
    text-align: center;
}

.animal-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--earth-brown);
    text-align: center;
}

.garden-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--soft-green);
    padding: 3rem;
    border-radius: 20px;
}

.garden-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.garden-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--earth-brown);
    margin-bottom: 1rem;
}

.garden-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.products-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

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

.product-card {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.product-icon-card {
    width: 100%;
    height: 250px;
    background: var(--soft-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--meadow-green);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-green);
    padding: 1.5rem 1.5rem 1rem;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--earth-brown);
    padding: 0 1.5rem 1.5rem;
}

.sales-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-box {
    background: var(--soft-green);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.info-box i {
    font-size: 3rem;
    color: var(--meadow-green);
    margin-bottom: 1.5rem;
}

.info-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.info-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--earth-brown);
}

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

.workshop-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.workshop-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.feature-item i {
    font-size: 2rem;
    color: var(--meadow-green);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--earth-brown);
}

.workshop-note {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--earth-brown);
    font-style: italic;
    padding: 1rem;
    background: var(--soft-green);
    border-radius: 10px;
}

.workshop-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-section {
    padding: 8rem 2rem;
    background: var(--light-wheat);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--meadow-green);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 0.3rem;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--earth-brown);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--warm-beige);
    border-radius: 10px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--cream-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--meadow-green);
    background: var(--pure-white);
}

.checkbox-group {
    flex-direction: row;
    align-items: start;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--earth-brown);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--meadow-green);
    text-decoration: underline;
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--meadow-green);
    color: var(--pure-white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.submit-button:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.3);
}

.footer {
    background: var(--forest-green);
    color: var(--cream-white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--honey-gold);
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

.footer-links a {
    color: var(--cream-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-language {
    display: flex;
    gap: 1rem;
}

.footer-lang-link {
    color: var(--cream-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-lang-link.active {
    color: var(--honey-gold);
    font-weight: 700;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.9rem;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--pure-white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.cookie-consent.hidden {
    transform: translateY(100%);
}

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

.cookie-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.cookie-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--earth-brown);
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--meadow-green);
    color: var(--pure-white);
}

.cookie-btn.accept:hover {
    background: var(--forest-green);
}

.cookie-btn.reject {
    background: var(--warm-beige);
    color: var(--charcoal);
}

.cookie-btn.reject:hover {
    background: var(--earth-brown);
    color: var(--pure-white);
}

.cookie-btn.customize {
    background: var(--honey-gold);
    color: var(--charcoal);
}

.cookie-btn.customize:hover {
    background: var(--sunset-orange);
    color: var(--pure-white);
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
}

.cookie-modal.hidden {
    display: none;
}

.cookie-modal-content {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 2rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--soft-green);
    border-radius: 10px;
}

.cookie-category label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.cookie-category strong {
    display: block;
    font-size: 1.1rem;
    color: var(--forest-green);
    margin-bottom: 0.3rem;
}

.cookie-category p {
    font-size: 0.95rem;
    color: var(--earth-brown);
    line-height: 1.5;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cookie-settings-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--meadow-green);
    color: var(--pure-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(74, 124, 44, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.cookie-settings-btn:hover {
    background: var(--forest-green);
    transform: scale(1.1);
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: var(--light-wheat);
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    background: var(--pure-white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 5rem;
    color: var(--meadow-green);
    margin-bottom: 2rem;
}

.thanks-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.thanks-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.thanks-subtext {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--earth-brown);
    margin-bottom: 3rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.thanks-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-button.primary {
    background: var(--meadow-green);
    color: var(--pure-white);
}

.thanks-button.primary:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
}

.thanks-button.secondary {
    background: var(--honey-gold);
    color: var(--charcoal);
}

.thanks-button.secondary:hover {
    background: var(--sunset-orange);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.thanks-contact {
    padding-top: 2rem;
    border-top: 2px solid var(--warm-beige);
}

.thanks-contact h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.contact-quick {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-quick-item i {
    font-size: 2rem;
    color: var(--meadow-green);
}

.contact-quick-item strong {
    display: block;
    font-size: 1rem;
    color: var(--forest-green);
    margin-bottom: 0.2rem;
}

.contact-quick-item p {
    font-size: 0.95rem;
    color: var(--earth-brown);
}

.legal-section {
    padding: 8rem 2rem 4rem;
    background: var(--cream-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 1rem;
    color: var(--earth-brown);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--meadow-green);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--meadow-green);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--forest-green);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content,
    .garden-highlight,
    .workshop-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sales-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--pure-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .animals-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .thanks-container {
        padding: 2rem;
    }
    
    .thanks-title {
        font-size: 2rem;
    }
}