/* ============================================
   PROMO BANNERS - COLORFUL FEATURE CARDS
   Modern, eye-catching promotional banners
   ============================================ */

.promo-banners {
    margin-bottom: 40px;
}

.promo-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.promo-banner-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.product-buttons-box4 {
    padding: 12px 15px;
    display: flex;
    gap: 8px;
}

.more-btn-box4,
.buy-btn-box4 {
    flex: 1;
    padding: 10px 5px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
}

.promo-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: all 0.6s;
}

.promo-banner-card:hover::before {
    top: -60%;
    right: -60%;
}

.promo-banner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: white;
}

/* Banner Colors */
.promo-banner-card.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.promo-banner-card.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.promo-banner-card.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.promo-banner-card.orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.promo-banner-card.red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.promo-banner-card.pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

/* Banner Icon */
.promo-banner-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.promo-banner-icon i {
    font-size: 28px;
    color: white;
}

.promo-banner-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* Banner Content */
.promo-banner-content {
    flex: 1;
}

.promo-banner-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: white;
}

.promo-banner-desc {
    font-size: 0.875rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .promo-banner-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }

    .promo-banner-card {
        padding: 16px;
    }

    .promo-banner-icon {
        width: 48px;
        height: 48px;
    }

    .promo-banner-icon i {
        font-size: 24px;
    }

    .promo-banner-title {
        font-size: 1rem;
    }

    .promo-banner-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .promo-banner-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.promo-banner-card {
    animation: slideInLeft 0.5s ease forwards;
}

.promo-banner-card:nth-child(1) {
    animation-delay: 0.1s;
}

.promo-banner-card:nth-child(2) {
    animation-delay: 0.2s;
}

.promo-banner-card:nth-child(3) {
    animation-delay: 0.3s;
}

.promo-banner-card:nth-child(4) {
    animation-delay: 0.4s;
}

.promo-banner-card:nth-child(5) {
    animation-delay: 0.5s;
}

.promo-banner-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* ============================================
   MAIN HERO SLIDER
   ============================================ */

.main-slider {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
    position: relative !important;
    z-index: 1;
}

.slider-container {
    position: relative !important;
    width: 100%;
    min-height: 250px;
}

.slider-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: #1e293b;
    position: relative !important;
    padding: 20px 40px;
    border-radius: 20px;
    overflow: hidden;
}

.slider-content {
    position: relative;
    z-index: 5;
    color: white;
    max-width: 60%;
}

.slider-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow:
        0 0 30px rgba(251, 191, 36, 0.8),
        0 0 60px rgba(245, 158, 11, 0.6),
        0 4px 12px rgba(251, 191, 36, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.9),
        2px 2px 0 rgba(245, 158, 11, 0.5),
        -2px -2px 0 rgba(245, 158, 11, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.slider-subtitle {
    font-size: 1.05rem;
    opacity: 1;
    margin-bottom: 25px;
    color: #f1f5f9;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7),
        0 1px 3px rgba(0, 0, 0, 0.9);
    line-height: 1.6;
}

.slider-image-placeholder {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
}

.slider-image-placeholder img {
    height: 100%;
    width: auto;
    object-fit: cover;
    mask-image: linear-gradient(to left, black 80%, transparent);
}

.slider-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.slider-btn:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-3px) scale(1.05);
    color: white;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.slider-image-placeholder {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-image-placeholder img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .slider-item {
        padding: 40px 30px;
        text-align: center;
        justify-content: center;
    }

    .slider-content {
        max-width: 100%;
    }

    .slider-image-placeholder {
        display: none;
    }

    .slider-title {
        font-size: 2rem;
    }

    .slider-subtitle {
        font-size: 0.95rem;
    }

    .slider-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}