/* Ürünler Sayfası Özel Stiller - Mobile First */

/* Header Override */
body .header {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.95) 0%, rgba(139, 111, 71, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

body .header.scrolled {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.98) 0%, rgba(139, 111, 71, 0.98) 100%);
}

body .logo-img {
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

body .nav-link {
    color: var(--white);
}

/* Mobile Menu Override */
@media (max-width: 1024px) {
    body .nav-menu {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    body .nav-link {
        color: var(--text-dark) !important;
        text-shadow: none !important;
    }
    
    body .nav-link:hover {
        color: var(--primary-color) !important;
        background: rgba(74, 124, 89, 0.1) !important;
    }
}

body .cta-button {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

/* Hero */
.products-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: url('images/Bahçe&peyzaj ürünleri/WhatsApp Image 2025-11-14 at 19.34.54 (1).jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.85) 0%, rgba(44, 62, 80, 0.85) 100%);
}

.products-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 1rem;
}

.products-hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.products-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Category Filter */
.category-filter {
    background: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.filter-buttons::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    flex-shrink: 0;
    background: var(--white);
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

/* Products Catalog */
.products-catalog {
    padding: 2rem 0 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eff5 100%);
}

.product-category {
    margin-bottom: 3rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.product-category.hidden {
    display: none;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.category-title {
    font-size: 1.75rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.category-description {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid-catalog {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
}

/* Product Card */
.product-card-catalog {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.product-card-catalog:active {
    transform: scale(0.98);
}

.product-image-catalog {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image-catalog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-catalog:hover .product-image-catalog img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-badge.popular {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.product-info-catalog {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.product-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    padding: 0.875rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.2);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 124, 89, 0.3);
}

.product-btn:active {
    transform: translateY(0);
}

/* Products CTA */
.products-cta {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

.products-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.products-cta-title {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.products-cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .products-hero {
        height: 60vh;
        margin-top: 80px;
    }

    .products-hero-title {
        font-size: 3rem;
    }

    .products-hero-subtitle {
        font-size: 1.3rem;
    }

    .category-filter {
        top: 80px;
    }

    .filter-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .products-grid-catalog {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .category-title {
        font-size: 2.25rem;
    }

    .category-description {
        font-size: 1.1rem;
    }

    .product-image-catalog {
        height: 280px;
    }

    .products-cta-title {
        font-size: 2.5rem;
    }

    .products-cta-text {
        font-size: 1.15rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .products-grid-catalog {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .product-card-catalog:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .products-grid-catalog {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-image-catalog {
        height: 300px;
    }
}

/* Yüzen İletişim Butonları */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-btn,
.phone-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.phone-btn {
    background: linear-gradient(135deg, #4a7c59 0%, #3d6548 100%);
    color: white;
}

.whatsapp-btn:hover,
.phone-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn:active,
.phone-btn:active {
    transform: translateY(-1px) scale(1.02);
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .whatsapp-btn,
    .phone-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn svg,
    .phone-btn svg {
        width: 22px;
        height: 22px;
    }
}
