/* Single Product Carousel Styles */
.product-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.product-nav {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
}

.product-nav:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

#current-product-display {
    flex: 1;
    max-width: 800px;
}

.product-card-single {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.product-main-image-large {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.product-card-single .product-info {
    padding: 2rem;
}

.product-card-single h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.product-indicator {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.product-indicator #current-product-num {
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .product-carousel-container {
        gap: 1rem;
    }

    .product-nav {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .product-main-image-large {
        height: 250px;
    }

    .product-card-single .product-info {
        padding: 1.5rem;
    }

    .product-card-single h2 {
        font-size: 1.5rem;
    }
}