/**
 * Promotion Slider Styles
 */
.promotion-slider {
    margin: 30px 0;
    position: relative;
}

.promotion-slider .swiper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.promotion-slider .swiper-slide {
    height: auto;
}

.promotion-slide {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.promotion-slide-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* On wider screens, use two columns */
@media (min-width: 768px) {
    .promotion-slide-content {
        flex-direction: row;
    }
    
    .promotion-slide-image,
    .promotion-slide-text {
        width: 50%;
    }
}


.promotion-slide-image {
    flex: 0 0 auto;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 200px;
}

.promotion-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    padding: 15px;
}

.promotion-now-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4d4d;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: rotate(5deg) scale(1);
    }
    50% {
        transform: rotate(5deg) scale(1.1);
    }
    100% {
        transform: rotate(5deg) scale(1);
    }
}

.promotion-slide-no-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.promotion-slide-text {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.promotion-slide-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.promotion-slide-blurb {
    margin-bottom: 15px;
    color: white;
    padding: 0px 10px;
    border-radius: 360px;
    font-size: .85em;
}

.promotion-slide-details {
    font-size: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    margin-top: auto;
}

.promotion-slide-days,
.promotion-slide-times {
    margin-bottom: 5px;
}

.promotion-slide-details .label {
    font-weight: bold;
}

.promotion-slide-button {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.promotion-slide-button:hover {
    opacity: 0.9;
}

/* Navigation arrows */
.promotion-slider .swiper-button-next,
.promotion-slider .swiper-button-prev {
    color: var(--primary-color, #000);
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.promotion-slider .swiper-button-next:hover,
.promotion-slider .swiper-button-prev:hover {
    background-color: var(--secondary-color, #fff);
    color: var(--dark-color, #333);
}

.promotion-slider .swiper-button-next:after,
.promotion-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Pagination */
.promotion-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 0.7;
}

.promotion-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color, #000);
    opacity: 1;
}