/**
 * EDD Bank Transfer - Frontend Styles
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    --edd-bt-primary: #2271b1;
    --edd-bt-primary-dark: #135e96;
    --edd-bt-success: #00a32a;
    --edd-bt-success-dark: #008a20;
    --edd-bt-warning: #dba617;
    --edd-bt-danger: #d63638;
    --edd-bt-whatsapp: #25D366;
    --edd-bt-whatsapp-dark: #1DA851;
    --edd-bt-text: #1d2327;
    --edd-bt-text-light: #646970;
    --edd-bt-border: #dcdcde;
    --edd-bt-bg: #f6f7f7;
    --edd-bt-radius: 8px;
    --edd-bt-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Checkout - Bank Selection Fieldset
   ========================================================================== */

.edd-bt-fieldset {
    margin: 20px 0;
    padding: 20px;
    background: var(--edd-bt-bg);
    border: 1px solid var(--edd-bt-border);
    border-radius: var(--edd-bt-radius);
}

.edd-bt-legend {
    font-size: 16px;
    font-weight: 600;
    color: var(--edd-bt-text);
    margin-bottom: 15px;
    display: block;
}

.edd-bt-description {
    color: var(--edd-bt-text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

/* ==========================================================================
   Radio Button Style
   ========================================================================== */

.edd-bt-radio-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.edd-bt-radio-item {
    display: block;
    cursor: pointer;
    margin: 0;
}

.edd-bt-radio-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.edd-bt-radio-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border: 2px solid var(--edd-bt-border);
    border-radius: var(--edd-bt-radius);
    transition: all 0.2s ease;
}

.edd-bt-radio-item:hover .edd-bt-radio-content {
    border-color: var(--edd-bt-primary);
}

.edd-bt-radio-item.selected .edd-bt-radio-content,
.edd-bt-radio-item input:checked + .edd-bt-radio-content {
    border-color: var(--edd-bt-primary);
    background: linear-gradient(135deg, #f0f6fc 0%, #fff 100%);
    box-shadow: var(--edd-bt-shadow);
}

.edd-bt-radio-logo,
.edd-bt-radio-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--edd-bt-bg);
    border-radius: 6px;
    flex-shrink: 0;
    overflow: hidden;
}

.edd-bt-radio-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.edd-bt-radio-icon svg {
    color: var(--edd-bt-text-light);
}

.edd-bt-radio-info {
    flex: 1;
    min-width: 0;
}

.edd-bt-radio-name {
    display: block;
    font-weight: 600;
    color: var(--edd-bt-text);
    font-size: 15px;
    margin-bottom: 2px;
}

.edd-bt-radio-account {
    display: block;
    color: var(--edd-bt-text-light);
    font-size: 13px;
    margin-bottom: 2px;
}

.edd-bt-radio-number {
    display: block;
    font-family: monospace;
    font-size: 13px;
    color: var(--edd-bt-text);
    background: var(--edd-bt-bg);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.edd-bt-radio-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--edd-bt-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    background: #fff;
}

.edd-bt-radio-check svg {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
    color: #fff;
}

.edd-bt-radio-item.selected .edd-bt-radio-check,
.edd-bt-radio-item input:checked + .edd-bt-radio-content .edd-bt-radio-check {
    background: var(--edd-bt-primary);
    border-color: var(--edd-bt-primary);
}

.edd-bt-radio-item.selected .edd-bt-radio-check svg,
.edd-bt-radio-item input:checked + .edd-bt-radio-content .edd-bt-radio-check svg {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   Dropdown Style
   ========================================================================== */

.edd-bt-dropdown-wrap {
    max-width: 100%;
}

.edd-bt-select {
    width: 100%;
    padding: 12px 40px 12px 15px;
    font-size: 15px;
    border: 2px solid var(--edd-bt-border);
    border-radius: var(--edd-bt-radius);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23646970' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 15px center;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.edd-bt-select:focus {
    outline: none;
    border-color: var(--edd-bt-primary);
}

.edd-bt-selected-bank-info {
    margin-top: 15px;
}

.edd-bt-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border: 1px solid var(--edd-bt-border);
    border-radius: var(--edd-bt-radius);
}

