/* Product Categories Section */
.product-categories {
    padding: 60px 0;
    background: #fff;
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Promotional Banner */
.promo-banner {
    background: #166534;
    padding: 40px 30px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
}

.promo-title {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.promo-subtitle {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.promo-btn {
    background: #dc2626;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.promo-btn:hover {
    background: #b91c1c;
}

.promo-btn svg {
    transition: transform 0.3s ease;
}

.promo-btn:hover svg {
    transform: translateX(4px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-label {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    padding: 12px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-categories {
        padding: 50px 0;
    }
    
    .categories-container {
        gap: 30px;
    }
    
    .promo-banner {
        padding: 30px 25px;
    }
    
    .promo-title {
        font-size: 24px;
    }
    
    .promo-subtitle {
        font-size: 15px;
    }
    
    .products-grid {
        gap: 15px;
    }
    
    .product-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .product-categories {
        padding: 40px 0;
    }
    
    .categories-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .promo-banner {
        padding: 25px 20px;
        text-align: center;
    }
    
    .promo-title {
        font-size: 22px;
    }
    
    .promo-subtitle {
        font-size: 14px;
    }
    
    .promo-btn {
        align-self: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-label {
        font-size: 13px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .product-categories {
        padding: 30px 0;
    }
    
    .categories-container {
        padding: 0 15px;
        gap: 20px;
    }
    
    .promo-banner {
        padding: 20px 15px;
    }
    
    .promo-title {
        font-size: 20px;
    }
    
    .promo-subtitle {
        font-size: 13px;
    }
    
    .promo-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-image {
        height: 140px;
    }
    
    .product-label {
        font-size: 12px;
        padding: 8px;
    }
}

@media (max-width: 360px) {
    .product-categories {
        padding: 25px 0;
    }
    
    .promo-banner {
        padding: 18px 12px;
    }
    
    .promo-title {
        font-size: 18px;
    }
    
    .promo-subtitle {
        font-size: 12px;
    }
    
    .promo-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .products-grid {
        gap: 10px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-label {
        font-size: 11px;
        padding: 6px;
    }
}
