/* ===================================
   Design Specs Image Carousel Styles
   =================================== */

.design-specs-carousel {
    position: relative;
    width: 75vw;
    max-width: 1400px;
    margin: 48px auto;
    padding: 0;
    left: 50%;
    margin-left: -37.5vw;
}

.specs-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.specs-carousel-slide {
    display: none;
    width: 100%;
}

.specs-carousel-slide.active {
    display: block;
}

.specs-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Navigation Buttons */
.specs-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #0066cc;
    color: #0066cc;
    font-size: 32px;
    font-weight: 600;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.specs-carousel-nav svg {
    display: block;
}

.specs-carousel-nav:hover {
    background: #0066cc;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.specs-carousel-prev {
    left: -120px;
}

.specs-carousel-next {
    right: -120px;
}

/* Indicators */
.specs-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.specs-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.specs-carousel-indicator.active {
    background: #0066cc;
    width: 32px;
    border-radius: 6px;
}

.specs-carousel-indicator:hover {
    background: #0066cc;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .specs-carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .specs-carousel-prev {
        left: -80px;
    }

    .specs-carousel-next {
        right: -80px;
    }
}

@media (max-width: 768px) {
    .specs-carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .specs-carousel-prev {
        left: 0;
    }

    .specs-carousel-next {
        right: 0;
    }

    .design-specs-carousel {
        width: 85vw;
        margin-left: -42.5vw;
    }
}