/* ================================================
   TOP PROMOTION SECTION - HOLYWINGS77
   Banner promo vertikal di bawah home slider
   ================================================ */

.top-promotion-section {
    width: 100%;
    max-width: 750px;
    margin: 16px auto;
    padding: 0 12px;
    box-sizing: border-box;
    text-align: center;
}

.top-promotion-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 14px 0;
    padding: 6px 0;
}

.top-promotion-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #fcd34d;
    text-transform: uppercase;
    text-shadow:
        0 2px 0 #5a3b00,
        0 0 12px rgba(252, 211, 77, 0.45);
    background: linear-gradient(180deg, #fff7c2 0%, #f7c948 50%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top-promotion-header .tp-deco {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a227 40%, #fcd34d 50%, #c9a227 60%, transparent);
    border-radius: 2px;
    max-width: 90px;
}

.top-promotion-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

.top-promotion-item {
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(252, 211, 77, 0.15) inset;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    text-decoration: none;
    line-height: 0;
}

.top-promotion-item:hover,
.top-promotion-item:focus {
    transform: translateY(-2px);
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(252, 211, 77, 0.45) inset;
    outline: none;
}

.top-promotion-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Mobile: header sedikit lebih kecil supaya pas di layar sempit */
@media (max-width: 480px) {
    .top-promotion-section {
        padding: 0 10px;
        margin: 12px auto;
    }
    .top-promotion-header h2 {
        font-size: 18px;
        letter-spacing: 2px;
    }
    .top-promotion-header .tp-deco {
        max-width: 60px;
    }
    .top-promotion-grid {
        gap: 10px;
    }
    .top-promotion-item {
        border-radius: 10px;
    }
}

/* Tablet/desktop: ada ruang lebih, banner tetap stack vertikal seperti referensi */
@media (min-width: 768px) {
    .top-promotion-header h2 {
        font-size: 26px;
    }
    .top-promotion-grid {
        gap: 14px;
    }
}
