/* Ana Sayfa Stilleri */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(168, 213, 186, 0.1), rgba(124, 179, 66, 0.1));
    border-radius: 15px;
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Dancing Script', 'Pacifico', 'Lobster', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
}

.products-section {
    margin-top: 3rem;
}

.products-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.section-title {
    font-size: 3.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: 'Dancing Script', 'Pacifico', 'Lobster', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--light-bg);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: 1.2rem;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.product-name span[style*="color: var(--secondary-color)"] {
    font-family: 'Dancing Script', 'Pacifico', 'Lobster', cursive;
    font-size: 2rem;
    display: block;
}

.product-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-detail {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
    font-weight: 500;
}

.btn-detail:hover {
    background: var(--primary-color);
}

.no-products {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 10px;
    color: #666;
}

/* SEO Content Section */
.seo-content {
    margin: 2rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
}

.seo-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.seo-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2.5rem 1rem;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .seo-content {
        margin: 1.5rem 0 !important;
        padding: 1.5rem 1rem !important;
    }

    .seo-content h2 {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
    }

    .seo-content p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        margin-bottom: 0.8rem !important;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .products-intro {
        font-size: 1rem !important;
        padding: 0 0.5rem;
    }

    .seo-content {
        margin: 1.5rem 0 !important;
        padding: 1.5rem 1rem !important;
    }

    .seo-content h2 {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
    }

    .seo-content p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        margin-bottom: 0.8rem !important;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .product-image {
        height: 220px;
    }

    .product-info {
        padding: 1.2rem;
    }

    .product-name {
        font-size: 1.3rem;
    }

    .product-description {
        font-size: 0.95rem;
    }

    .btn-detail {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
        min-height: 48px; /* Touch-friendly */
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0.5rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .products-grid {
        gap: 1rem;
    }

    .product-image {
        height: 200px;
    }
}
