/* ─────────────────────────────────────────────
   Block: Combo-banneri  (fp_combo_banner)
   ───────────────────────────────────────────── */

.fp-combo-section {
    padding: 56px 24px;
}

.fp-combo-inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* ── Banner wrapper ── */
.fp-combo-banner {
    background: #2e2e2d;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative circle */
.fp-combo-banner::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 300px;
    height: 300px;
    background: #b51f1f;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

/* ── Left column ── */
.fp-combo-left h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 0 0 16px;
    padding: 0;
    color: #fff;
}

.fp-combo-left h2 span {
    color: #c44c4c;
}

.fp-combo-left p {
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.fp-combo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #b51f1f;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
}

.fp-combo-btn:hover,
.fp-combo-btn:focus-visible {
    background: #c44c4c;
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}

/* ── Right column — cards ── */
.fp-combo-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fp-combo-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
    color: #fff;
}

.fp-combo-card:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.22);
    color: #fff;
    text-decoration: none;
}

.fp-combo-card-info {
    flex: 1;
    min-width: 0;
}

.fp-combo-card-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 3px;
    padding: 0;
    color: #fff;
    line-height: 1.3;
}

.fp-combo-card-info span {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.3;
}

.fp-combo-card-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    color: #fff;
    white-space: nowrap;
    background: #b51f1f;
    padding: 6px 14px;
    border-radius: 6px;
    margin-left: 16px;
    flex-shrink: 0;
    line-height: 1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .fp-combo-banner {
        grid-template-columns: 1fr;
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .fp-combo-banner {
        padding: 28px 24px;
    }

    .fp-combo-left h2 {
        font-size: 2rem;
    }
}
