

.promotions-page {
    padding: 40px 0;
}


.carousel-container {
    position: relative;
    margin-bottom: 30px;
}


.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    overflow: hidden;
    min-height: 300px;
    align-items: stretch;
}


.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}


.carousel-btn-prev {
    left: -70px;
}


.carousel-btn-next {
    right: -70px;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    opacity: 0.5;
}


.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: #ff6b35;
    width: 30px;
    border-radius: 6px;
}

.indicator-dot:hover {
    background: #ff8c42;
}

.promo-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-header {
    padding: 20px;
    color: white;
}

.promo-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
}

.promo-subtitle {
    font-size: 15px;
    opacity: 0.95;
}

.promo-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-description {
    margin-bottom: 12px;
    line-height: 1.6;
    flex: 1;
}

.promo-validity {
    color: #6b7280;
    font-size: 14px;
}


.promo-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
}

.promo-blue {
    background: linear-gradient(135deg, #3498db 0%, #5dade2 100%);
}

.promo-green {
    background: linear-gradient(135deg, #2ecc71 0%, #58d68d 100%);
}

.promo-red {
    background: linear-gradient(135deg, #e74c3c 0%, #ec7063 100%);
}

.promo-purple {
    background: linear-gradient(135deg, #9b59b6 0%, #bb8fce 100%);
}

.promo-yellow {
    background: linear-gradient(135deg, #f39c12 0%, #f8c471 100%);
}


@media (max-width: 768px) {
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
