/* Premium Showcase Slider Styles */
.daraz-c5231df1-hero-container {
    width: 100%;
    background-color: #0f0f11;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

.daraz-c5231df1-slider {
    position: relative;
    width: 100%;
    min-height: 500px;
    height: 70vh;
}

.daraz-c5231df1-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.daraz-c5231df1-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    box-sizing: border-box;
}

.daraz-c5231df1-slide.active {
    opacity: 1;
    z-index: 2;
}

.daraz-c5231df1-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0,0,0,0.45);
}

.daraz-c5231df1-slider-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}

.daraz-c5231df1-slide.active .daraz-c5231df1-slider-content {
    opacity: 1;
    transform: translateY(0);
}

.daraz-c5231df1-slider-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
}

.daraz-c5231df1-slider-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 15px 0;
}

.daraz-c5231df1-slider-price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #f57224;
    margin-bottom: 25px;
}

.daraz-c5231df1-slider-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #f57224;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.daraz-c5231df1-slider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Dots Styling */
.daraz-c5231df1-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.daraz-c5231df1-dot {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.daraz-c5231df1-dot.active {
    width: 48px;
    background-color: #f57224;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .daraz-c5231df1-slider {
        min-height: 380px;
        height: 50vh;
    }
    .daraz-c5231df1-slide {
        padding: 0 20px;
        justify-content: center;
        text-align: center;
    }
    .daraz-c5231df1-slider-title {
        font-size: 28px;
    }
    .daraz-c5231df1-slider-price {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .daraz-c5231df1-slider-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
    .daraz-c5231df1-dots {
        bottom: 20px;
    }
}
