/* Products Carousel Section */
.products-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
}

.products-header .highlight {
    color: #fff;
    font-weight: 900;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 32px;
}

/* Product Cards */
.product-card {
    min-width: calc(25% - 24px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Info */
.product-info {
    padding: 24px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.product-logo {
    margin-bottom: 16px;
}

.product-logo img {
    max-height: 40px;
    width: auto;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info p {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.4;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.indicator.active {
    background: #fff;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Placeholder backgrounds for when images aren't available */
.product-card:nth-child(1) .product-image {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.product-card:nth-child(2) .product-image {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

.product-card:nth-child(3) .product-image {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

.product-card:nth-child(4) .product-image {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-card {
        min-width: calc(50% - 16px);
    }

    .products-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .products-container {
        padding: 0 16px;
    }

    .product-card {
        min-width: calc(100% - 32px);
    }

    .products-header h2 {
        font-size: 2rem;
    }

    .product-image {
        height: 250px;
    }

    .carousel-track {
        gap: 20px;
    }
}