/* Shany Promotions Frontend Styles */

/* Happy Hour Banner */
.shany-happy-hour-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    animation: slideUp 0.5s ease-out;
}

.shany-happy-hour-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    max-width: 1200px;
    margin: 0 auto;
}

.shany-happy-hour-icon {
    font-size: 24px;
    animation: bounce 1s infinite;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Tiered Pricing Table */
.shany-tiered-pricing-table {
    margin: 15px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.shany-tiered-pricing-table h4 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #333;
}

.shany-tiered-pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.shany-tiered-pricing-table th,
.shany-tiered-pricing-table td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.shany-tiered-pricing-table th {
    background: #eee;
    font-weight: 600;
}

.shany-tiered-pricing-table tr:nth-child(even) {
    background: #f5f5f5;
}

/* Flash Sale Badge */
.shany-flash-sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4757;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    animation: pulse 1.5s infinite;
    z-index: 10;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* RTL Support */
[dir="rtl"] .shany-happy-hour-content,
.rtl .shany-happy-hour-content {
    direction: rtl;
}

[dir="rtl"] .shany-tiered-pricing-table,
.rtl .shany-tiered-pricing-table {
    direction: rtl;
}

/* Mobile Responsive */
@media screen and (max-width: 600px) {
    .shany-happy-hour-content {
        font-size: 14px;
        flex-direction: column;
        gap: 5px;
    }

    .shany-happy-hour-icon {
        font-size: 20px;
    }

    .shany-tiered-pricing-table th,
    .shany-tiered-pricing-table td {
        padding: 6px 8px;
        font-size: 13px;
    }
}
