.checkout-methods-section + .checkout-methods-section {
    margin-top: 1.25rem;
}

.checkout-methods-section__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
}

.checkout-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.checkout-methods-grid--action {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.checkout-method-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border: 1px solid #e3e7ed;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-method-card:hover {
    border-color: #0675a5;
    box-shadow: 0 4px 12px rgba(6, 117, 165, 0.12);
}

.checkout-method-card--action {
    flex-direction: column;
    align-items: stretch;
    height: 100%;
}

.checkout-method-card__header {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    flex: 1;
}

.checkout-method-card__logo,
.checkout-methods-compact__logo {
    width: 72px;
    height: 44px;
    border-radius: 8px;
    background: #f4f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.checkout-method-card__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-method-card__logo-fallback {
    color: #0675a5;
    font-size: 1.25rem;
}

.checkout-method-card__body {
    min-width: 0;
    flex: 1;
}

.checkout-method-card__title {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
    color: #1f2937;
}

.checkout-method-card__desc {
    margin-top: 0.25rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #6b7280;
}

.checkout-methods-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.checkout-methods-compact__item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.55rem;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    max-width: 100%;
}

.checkout-methods-compact__logo {
    width: 52px;
    height: 28px;
    border-radius: 6px;
}

.checkout-methods-compact__name {
    font-size: 0.78rem;
    line-height: 1.2;
    color: #374151;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-checkout-trust {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid #eceff3;
}

.product-checkout-info-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.product-detail-tabs .checkout-methods-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (max-width: 575px) {
    .checkout-methods-grid,
    .checkout-methods-grid--action {
        grid-template-columns: 1fr;
    }

    .checkout-methods-compact__name {
        max-width: 120px;
    }

    .product-detail-tabs .checkout-methods-grid {
        grid-template-columns: 1fr;
    }
}
