/* index.php — винесено з inline <style> 20260908_2104 */
/* СТИЛІ СПЕЦИФІЧНІ ДЛЯ ГОЛОВНОЇ СТОРІНКИ */

/* Hero Section */
.hero-section {
    padding: 3rem 0;
    background: #ffffff;
}

.hero-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 2rem;
    color: #000000;
    font-weight: 600;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
}

.category-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.3);
}

.category-card:hover span {
    color: #4A90E2;
}

.category-card span {
    text-align: center;
    padding: 1rem;
    background: #ffffff;
    width: 100%;
    font-size: 22px;
}

/* Types Section */
.types-section {
    padding: 3rem 0;
    background: #f0f0f0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.type-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.3);
}

.type-card:hover span {
    color: #4A90E2;
}

.type-card span {
    text-align: center;
    padding: 1rem;
    background: #ffffff;
    width: 100%;
    font-size: 22px;
}

/* Gender Section */
.gender-section {
    padding: 3rem 0;
    background: #ffffff;
}

/* Colors Section */
.colors-section {
    padding: 3rem 0;
    background: #ffffff;
}

.colors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.color-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.color-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74, 144, 226, 0.2);
    border-color: #4A90E2;
    color: #4A90E2;
}

/* Brands Section */
.brands-section {
    padding: 3rem 0;
    background: #f0f0f0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 2rem;
    color: #000000;
    font-weight: 600;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.brand-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    min-height: 200px;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.3);
}

.brand-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section, .types-section, .gender-section, .colors-section, .brands-section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 1.5rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .category-card, .type-card {
        font-size: 18px;
    }

    .category-card span, .type-card span {
        font-size: 22px;
    }

    .brand-card {
        padding: 2rem 1.5rem;
        min-height: 150px;
    }

    .brand-logo {
        max-width: 180px;
    }

    .colors-grid {
        gap: 10px;
    }

    .color-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
}
    