.edd-bt-info-logo {
    width: 48px;
    height: 48px;
    background: var(--edd-bt-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.edd-bt-info-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.edd-bt-info-details p {
    margin: 0 0 3px;
    font-size: 13px;
    color: var(--edd-bt-text-light);
}

.edd-bt-info-name {
    font-weight: 600;
    color: var(--edd-bt-text) !important;
    font-size: 15px !important;
}

/* ==========================================================================
   Cards Style
   ========================================================================== */

.edd-bt-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.edd-bt-card {
    position: relative;
    padding: 20px;
    background: #fff;
    border: 2px solid var(--edd-bt-border);
    border-radius: var(--edd-bt-radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.edd-bt-card:hover {
    border-color: var(--edd-bt-primary);
    transform: translateY(-2px);
    box-shadow: var(--edd-bt-shadow);
}

.edd-bt-card.selected {
    border-color: var(--edd-bt-primary);
    background: linear-gradient(135deg, #f0f6fc 0%, #fff 100%);
}

.edd-bt-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.edd-bt-card-logo {
    max-width: 80px;
    max-height: 40px;
    object-fit: contain;
}

.edd-bt-card-icon {
    width: 40px;
    height: 40px;
    background: var(--edd-bt-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edd-bt-card-icon svg {
    color: var(--edd-bt-text-light);
}

.edd-bt-card-check {
    width: 24px;
    height: 24px;
    background: var(--edd-bt-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.2s ease;
}

.edd-bt-card-check svg {
    color: #fff;
}

.edd-bt-card.selected .edd-bt-card-check {
    background: var(--edd-bt-primary);
    opacity: 1;
}

.edd-bt-card-body {
    text-align: left;
}

.edd-bt-card-name {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: var(--edd-bt-text);
}

.edd-bt-card-account {
    margin: 0 0 5px;
    font-size: 13px;
    color: var(--edd-bt-text-light);
}

.edd-bt-card-number {
    margin: 0 0 5px;
}

.edd-bt-card-number code {
    background: var(--edd-bt-bg);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--edd-bt-text);
}

.edd-bt-card-branch {
    margin: 0;
    font-size: 12px;
    color: var(--edd-bt-text-light);
}

/* ==========================================================================
   Confirmation & Receipt Pages
   ========================================================================== */

/* Pending Notice */
.edd-bt-pending-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #fff8e5 0%, #fff 100%);
    border: 1px solid #f0c14b;
    border-left: 4px solid var(--edd-bt-warning);
    border-radius: var(--edd-bt-radius);
    margin-bottom: 25px;
}

.edd-bt-notice-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.edd-bt-notice-icon svg {
    color: var(--edd-bt-warning);
}

.edd-bt-notice-content h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--edd-bt-text);
}

.edd-bt-notice-content p {
    margin: 0;
    color: var(--edd-bt-text-light);
}

/* Success Notice */
.edd-bt-payment-complete-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #edfaef 0%, #fff 100%);
    border: 1px solid #a7e3b4;
    border-left: 4px solid var(--edd-bt-success);
    border-radius: var(--edd-bt-radius);
    margin-bottom: 25px;
}

.edd-bt-notice-icon.edd-bt-success {
    background: var(--edd-bt-success);
}

.edd-bt-notice-icon.edd-bt-success svg {
    color: #fff;
}

/* ==========================================================================
   Receipt Section Styles
   ========================================================================== */

.edd-bt-receipt-section {
    margin-top: 30px;
    padding: 25px;
    background: #fff;
    border: 1px solid var(--edd-bt-border);
    border-radius: var(--edd-bt-radius);
    box-shadow: var(--edd-bt-shadow);
}

.edd-bt-section-title {
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: 600;
    color: var(--edd-bt-text);
}

.edd-bt-instructions {
    padding: 15px 20px;
    background: var(--edd-bt-bg);
    border-radius: var(--edd-bt-radius);
    margin-bottom: 25px;
}

.edd-bt-instructions p {
    margin: 0 0 10px;
    line-height: 1.7;
}

.edd-bt-instructions p:last-child {
    margin-bottom: 0;
}

.edd-bt-instructions ol,
.edd-bt-instructions ul {
    margin: 0;
    padding-left: 20px;
}

.edd-bt-instructions li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Transfer Details */
.edd-bt-transfer-details {
    margin-bottom: 25px;
}

.edd-bt-details-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--edd-bt-text);
}

.edd-bt-details-title svg {
    color: var(--edd-bt-primary);
}

/* Bank Details Box */
.edd-bt-bank-details {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--edd-bt-bg);
    border-radius: var(--edd-bt-radius);
    border: 1px solid var(--edd-bt-border);
}

