/* ==================== Checkout Zelle Card Styles ==================== */

.rhw-checkout-zelle-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.rhw-checkout-zelle-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
}

.rhw-checkout-zelle-card:has(input.input-radio:checked) {
    border-color: #0ea5e9;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.2);
}

/* Header */
.rhw-zelle-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
}

.rhw-zelle-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.rhw-zelle-card-logo svg {
    color: #0ea5e9;
}

.rhw-zelle-card-title-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rhw-zelle-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.rhw-zelle-discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    width: fit-content;
}

.rhw-zelle-discount-badge svg {
    stroke: #4ade80;
}

/* Content */
.rhw-zelle-card-content {
    padding: 24px;
}

.rhw-zelle-card-description {
    margin-bottom: 24px;
}

.rhw-zelle-card-description p {
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 12px 0;
}

.rhw-zelle-card-description p:last-child {
    margin-bottom: 0;
}

.rhw-zelle-card-description strong {
    color: #0f172a;
}

/* Benefits */
.rhw-zelle-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.rhw-zelle-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.rhw-zelle-benefit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.rhw-zelle-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 50%;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.rhw-zelle-benefit-icon svg {
    color: #ffffff;
}

.rhw-zelle-benefit-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.rhw-zelle-benefit-text p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* Help Section */
.rhw-zelle-help-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rhw-zelle-help-card,
.rhw-zelle-video-card,
.rhw-zelle-refund-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.rhw-zelle-help-card:hover,
.rhw-zelle-video-card:hover,
.rhw-zelle-refund-card:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.rhw-zelle-help-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.rhw-zelle-help-icon svg {
    color: #ffffff;
}

.rhw-zelle-help-content {
    flex: 1;
}

.rhw-zelle-help-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.rhw-zelle-help-content p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.rhw-zelle-help-content a {
    color: #0284c7;
    text-decoration: none;
    font-weight: 600;
}

.rhw-zelle-help-content a:hover {
    text-decoration: underline;
}

.rhw-zelle-video-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.rhw-zelle-video-icon svg {
    color: #ffffff;
}

.rhw-zelle-video-content p {
    font-size: 13px;
    color: #475569;
    margin: 0 0 8px 0;
}

.rhw-zelle-video-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f97316;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.rhw-zelle-video-link:hover {
    text-decoration: underline;
}

.rhw-zelle-refund-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.rhw-zelle-refund-icon svg {
    color: #ffffff;
}

.rhw-zelle-refund-content p {
    font-size: 13px;
    color: #475569;
    margin: 0 0 8px 0;
}

.rhw-zelle-refund-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.rhw-zelle-refund-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .rhw-checkout-zelle-card {
        border-radius: 12px;
        margin: 8px 0;
    }

    .rhw-zelle-card-header {
        padding: 16px 20px;
        gap: 12px;
    }

    .rhw-zelle-card-logo {
        width: 40px;
        height: 40px;
    }

    .rhw-zelle-card-logo svg {
        width: 24px;
        height: 24px;
    }

    .rhw-zelle-card-title {
        font-size: 18px;
    }

    .rhw-zelle-card-content {
        padding: 20px;
    }

    .rhw-zelle-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rhw-zelle-benefit {
        flex-direction: row;
        text-align: left;
        padding: 14px;
    }

    .rhw-zelle-benefit-icon {
        margin-bottom: 0;
        margin-right: 12px;
    }

    .rhw-zelle-benefit-text {
        text-align: left;
    }

    .rhw-zelle-help-card,
    .rhw-zelle-video-card,
    .rhw-zelle-refund-card {
        padding: 14px;
    }

    .rhw-zelle-help-icon,
    .rhw-zelle-video-icon,
    .rhw-zelle-refund-icon {
        width: 40px;
        height: 40px;
    }

    .rhw-zelle-help-icon svg,
    .rhw-zelle-video-icon svg,
    .rhw-zelle-refund-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .rhw-zelle-card-header {
        padding: 14px 16px;
    }

    .rhw-zelle-card-logo {
        width: 36px;
        height: 36px;
    }

    .rhw-zelle-card-logo svg {
        width: 20px;
        height: 20px;
    }

    .rhw-zelle-card-title {
        font-size: 16px;
    }

    .rhw-zelle-discount-badge {
        font-size: 12px;
        padding: 3px 10px;
    }

    .rhw-zelle-card-radio input.input-radio {
        width: 20px;
        height: 20px;
    }

    .rhw-zelle-card-content {
        padding: 16px;
    }

    .rhw-zelle-card-description p {
        font-size: 13px;
    }
}