/* Products Section Styles */
.products-section {
    padding: 80px 0;
    min-height: 100vh;
}

.section-title {
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Product Categories */
.product-category {
    margin-bottom: 80px;
}

.product-category h2 {
    color: white;
    margin-bottom: 40px;
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.product-category h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: width 0.3s ease;
}

.product-category:hover h2::after {
    width: 120px;
}

/* Product Items Grid */
.product-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 10px;
}

.product-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
}

.product-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-item h3 {
    padding: 20px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .product-category h2 {
        font-size: 1.8rem;
    }

    .product-item img {
        height: 220px;
    }
}