.edd-bt-bank-logo {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.edd-bt-bank-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.edd-bt-bank-info {
    flex: 1;
}

.edd-bt-bank-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.edd-bt-bank-row:last-child {
    margin-bottom: 0;
}

.edd-bt-label {
    font-weight: 600;
    color: var(--edd-bt-text);
    min-width: 130px;
    font-size: 14px;
}

.edd-bt-value {
    color: var(--edd-bt-text);
    font-size: 14px;
}

.edd-bt-copyable {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--edd-bt-border);
}

.edd-bt-copy-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--edd-bt-text-light);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edd-bt-copy-btn:hover {
    color: var(--edd-bt-primary);
}

.edd-bt-copy-btn.copied {
    color: var(--edd-bt-success);
}

.edd-bt-bank-notes {
    flex-direction: column;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--edd-bt-border);
}

.edd-bt-bank-notes .edd-bt-value {
    margin-top: 5px;
    color: var(--edd-bt-text-light);
    font-style: italic;
}

/* Amount Box */
.edd-bt-amount-box {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #1d2327 0%, #2c3338 100%);
    border-radius: var(--edd-bt-radius);
    text-align: center;
    color: #fff;
}

.edd-bt-amount-label {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.edd-bt-amount-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.edd-bt-amount-reference {
    font-size: 13px;
    opacity: 0.7;
}

/* ==========================================================================
   WhatsApp Section
   ========================================================================== */

.edd-bt-whatsapp-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--edd-bt-border);
    text-align: center;
}

.edd-bt-whatsapp-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--edd-bt-text);
}

.edd-bt-whatsapp-desc {
    margin: 0 0 20px;
    color: var(--edd-bt-text-light);
}

.edd-bt-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--edd-bt-whatsapp);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.edd-bt-whatsapp-btn:hover {
    background: var(--edd-bt-whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff !important;
}

.edd-bt-whatsapp-btn:active {
    transform: translateY(0);
}

.edd-bt-whatsapp-btn svg {
    flex-shrink: 0;
}

.edd-bt-whatsapp-btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

/* ==========================================================================
   Confirmation Page Wrapper
   ========================================================================== */

.edd-bt-confirmation-wrapper {
    max-width: 700px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.edd-bt-confirmation-header {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #edfaef 0%, #f0f6fc 100%);
    border-bottom: 1px solid var(--edd-bt-border);
}

.edd-bt-confirmation-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.edd-bt-confirmation-icon svg {
    color: var(--edd-bt-success);
}

.edd-bt-confirmation-header h2 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 700;
    color: var(--edd-bt-text);
}

.edd-bt-confirmation-subtitle {
    margin: 0;
    font-size: 16px;
    color: var(--edd-bt-text-light);
}

.edd-bt-confirmation-body {
    padding: 30px;
}

/* Step Sections */
.edd-bt-confirmation-instructions,
.edd-bt-confirmation-bank,
.edd-bt-confirmation-amount,
.edd-bt-confirmation-whatsapp {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--edd-bt-border);
}

.edd-bt-confirmation-whatsapp {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    text-align: center;
}

