.container-slider-wrapper {
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.container-slider {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.slider-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.view-all-link {
    color: #ff9a56;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 2px solid #ff9a56;
    transition: opacity 0.3s ease;
}

.view-all-link:hover {
    opacity: 0.8;
}

.slider-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Slides Container */
.slider-slides {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: grid;
    grid-template-columns: 1fr 400px;
    grid-template-rows: auto 1fr auto;
    gap: 30px;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Background Capacity Text */
.background-capacity {
    position: absolute;
    font-size: 280px;
    font-family: "Cronos Pro", Sans-serif;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.slide:not(.active) .background-capacity {
    opacity: 0;
}

/* Container Image */
.container-image {
    grid-column: 1;
    grid-row: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.container-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.slide.active .container-image img {
    animation: slideInImage 0.6s ease;
}

@keyframes slideInImage {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Info Panel */
.info-panel {
    grid-column: 2;
    grid-row: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 8px;
    z-index: 2;
}

.info-header {
    margin-bottom: 20px;
}

.container-name {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

/* Progress Bar */
.progress-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #ff9a56;
    border-radius: 2px;
    transition: width 0.1s linear;
}

.slide.active .progress-bar {
    animation: progressBarAnimation var(--progress-duration, 5000ms) linear;
}

@keyframes progressBarAnimation {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Specs */
.specs {
    display: grid;
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
}

.spec-label {
    opacity: 0.9;
}

.spec-value {
    font-weight: 600;
}

/* Description Panel */
.description-panel {
    grid-column: 1;
    grid-row: 3;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 8px;
    z-index: 2;
    max-width: 600px;
}

.description-panel p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Slider Footer */
.slider-footer {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    gap: 12px;
    z-index: 2;
}

.container-select {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    cursor: pointer;
}

.get-quote-btn {
    padding: 12px 32px;
    background: #ff9a56;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.get-quote-btn:hover {
    background: #e8894d;
}

/* Arrows */
.slider-arrow {
    background: #ff9a56;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: #e8894d;
}

.slider-arrow svg {
    color: #ffffff;
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }
    
    .container-image {
        grid-column: 1;
        grid-row: 1;
    }
    
    .info-panel {
        grid-column: 1;
        grid-row: 2;
    }
    
    .description-panel {
        grid-column: 1;
        grid-row: 3;
        max-width: 100%;
    }
    
    .slider-footer {
        grid-column: 1;
        grid-row: 4;
    }
    
    .background-capacity {
        font-size: 180px;
    }
}

@media (max-width: 768px) {
    .slider-title {
        font-size: 32px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .background-capacity {
        font-size: 120px;
    }
}
