.delux-slideshow-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.delux-slideshow {
    display: flex;
    transition: transform 0.5s ease;
    height: 500px;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    max-width: 40%;
    padding: 20px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 10px;
}

.slide-title {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.slide-description {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.slide-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.slide-button:hover {
    background-color: #ff5252;
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #ff4757;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2em;
}

.offer-text, .delivery-text {
    margin: 10px 0;
    font-style: italic;
}

.verified-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #2ed573;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
}

.slide-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-dots {
    display: flex;
    gap: 5px;
}

.slide-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
}

.slide-dots .dot.active {
    background-color: white;
}

.prev-slide, .next-slide {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    background-color: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .delux-slideshow {
        height: 300px;
    }
    
    .slide-content {
        max-width: 80%;
        left: 5%;
        padding: 10px;
    }
    
    .slide-title {
        font-size: 1.5em;
    }
    
    .slide-description {
        font-size: 1em;
    }
}

/* Modern animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-content {
    animation: fadeIn 0.8s ease;
}