.edd-bt-confirmation-body h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--edd-bt-text);
}

.edd-bt-step-number {
    width: 28px;
    height: 28px;
    background: var(--edd-bt-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.edd-bt-instructions-content {
    padding-left: 40px;
}

.edd-bt-instructions-content p {
    margin: 0 0 10px;
    line-height: 1.7;
    color: var(--edd-bt-text);
}

/* Amount Display */
.edd-bt-confirmation-amount {
    text-align: center;
}

.edd-bt-confirmation-amount h3 {
    justify-content: center;
}

.edd-bt-amount-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin: 20px 0 10px;
}

.edd-bt-amount-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--edd-bt-text-light);
}

.edd-bt-amount-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--edd-bt-text);
}

.edd-bt-amount-note {
    font-size: 14px;
    color: var(--edd-bt-text-light);
    margin: 0;
}

/* Footer */
.edd-bt-confirmation-footer {
    padding: 20px 30px;
    background: var(--edd-bt-bg);
    border-top: 1px solid var(--edd-bt-border);
}

.edd-bt-important-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--edd-bt-text-light);
}

.edd-bt-important-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--edd-bt-primary);
}

.edd-bt-important-note strong {
    color: var(--edd-bt-text);
}

/* ==========================================================================
   No Banks Notice
   ========================================================================== */

.edd-bt-no-banks-notice {
    padding: 20px;
    background: #fef8ee;
    border: 1px solid #f0c14b;
    border-radius: var(--edd-bt-radius);
    text-align: center;
}

.edd-bt-no-banks-notice p {
    margin: 0;
    color: #856404;
}

/* ==========================================================================
   Copy Feedback Toast
   ========================================================================== */

.edd-bt-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--edd-bt-text);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.edd-bt-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   Enhanced Confirmation Page Styles
   ========================================================================== */

/* Status Cards */
.edd-bt-status-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 30px;
    animation: eddBtSlideIn 0.5s ease;
}

@keyframes eddBtSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.edd-bt-status-pending {
    background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
    border: 1px solid #f9dc5c;
    border-left: 5px solid #f4b740;
}

.edd-bt-status-complete {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border: 1px solid #a5d6a7;
    border-left: 5px solid #4caf50;
}

.edd-bt-status-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.edd-bt-status-pending .edd-bt-status-icon {
    background: linear-gradient(135deg, #f4b740 0%, #f9dc5c 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(244, 183, 64, 0.3);
}

.edd-bt-status-complete .edd-bt-status-icon {
    background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.edd-bt-status-content h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
}

.edd-bt-status-content p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Transfer Container */
.edd-bt-transfer-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

/* Progress Steps */
.edd-bt-progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-bottom: 1px solid #e8ecf4;
    flex-wrap: wrap;
    gap: 5px;
}

.edd-bt-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.edd-bt-step.active,
.edd-bt-step.current {
    opacity: 1;
}

.edd-bt-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #dde1e9;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.edd-bt-step.active .edd-bt-step-number {
    background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.edd-bt-step.current .edd-bt-step-number {
    background: linear-gradient(135deg, #2196f3 0%, #64b5f6 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
    animation: eddBtPulse 2s infinite;
}

@keyframes eddBtPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.edd-bt-step-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-align: center;
    max-width: 80px;
}

.edd-bt-step.active .edd-bt-step-label,
.edd-bt-step.current .edd-bt-step-label {
    color: #1a1a2e;
}

.edd-bt-step-line {
    width: 40px;
    height: 3px;
    background: #dde1e9;
    border-radius: 2px;
    margin: 0 5px;
}

/* Instruction Card */
.edd-bt-instruction-card {
    margin: 25px;
    padding: 24px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border-radius: 16px;
    border: 1px solid #cce5ff;
}

.edd-bt-instruction-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.edd-bt-instruction-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2196f3 0%, #64b5f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.edd-bt-instruction-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.edd-bt-instruction-content {
    padding-left: 63px;
}

