/* Shared checkout / cart UI */
.option-card {
    border: 2px solid var(--border, #E8E8E8);
    border-radius: 14px;
    padding: 14px 12px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 100%;
}
.option-card:hover {
    border-color: rgba(255, 107, 53, 0.45);
}
.option-card.active {
    border-color: var(--primary, #FF6B35);
    background: rgba(255, 107, 53, 0.08);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.12);
}
.option-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--bg, #FFF8F0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary, #2D3436);
    transition: background 0.2s, color 0.2s;
}
.option-card.active .option-card-icon {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary, #FF6B35);
}
.option-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}
.option-card-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary, #2D3436);
    line-height: 1.25;
}
.option-card-desc {
    font-size: 12px;
    color: var(--text-light, #636E72);
    line-height: 1.35;
}

.empty-state-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #FF6B35);
}
.empty-state-icon svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
}

.legal-note {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-light, #636E72);
    margin-bottom: 12px;
    text-align: center;
}
.legal-note a,
.info-link-btn {
    color: var(--primary, #FF6B35);
    font-weight: 600;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    line-height: inherit;
}
.legal-note a:hover,
.info-link-btn:hover {
    text-decoration: underline;
}

.checkout-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-light, #636E72);
}
.checkout-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary, #FF6B35);
    cursor: pointer;
}
.checkout-consent-text {
    flex: 1;
    min-width: 0;
}

.cart-empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 12px 24px;
    background: var(--primary, #FF6B35);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
    transition: background 0.2s, transform 0.15s;
}
.cart-empty-btn:hover {
    background: var(--primary-dark, #E55A2B);
}
