/* Armage Carousel Frontend Styles */
.armage-carousel-full-wrapper {
    margin: 0;
    padding: 0;
}

.armage-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.armage-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.armage-carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.armage-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.armage-carousel-slide.active {
    opacity: 1;
}

.armage-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Buttons - Hidden */
.armage-carousel-prev,
.armage-carousel-next {
    display: none;
}

/* Indicators - Inside carousel, bottom right */
.armage-carousel-indicators {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 12px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.armage-carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.armage-carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.armage-carousel-indicator.active {
    background: #F8A703;
    transform: scale(1.3);
}

/* Placeholder for empty carousel */
.armage-carousel-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: #f0f0f0;
    color: #666;
    font-size: 16px;
    border: 2px dashed #ccc;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .armage-carousel-indicators {
        bottom: 15px;
        right: 15px;
        padding: 6px 10px;
    }
    
    .armage-carousel-indicator {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 480px) {
    .armage-carousel-indicators {
        bottom: 12px;
        right: 12px;
        padding: 5px 8px;
        gap: 6px;
    }
    
    .armage-carousel-indicator {
        width: 6px;
        height: 6px;
    }
}

/* Loading State */
.armage-carousel-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: #f8f9fa;
    border-radius: 8px;
}

.armage-carousel-loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #008EC2;
    border-radius: 50%;
    animation: armage-spin 1s linear infinite;
}

@keyframes armage-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}