/* 
 * Workspace Carousel Container 
 */
.ekoss360-carousel-container {
    position: relative;
    padding: 0 40px;
    margin-bottom: 30px;
}

.ekoss360-spaces-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scrollbar-width: none;
    /* Hide scrollbar for carousel feel */
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    align-items: stretch;
}

.ekoss360-spaces-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for carousel feel */
}

/* Carousel Arrows */
.ekoss360-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ekoss360-carousel-arrow:hover {
    background: #f0f0f1;
    transform: translateY(-50%) scale(1.1);
}

.ekoss360-carousel-arrow.prev {
    left: -10px;
}

.ekoss360-carousel-arrow.next {
    right: -10px;
}

/* Dots */
.ekoss360-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.ekoss360-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.2s;
}

.ekoss360-carousel-dot.active {
    background: #0073aa;
    transform: scale(1.2);
}

.ekoss360-carousel-arrow[disabled] {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

/* 
 * Step Navigation Indicators
 */
.ekoss360-step-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.ekoss360-step-indicator {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #eee;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
    transition: all 0.3s ease;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #eee;
}

.ekoss360-step-indicator.active {
    background: #0073aa;
    color: #fff;
    box-shadow: 0 0 0 2px #0073aa;
}

.ekoss360-step-indicator.completed {
    background: #4caf50;
    color: #fff;
    box-shadow: 0 0 0 2px #4caf50;
}

.ekoss360-step-line {
    position: absolute;
    top: 17px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #eee;
    z-index: 1;
}

/* 
 * Form Enhancements 
 */
.ekoss360-form-group {
    margin-bottom: 20px;
}

.ekoss360-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.ekoss360-form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.2s;
}

.ekoss360-form-group input:focus {
    border-color: #0073aa;
    outline: none;
}

/* Pricing Summary */
.ekoss360-pricing-summary,
.ekoss360-review-summary {
    background: #f9fbfc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #0073aa;
}

.ekoss360-pricing-summary p,
.ekoss360-review-summary p {
    margin: 0 0 10px;
    display: flex;
    justify-content: space-between;
}

.ekoss360-review-summary hr {
    margin: 15px 0;
    border: none;
    border-top: 1px solid #e1e8ed;
}

.ekoss360-review-summary .final-price {
    font-size: 1.25em;
    color: #0073aa;
    font-weight: bold;
}

/* Add-ons List */
.ekoss360-addons-list {
    display: grid;
    gap: 12px;
}

.ekoss360-addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: 1px solid #eee;
    padding: 12px 15px;
    border-radius: 8px;
    background: #fff;
    transition: all 0.2s;
}

.ekoss360-addon-item:hover {
    border-color: #0073aa;
    background: #f7fbfc;
}

.ekoss360-addon-item .addon-price {
    font-weight: bold;
    color: #0073aa;
}

/* Workspace Card Refinement */
.ekoss360-space-card {
    border-width: 1px;
    flex: 0 0 280px;
    /* Slightly wider cards for scroll */
}

@media (min-width: 768px) {
    .ekoss360-space-card {
        flex: 0 0 450px;
    }
}

/* Navigation Buttons */
.ekoss360-nav-buttons button {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 480px) {
    .ekoss360-carousel-container {
        padding: 0 10px;
    }

    .ekoss360-carousel-arrow {
        display: none;
        /* Hide on mobile if swipe is enough, or keep small ones */
    }

    .ekoss360-space-card {
        flex: 0 0 85%;
    }
}