/* ── Left column overlay (mobile drawer backdrop) ────── */

.left-column__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
}

.left-column__overlay.is-visible {
    display: block;
}

/* ── Product list ────────────────────────────────────── */

.left-column__product-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 0 var(--space-md);  /* no top padding — first item flush with white container */
}

.left-column__product-item a {
    display: flex;
    align-items: center;
    height: 57px;
    padding: 0 14px 0 30px;
    border-radius: var(--radius-button);
    font-size: 20px;
    font-weight: 700;
    color: #13446d;
    transition: background 0.15s, color 0.15s;
}

.left-column__product-item a:hover {
    background: rgba(255, 255, 255, 0.75);
    color: var(--color-primary);
}

.left-column__product-item--active a {
    background: var(--color-bg-white);
    height: 58px;
    color: var(--color-primary);
}

/* ── Payment section ─────────────────────────────────── */

.left-column__payments {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: var(--space-md);
}

/* "Payment methods" header button */
.left-column__payment-methods-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    background: var(--color-primary);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: var(--radius-button);
    transition: background 0.15s;
}

.left-column__payment-methods-btn:hover {
    background: var(--color-primary-hover);
    color: #fff;
}

/* Individual payment rows — white pill buttons, 53px tall */
.left-column__payment-item {
    display: flex;
    align-items: center;
    height: 53px;
    gap: var(--space-sm);
    padding: 0 14px 0 24px;
    background: var(--color-bg-white);
    border-radius: var(--radius-button);
    transition: background 0.15s;
    text-decoration: none;
}

.left-column__payment-item:hover {
    background: rgba(255, 255, 255, 0.75);
}

.left-column__payment-item img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}

.left-column__payment-item span {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text-body);
}

/* ── Banner ──────────────────────────────────────────── */

.left-column__banner-img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: calc(var(--space-md) * 2);
    border-radius: var(--radius-default);
}

/* ── Drawer-only: visible only as mobile slide-in (e.g. portfolio page) ── */
@media (min-width: 768px) {
    .left-column--drawer-only {
        display: none;
    }
}

/* ── Mobile: left column becomes a slide-in drawer ───── */

@media (max-width: 767px) {
    .left-column__overlay {
        top: 60px;
    }

    .left-column {
        position: fixed;
        top: 60px;
        left: -300px;
        width: 280px;
        height: calc(100vh - 60px);
        overflow-y: auto;
        background: var(--color-bg-page);
        z-index: 1000;
        transition: left 0.3s ease;
        padding: var(--space-xl) var(--space-md) var(--space-2xl);
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    }

    .left-column.is-open {
        left: 0;
    }
}
