/* Product Hero Banner */
.product-hero {
    background: url('../images/products/interier.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
}

.product-hero .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px 20px;
    border-radius: 10px;
}

.product-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.product-hero p {
    font-size: 1.2rem;
}

/* Product Categories */
.product-categories {
    padding: 60px 20px;
    background: #f8f8f8;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
    padding: 20px;
}

.category:hover {
    transform: translateY(-8px);
}

.category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.category h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.category p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.category a {
    display: inline-block;
    padding: 10px 25px;
    background-color: #d35400;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.category a:hover {
    background-color: #e67e22;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .product-hero h1 {
        font-size: 2rem;
    }

    .product-hero p {
        font-size: 1rem;
    }

    .category img {
        height: 150px;
    }
}