.edd-bt-instruction-content p {
    margin: 0 0 10px;
    color: #444;
    line-height: 1.7;
}

.edd-bt-instruction-content ol,
.edd-bt-instruction-content ul {
    margin: 0;
    padding-left: 20px;
}

.edd-bt-instruction-content li {
    margin-bottom: 8px;
    color: #444;
    line-height: 1.6;
}

/* Bank Card Display */
.edd-bt-bank-card-display {
    margin: 25px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e8ecf4;
    background: #fff;
}

.edd-bt-bank-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #fff;
}

.edd-bt-bank-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.edd-bt-bank-card-header h4 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
}

.edd-bt-bank-card-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.edd-bt-bank-card-body {
    padding: 24px;
}

/* Bank Identity */
.edd-bt-bank-identity {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px dashed #e8ecf4;
}

.edd-bt-bank-logo-large {
    width: 80px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e8ecf4;
}

.edd-bt-bank-logo-large img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.edd-bt-bank-name-large {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
}

/* Details Grid */
.edd-bt-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.edd-bt-detail-item {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
}

.edd-bt-detail-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 8px;
}

.edd-bt-detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.edd-bt-detail-highlight {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border: 2px solid #a5d6a7;
}

.edd-bt-detail-value-copy {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.edd-bt-account-num {
    font-size: 20px;
    font-weight: 700;
    font-family: 'SF Mono', 'Consolas', monospace;
    color: #1a1a2e;
    letter-spacing: 1px;
}

.edd-bt-copy-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edd-bt-copy-button:hover {
    background: #2d2d44;
    transform: translateY(-2px);
}

.edd-bt-copy-button svg {
    flex-shrink: 0;
}

.edd-bt-copy-button .edd-bt-copied-text {
    display: none;
}

.edd-bt-copy-button.copied {
    background: #4caf50;
}

.edd-bt-copy-button.copied .edd-bt-copy-text {
    display: none;
}

.edd-bt-copy-button.copied .edd-bt-copied-text {
    display: inline;
}

.edd-bt-copy-button.copied svg {
    display: none;
}

/* Bank Notes */
.edd-bt-bank-notes {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 16px;
    background: #fff8e1;
    border-radius: 12px;
    border-left: 4px solid #f4b740;
    color: #856404;
    font-size: 14px;
}

.edd-bt-bank-notes svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Amount Card */
.edd-bt-amount-card {
    margin: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.edd-bt-amount-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.edd-bt-amount-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

.edd-bt-amount-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.edd-bt-currency {
    font-size: 24px;
    font-weight: 600;
    opacity: 0.9;
}

.edd-bt-amount-value {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.edd-bt-amount-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.edd-bt-reference {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.edd-bt-reference-label {
    display: block;
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.edd-bt-reference-value {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Confirm Section */
.edd-bt-confirm-section {
    margin: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e9 100%);
    border-radius: 20px;
    border: 2px solid #a5d6a7;
    text-align: center;
}

.edd-bt-confirm-header h4 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
}

.edd-bt-confirm-header p {
    margin: 0 0 25px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* WhatsApp Button */
.edd-bt-whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 60px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    position: relative;
    overflow: hidden;
}

.edd-bt-whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.edd-bt-whatsapp-button:hover::before {
    left: 100%;
}

.edd-bt-whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
    color: #fff !important;
}

.edd-bt-wa-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.edd-bt-wa-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.edd-bt-wa-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.edd-bt-wa-subtitle {
    font-size: 13px;
    opacity: 0.9;
}

.edd-bt-wa-arrow {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.edd-bt-whatsapp-button:hover .edd-bt-wa-arrow {
    transform: translateX(5px);
}

/* Alternative Confirm */
.edd-bt-alternative-confirm {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.edd-bt-alternative-confirm a {
    color: #2196f3;
    font-weight: 600;
    text-decoration: none;
}

.edd-bt-alternative-confirm a:hover {
    text-decoration: underline;
}

/* Important Notes */
.edd-bt-important-notes {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 25px;
    padding: 20px 24px;
    background: #fef9e7;
    border-radius: 16px;
    border-left: 5px solid #f4b740;
}

.edd-bt-note-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #f4b740;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.edd-bt-note-content strong {
    display: block;
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.edd-bt-note-content ul {
    margin: 0;
    padding-left: 20px;
}

.edd-bt-note-content li {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
}

.edd-bt-note-content li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Responsive Adjustments for Enhanced UI
   ========================================================================== */

@media screen and (max-width: 768px) {
    .edd-bt-status-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .edd-bt-progress-steps {
        padding: 20px 15px;
    }

    .edd-bt-step-label {
        font-size: 10px;
        max-width: 60px;
    }

    .edd-bt-step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .edd-bt-step-line {
        width: 20px;
    }

    .edd-bt-instruction-card {
        margin: 15px;
        padding: 20px;
    }

    .edd-bt-instruction-content {
        padding-left: 0;
        margin-top: 15px;
    }

    .edd-bt-bank-card-display {
        margin: 15px;
    }

    .edd-bt-bank-card-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .edd-bt-bank-identity {
        flex-direction: column;
        text-align: center;
    }

    .edd-bt-bank-name-large {
        font-size: 20px;
    }

    .edd-bt-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .edd-bt-detail-value-copy {
        flex-direction: column;
        align-items: flex-start;
    }

    .edd-bt-account-num {
        font-size: 18px;
    }

    .edd-bt-amount-card {
        margin: 15px;
        padding: 25px 20px;
    }

    .edd-bt-amount-value {
        font-size: 42px;
    }

    .edd-bt-currency {
        font-size: 20px;
    }

    .edd-bt-confirm-section {
        margin: 15px;
        padding: 25px 20px;
    }

    .edd-bt-whatsapp-button {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        flex-wrap: wrap;
    }

    .edd-bt-wa-content {
        align-items: center;
        text-align: center;
    }

    .edd-bt-wa-arrow {
        display: none;
    }

    .edd-bt-important-notes {
        margin: 15px;
        flex-direction: column;
    }

    .edd-bt-note-icon {
        margin: 0 auto;
    }

    .edd-bt-note-content {
        text-align: center;
    }

    .edd-bt-note-content ul {
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    .edd-bt-progress-steps {
        flex-direction: column;
        gap: 15px;
    }

    .edd-bt-step {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
    }

    .edd-bt-step-label {
        max-width: none;
        font-size: 13px;
    }

    .edd-bt-step-line {
        display: none;
    }

    .edd-bt-status-content h3 {
        font-size: 18px;
    }

    .edd-bt-confirm-header h4 {
        font-size: 18px;
    }

    .edd-bt-wa-title {
        font-size: 16px;
    }

    .edd-bt-amount-value {
        font-size: 36px;
    }
}

/* ==========================================================================
   Toast Notification - Enhanced
   ========================================================================== */

.edd-bt-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    z-index: 99999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.edd-bt-toast svg {
    color: #4caf50;
    flex-shrink: 0;
}

.edd-bt-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   Element Animations
   ========================================================================== */

.edd-bt-instruction-card,
.edd-bt-bank-card-display,
.edd-bt-amount-card,
.edd-bt-confirm-section,
.edd-bt-important-notes {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.edd-bt-instruction-card.edd-bt-animated,
.edd-bt-bank-card-display.edd-bt-animated,
.edd-bt-amount-card.edd-bt-animated,
.edd-bt-confirm-section.edd-bt-animated,
.edd-bt-important-notes.edd-bt-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.edd-bt-instruction-card.edd-bt-animated {
    transition-delay: 0.1s;
}

.edd-bt-bank-card-display.edd-bt-animated {
    transition-delay: 0.2s;
}

.edd-bt-amount-card.edd-bt-animated {
    transition-delay: 0.3s;
}

.edd-bt-confirm-section.edd-bt-animated {
    transition-delay: 0.4s;
}

.edd-bt-important-notes.edd-bt-animated {
    transition-delay: 0.5s;
}

/* Progress Step Animation */
.edd-bt-step {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.edd-bt-step.edd-bt-step-visible {
    opacity: 1;
    transform: translateY(0);
}

.edd-bt-step.active .edd-bt-step-visible,
.edd-bt-step.current .edd-bt-step-visible {
    opacity: 1;
}

/* Hover Effects */
.edd-bt-bank-card-display:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.edd-bt-amount-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.35);
}

.edd-bt-confirm-section:hover {
    border-color: #81c784;
}

/* Print Styles */
@media print {
    .edd-bt-progress-steps,
    .edd-bt-confirm-section,
    .edd-bt-whatsapp-button,
    .edd-bt-copy-button {
        display: none !important;
    }

    .edd-bt-transfer-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .edd-bt-instruction-card,
    .edd-bt-bank-card-display,
    .edd-bt-amount-card,
    .edd-bt-important-notes {
        opacity: 1;
        transform: none;
        page-break-inside: avoid;
    }

    .edd-bt-amount-card {
        background: #f5f5f5 !important;
        color: #000 !important;
        -webkit-print-color-adjust: exact;
    }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media screen and (max-width: 768px) {
    .edd-bt-fieldset {
        padding: 15px;
        margin: 15px 0;
    }

    .edd-bt-radio-content {
        flex-wrap: wrap;
        padding: 12px;
    }

    .edd-bt-radio-info {
        flex: 1;
        min-width: calc(100% - 80px);
    }

    .edd-bt-radio-check {
        position: absolute;
        top: 12px;
        right: 12px;
    }

    .edd-bt-radio-item {
        position: relative;
    }

    .edd-bt-cards-grid {
        grid-template-columns: 1fr;
    }

    .edd-bt-bank-details {
        flex-direction: column;
        text-align: center;
    }

    .edd-bt-bank-logo {
        margin: 0 auto;
    }

    .edd-bt-bank-row {
        flex-direction: column;
        text-align: left;
    }

    .edd-bt-label {
        margin-bottom: 3px;
    }

    .edd-bt-confirmation-wrapper {
        margin: 15px;
        border-radius: 8px;
    }

    .edd-bt-confirmation-header {
        padding: 30px 20px;
    }

    .edd-bt-confirmation-header h2 {
        font-size: 24px;
    }

    .edd-bt-confirmation-body {
        padding: 20px;
    }

    .edd-bt-amount-number {
        font-size: 36px;
    }

    .edd-bt-confirmation-body h3 {
        font-size: 16px;
    }

    .edd-bt-instructions-content {
        padding-left: 0;
        margin-top: 10px;
    }

    .edd-bt-whatsapp-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .edd-bt-pending-notice,
    .edd-bt-payment-complete-notice {
        flex-direction: column;
        text-align: center;
    }

    .edd-bt-receipt-section {
        padding: 20px;
    }

    .edd-bt-amount-box {
        padding: 15px;
    }

    .edd-bt-amount-value {
        font-size: 26px;
    }
}

@media screen and (max-width: 480px) {
    .edd-bt-radio-content {
        gap: 10px;
    }

    .edd-bt-radio-logo,
    .edd-bt-radio-icon {
        width: 40px;
        height: 40px;
    }

    .edd-bt-radio-name {
        font-size: 14px;
    }

    .edd-bt-radio-account,
    .edd-bt-radio-number {
        font-size: 12px;
    }

    .edd-bt-confirmation-icon {
        width: 60px;
        height: 60px;
    }

    .edd-bt-confirmation-icon svg {
        width: 32px;
        height: 32px;
    }

    .edd-bt-step-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .edd-bt-whatsapp-section,
    .edd-bt-whatsapp-btn,
    .edd-bt-copy-btn {
        display: none !important;
    }

    .edd-bt-confirmation-wrapper {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .edd-bt-bank-details {
        border: 1px solid #ddd;
    }
}