.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 33.333%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    transform: none;
}

.slide-content h3 {
    font-size: 32px;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.slide-content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 80%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide:hover .slide-content h3 {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #27ae60;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

@media (max-width: 768px) {
    .slider-container {
        height: 300px;
    }
}

.parasaliha-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
}

/* Highlighted: Reverted countdown container to original styles */
.countdown-container {
    margin-bottom: 15px;
}

.offer-text {
    color: #ff4444;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    padding: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 15px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 8px;
    min-width: 80px;
}

.countdown-item span {
    color: white;
}

.countdown-item .hours,
.countdown-item .minutes,
.countdown-item .seconds {
    font-size: 28px;
    font-weight: bold;
}

.countdown-item .label {
    font-size: 14px;
    text-transform: uppercase;
}
/* Highlighted: Added promo heading styles */
.promo {
    font-size: 48px;
    font-weight: 900;
    color: #ff4444;
    text-align: center;
    margin: 20px auto;
    text-transform: uppercase;
    text-shadow: 
        3px 3px 0 #000,
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
    letter-spacing: 2px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: fit-content;
    transform: rotate(-5deg);
    border: 3px solid #ff4444;
}

/* Highlighted: Added specific styling for the 5th slide content */
.slide:last-child .slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
    height: 100%;
    top: 0;
}