* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
    color: #2e7d32;
    padding-bottom: 90px;
    min-height: 100vh;
}

.organic-wrapper {
    position: relative;
    min-height: 100vh;
}

.natural-header {
    background: linear-gradient(135deg, #4a7c59 0%, #66bb6a 100%);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.leaf-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50% 0 50% 50%;
    transform: rotate(45deg);
}

.header-content {
    position: relative;
    z-index: 2;
}

.organic-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.tagline-natural {
    color: #e8f5e9;
    font-size: 1.1rem;
    font-style: italic;
}

.nature-content {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nature-section {
    display: none;
    animation: growIn 0.6s ease;
}

.nature-section.active {
    display: block;
}

@keyframes growIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-organic {
    margin-bottom: 3rem;
}

.curved-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 50px 20px 50px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
}

.curved-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #4a7c59;
    border-radius: 50%;
    opacity: 0.3;
}

.curved-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #66bb6a;
    border-radius: 50%;
    opacity: 0.3;
}

.section-title-organic {
    font-size: 2.2rem;
    color: #2e7d32;
    margin-bottom: 1rem;
    font-weight: normal;
    position: relative;
    display: inline-block;
}

.section-title-organic::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #4a7c59, #66bb6a);
    border-radius: 2px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a7c59;
}

.organic-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.nature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.5s ease;
}

.nature-card:hover::before {
    left: 100%;
}

.nature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-icon-nature {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.nature-card h3 {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-bottom: 1rem;
    font-weight: normal;
}

.nature-card p {
    color: #4a7c59;
    line-height: 1.6;
}

.gallery-organic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    height: 250px;
    border-radius: 30px 10px 30px 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.catalog-container,
.guides-container,
.blog-container,
.about-organic {
    background: #ffffff;
    padding: 3rem;
    border-radius: 40px 15px 40px 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.plant-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.plant-item {
    background: #f1f8f4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.plant-item:hover {
    transform: translateY(-5px);
}

.plant-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #66bb6a 0%, #4a7c59 100%);
}

.plant-info {
    padding: 1.5rem;
}

.plant-info h3 {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.plant-type {
    color: #4a7c59;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.plant-price {
    font-size: 1.3rem;
    color: #66bb6a;
    font-weight: bold;
}

.guides-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.guide-article {
    background: #f1f8f4;
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid #4a7c59;
}

.guide-article h3 {
    font-size: 1.5rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.guide-article p {
    color: #4a7c59;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.guide-link {
    color: #4a7c59;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.guide-link:hover {
    color: #2e7d32;
}

.blog-posts {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.blog-post {
    background: #f1f8f4;
    padding: 2rem;
    border-radius: 20px;
    border-top: 4px solid #66bb6a;
}

.post-date {
    color: #4a7c59;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-post h3 {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.blog-post p {
    color: #4a7c59;
    line-height: 1.7;
}

.about-text {
    margin-top: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
    z-index: 1000;
    border-top: 3px solid #4a7c59;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #4a7c59;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    position: relative;
}

.bottom-nav-item::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #4a7c59;
    border-radius: 0 0 3px 3px;
    transition: width 0.3s ease;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: #2e7d32;
    background: #e8f5e9;
}

.bottom-nav-item.active::before {
    width: 80%;
}

.bottom-icon {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.bottom-label {
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .organic-cards,
    .plant-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-organic {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .organic-cards,
    .plant-grid {
        grid-template-columns: 1fr;
    }
    
    .bottom-nav {
        padding: 0.8rem 0;
    }
    
    .bottom-label {
        font-size: 0.7rem;
    }
    
    .bottom-icon {
        font-size: 1.5rem;
    }
}

.intro-list {
    margin: 1.5rem 0 0 1.2rem;
    color: #4a7c59;
    line-height: 1.8;
}

.loading-message {
    color: #7fb069;
    font-style: italic;
    text-align: center;
    margin: 2rem 0;
}

.cta-row {
    margin-top: 2rem;
    text-align: center;
}

.primary-link,
.secondary-link,
.ghost-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-link {
    background: linear-gradient(135deg, #4a7c59, #66bb6a);
    color: #ffffff;
    padding: 0.85rem 1.6rem;
    box-shadow: 0 10px 20px rgba(74, 124, 89, 0.25);
}

.primary-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(74, 124, 89, 0.25);
}

.secondary-link {
    color: #4a7c59;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(74, 124, 89, 0.3);
}

.ghost-link {
    color: #4a7c59;
    padding: 0.5rem 1rem;
    border: none;
    background: rgba(74, 124, 89, 0.08);
}

.ghost-link:hover,
.secondary-link:hover {
    transform: translateY(-2px);
}

.info-badge {
    display: inline-block;
    background: rgba(102, 187, 106, 0.15);
    color: #2e7d32;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.8rem 0 0;
}

.tag-row span {
    background: rgba(74, 124, 89, 0.1);
    color: #2e7d32;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
}

.content-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.content-modal--open {
    display: flex;
}

.content-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
}

.content-modal__body {
    position: relative;
    background: #fefefe;
    border-radius: 20px;
    padding: 2.5rem;
    width: min(900px, 90vw);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

.content-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: transparent;
    font-size: 2rem;
    color: #4a7c59;
    cursor: pointer;
}

.fade-in {
    animation: fadeInUp 0.45s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer {
    background: #f0f7ed;
    border-top: 2px solid #7fb069;
    padding: 2rem;
    text-align: center;
    color: #3d5a2f;
    margin-top: 2rem;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer__meta {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.error-text {
    color: #c62828;
}

