.products-grid {
    padding: 2rem 0;
}

.section-divider {
    border: none;
    margin: 3rem auto;
    width: 80%;
    max-width: 600px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.section-divider:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 1);
}

.product-category {
    margin-bottom: 4rem;
}

.product-category h2 {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.74);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.product-category .row {
    margin-bottom: 2rem;
}

.product-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: scale(1);
}

.product-category img:hover {
    transform: scale(1.3);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.product-category .row:first-child .col-md-6 {
    padding-bottom: 1rem;
}

.product-category .col-md-6:last-child .row {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    margin: 1rem 0;
}

.product-category .col-md-6:last-child .row h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-category .col-md-6:last-child .row p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .product-category img {
        height: 150px;
    }
    
    .product-category h3 {
        font-size: 1.2rem;
    }
    
    .product-category .row:first-child .col-md-6 {
        padding-bottom: 0.5rem;
    }
}

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

.product-category h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.product-category p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .product-category img {
        height: 150px;
    }
    
    .product-category h3 {
        font-size: 1.2rem;
    }
}
