@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@400;600;700;800&family=Outfit:wght@400;600;700;800&family=Poppins:wght@400;600;700;800&family=Roboto:wght@400;500;700&family=Playfair+Display:wght@600;700&display=swap');

/**
 * WMS Public Stylesheet (Account, Login, Register)
 */


/* WordPress Block Theme / Gutenberg Content Width Reset */
body .is-layout-constrained> :where(.wms-pricing-container, .wms-account-wrapper, .wms-auth-card, .wms-success-container),
body .wp-block-post-content> :where(.wms-pricing-container, .wms-account-wrapper, .wms-auth-card, .wms-success-container),
body .entry-content> :where(.wms-pricing-container, .wms-account-wrapper, .wms-auth-card, .wms-success-container) {
    max-width: 1200px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.wp-block-post-content:has(.wms-pricing-container),
.entry-content:has(.wms-pricing-container),
.wp-block-post-content:has(.wms-account-wrapper),
.entry-content:has(.wms-account-wrapper) {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.wms-account-wrapper {
    max-width: 960px !important;
    width: 100%;
    margin: 30px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1e293b;
}

/* Hero Header Banner */
.wms-account-hero-header {
    background: linear-gradient(135deg, #35144F 0%, #200a31 100%);
    border-radius: 16px;
    padding: 28px 32px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 25px -5px rgba(53, 20, 79, 0.25);
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.wms-hero-user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wms-hero-avatar img {
    border-radius: 50%;
    border: 3px solid rgba(255, 208, 16, 0.85);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: block;
}

.wms-hero-greeting {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.wms-hero-greeting h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.wms-badge-pill {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wms-badge-pill.active {
    background: #FFD010;
    color: #1d1d1d;
}

.wms-badge-pill.paused {
    background: #fef3c7;
    color: #92400e;
}

.wms-badge-pill.inactive {
    background: rgba(255, 255, 255, 0.2);
    color: #f1f5f9;
}

.wms-hero-subtext {
    margin: 6px 0 0 0;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
}

.wms-btn-logout {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.2s ease;
}

.wms-btn-logout:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
}

/* Nav Tabs */
.wms-account-nav-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 25px;
    overflow: visible;
    flex-wrap: wrap;
}

.wms-account-tab-btn {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 20px;
    font-size: 14.5px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    margin-bottom: -2px;
    transition: all 0.2s ease;
    white-space: nowrap;
    outline: none !important;
    box-shadow: none !important;
}

.wms-account-tab-btn:hover {
    color: #35144F;
}

.wms-account-tab-btn.active {
    color: #35144F;
    border-bottom-color: #35144F;
    font-weight: 700;
}


.wms-account-tab-pane {
    display: none;
}

.wms-account-tab-pane.active {
    display: block;
    animation: wmsFadeIn 0.25s ease-in-out;
}

@keyframes wmsFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards & Content */
.wms-account-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.wms-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
    margin-bottom: 22px;
}

.wms-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.wms-btn-link-primary {
    color: #35144F;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
}

.wms-btn-link-primary:hover {
    text-decoration: underline;
}

/* Membership Status Banner inside Tab */
.wms-membership-status-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
}

.wms-membership-status-banner.active {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.wms-membership-status-banner.paused {
    background: #fefce8;
    border: 1px solid #fef08a;
    color: #854d0e;
}

.wms-membership-status-banner.inactive {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
}

.wms-membership-status-banner p {
    margin: 4px 0 0 0;
    font-size: 13px;
    opacity: 0.9;
}

.wms-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.active .wms-status-dot {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.paused .wms-status-dot {
    background: #eab308;
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.2);
}

.inactive .wms-status-dot {
    background: #94a3b8;
}

/* Grid Details */
.wms-grid-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #f1f5f9;
}

.wms-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wms-detail-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
}

.wms-detail-val {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.wms-card-footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.wms-footer-note {
    font-size: 12.5px;
    color: #64748b;
}

/* Actions Buttons */
.wms-btn-action-primary {
    background: #35144F;
    color: #ffffff !important;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
}

.wms-btn-action-primary:hover {
    background: #250d38;
}

.wms-btn-action-outline {
    background: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wms-btn-action-outline:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

/* Orders Table */
.wms-table-responsive {
    overflow-x: auto;
}

.wms-table-orders {
    width: 100%;
    border-collapse: collapse;
}

.wms-table-orders th {
    background: #f8fafc;
    padding: 12px 14px;
    text-align: left;
    font-size: 12.5px;
    font-weight: 700;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.wms-table-orders td {
    padding: 14px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13.5px;
    color: #334155;
    vertical-align: middle;
}

.wms-btn-invoice {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 12.5px;
    color: #1e293b;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.15s ease;
}

.wms-btn-invoice:hover {
    background: #35144F;
    color: #ffffff;
    border-color: #35144F;
}

/* Form Layout */
.wms-form-stacked {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wms-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.wms-form-col label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.wms-input-control {
    width: 100%;
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.wms-input-control:focus {
    outline: none;
    border-color: #35144F;
    box-shadow: 0 0 0 3px rgba(53, 20, 79, 0.15);
}


.wms-auth-card {
    max-width: 420px;
    margin: 40px auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Modern Standalone Shortcode Button ([wms_button]) */
.wms-buy-btn,
.wms-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    background: linear-gradient(135deg, #35144F 0%, #4a1c6e 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(53, 20, 79, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    text-align: center;
    vertical-align: middle;
}

.wms-buy-btn:hover,
.wms-btn-primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #280e3d 0%, #35144F 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(53, 20, 79, 0.35);
    text-decoration: none;
}

.wms-buy-btn:active,
.wms-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(53, 20, 79, 0.25);
}

/* Button Sizes */
.wms-buy-btn.wms-btn-sm {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 7px;
}

.wms-buy-btn.wms-btn-md {
    padding: 13px 28px;
    font-size: 15px;
    border-radius: 10px;
}

.wms-buy-btn.wms-btn-lg {
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 800;
    border-radius: 12px;
}

.wms-buy-btn.wms-btn-xl {
    padding: 20px 44px;
    font-size: 19px;
    font-weight: 800;
    border-radius: 14px;
}

.wms-buy-btn.wms-btn-pill {
    border-radius: 999px !important;
}

.wms-buy-btn.wms-btn-block {
    display: flex;
    width: 100%;
}

/* Button Color Presets */
.wms-buy-btn.wms-theme-gold {
    background: linear-gradient(135deg, #FFD010 0%, #e6b800 100%);
    color: #1e293b !important;
    box-shadow: 0 4px 14px rgba(255, 208, 16, 0.35);
}

.wms-buy-btn.wms-theme-gold:hover {
    background: linear-gradient(135deg, #e6b800 0%, #cc9900 100%);
    box-shadow: 0 8px 20px rgba(255, 208, 16, 0.45);
}

.wms-buy-btn.wms-theme-blue {
    background: linear-gradient(135deg, #0b93d9 0%, #0284c7 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(11, 147, 217, 0.3);
}

.wms-buy-btn.wms-theme-blue:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    box-shadow: 0 8px 20px rgba(11, 147, 217, 0.4);
}

.wms-buy-btn.wms-theme-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.wms-buy-btn.wms-theme-green:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.wms-buy-btn.wms-theme-dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.3);
}

.wms-buy-btn.wms-theme-dark:hover {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.4);
}

.wms-buy-btn.wms-theme-outline {
    background: transparent;
    color: #35144F !important;
    border: 2px solid #35144F;
    box-shadow: none;
}

.wms-buy-btn.wms-theme-outline:hover {
    background: #35144F;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(53, 20, 79, 0.2);
}

/* Icon in button */
.wms-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    line-height: 1;
}

.wms-btn-icon svg {
    width: 1.1em;
    height: 1.1em;
    fill: currentColor;
    vertical-align: middle;
}


.wms-success-card {
    max-width: 500px;
    margin: 50px auto;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.wms-icon-success {
    width: 60px;
    height: 60px;
    background: #def7ec;
    color: #03543f;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

/* -------------------------------------------------------------
   FULLSCREEN RAZORPAY CHECKOUT MODAL (Standalone & Core)
------------------------------------------------------------- */
.wms-modal-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(15, 23, 42, 0.75) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    z-index: 9999999 !important;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.wms-modal-backdrop.wms-modal-active {
    display: flex !important;
}

.wms-modal-container {
    width: 100% !important;
    max-width: 460px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}


.wms-modal-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden !important;
    animation: wmsModalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-sizing: border-box !important;
    text-align: left !important;
}

@keyframes wmsModalPop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wms-modal-header {
    background: #0f172a !important;
    color: #ffffff !important;
    padding: 20px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
}

.wms-modal-header-text {
    flex-grow: 1;
}

.wms-modal-badge {
    display: inline-block !important;
    background: rgba(16, 185, 129, 0.2) !important;
    color: #34d399 !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    margin-bottom: 4px !important;
}

.wms-modal-header h3 {
    margin: 0 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
}

.wms-modal-header-price {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #38bdf8 !important;
    margin-right: 32px !important;
}

.wms-modal-close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: none !important;
    color: #cbd5e1 !important;
    font-size: 22px !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    transition: all 0.15s ease !important;
    padding: 0 !important;
}

.wms-modal-close:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

.wms-modal-body {
    padding: 24px 26px !important;
    box-sizing: border-box !important;
}

.wms-form-group {
    margin-bottom: 16px !important;
    text-align: left !important;
}

.wms-form-group label {
    display: block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    margin-bottom: 6px !important;
}

.wms-required {
    color: #ef4444 !important;
}

.wms-input {
    width: 100% !important;
    height: 42px !important;
    padding: 8px 14px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #0f172a !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    transition: all 0.15s ease !important;
}

.wms-input:focus {
    border-color: #2563eb !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

.wms-input[readonly] {
    background: #f8fafc !important;
    color: #64748b !important;
    cursor: not-allowed !important;
}

.wms-input-hint {
    display: block !important;
    font-size: 11.5px !important;
    color: #64748b !important;
    margin-top: 4px !important;
}

.wms-alert-error {
    background: #fef2f2 !important;
    border: 1px solid #fecaca !important;
    color: #b91c1c !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    margin-bottom: 14px !important;
}

.wms-modal-footer {
    margin-top: 20px !important;
}

.wms-btn-modal-pay {
    width: 100% !important;
    background: #2563eb !important;
    color: #ffffff !important;
    border: none !important;
    padding: 13px 20px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
    box-sizing: border-box !important;
}

.wms-btn-modal-pay:hover {
    background: #1d4ed8 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4) !important;
}

.wms-security-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    font-size: 12px !important;
    color: #64748b !important;
    margin-top: 14px !important;
}

/* -------------------------------------------------------------
   ONE-TIME CONTRIBUTION BOX & MODAL STYLES (Matching Design)
------------------------------------------------------------- */
.wms-contribution-wrapper {
    max-width: 960px;
    margin: 45px auto 30px auto;
    padding: 0 15px;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wms-contribution-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.wms-contribution-box:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.wms-contrib-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.wms-contrib-divider-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.wms-contrib-divider-text {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}

.wms-contrib-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
    font-family: Georgia, 'Playfair Display', serif, sans-serif;
    line-height: 1.25;
}

.wms-contrib-desc {
    font-size: 15px;
    color: #64748b;
    margin: 0 auto 30px auto;
    max-width: 620px;
    line-height: 1.6;
}

.wms-contrib-btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wms-contrib-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #081a33;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(8, 26, 51, 0.3);
    text-decoration: none;
    text-align: left;
    box-sizing: border-box;
}

.wms-contrib-action-btn:hover {
    background: #0d284f;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(8, 26, 51, 0.4);
    color: #ffffff;
}

.wms-contrib-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #1d4ed8;
    color: #ffffff;
    flex-shrink: 0;
}

.wms-contrib-btn-content {
    display: flex;
    flex-direction: column;
}

.wms-contrib-btn-title {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    font-style: italic;
    letter-spacing: 0.2px;
}

.wms-contrib-btn-badge {
    font-size: 10px;
    font-weight: 600;
    color: #93c5fd;
    letter-spacing: 0.4px;
}

/* Modal Container & Header */
.wms-contrib-modal-container {
    max-width: 500px !important;
    width: 95% !important;
    margin: 0 auto !important;
}

.wms-contrib-modal-card {
    background: #ffffff !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
    box-sizing: border-box !important;
}

.wms-contrib-header {
    background: linear-gradient(135deg, #181c2e 0%, #2e1065 100%) !important;
    padding: 22px 24px !important;
    position: relative !important;
    color: #ffffff !important;
}

.wms-contrib-currency-switcher {
    background: #f1f5f9;
    padding: 4px;
    border-radius: 999px;
    gap: 3px;
    display: inline-flex;
    border: 1px solid #e2e8f0;
}

.wms-contrib-curr-btn {
    background: transparent;
    border: none;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    border-radius: 999px;
    transition: all 0.15s ease;
}

.wms-contrib-curr-btn:hover {
    color: #0f172a;
}

.wms-contrib-curr-btn.active {
    background: #0f172a !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.25) !important;
}

.wms-contrib-amount-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

@media (max-width: 480px) {
    .wms-contrib-amount-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wms-contrib-amt-pill {
    padding: 11px 6px !important;
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    cursor: pointer !important;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-align: center !important;
    box-sizing: border-box !important;
    outline: none !important;
}

.wms-contrib-amt-pill:hover {
    border-color: #3b82f6 !important;
    background: #eff6ff !important;
    color: #1d4ed8 !important;
    transform: translateY(-1px) !important;
}

.wms-contrib-amt-pill.active {
    border-color: #2563eb !important;
    background: #2563eb !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35) !important;
    transform: translateY(-1px) !important;
}

.wms-contrib-amt-pill.active .wms-contrib-curr-sym {
    color: #ffffff !important;
}

.wms-btn-contrib-pay {
    width: 100% !important;
    padding: 14px !important;
    font-size: 15.5px !important;
    font-weight: 800 !important;
    border-radius: 10px !important;
    border: none !important;
    background: linear-gradient(135deg, #3b0764 0%, #1e1b4b 100%) !important;
    color: #ffffff !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 16px rgba(59, 7, 100, 0.35) !important;
    transition: all 0.2s ease !important;
}

.wms-btn-contrib-pay:hover {
    background: linear-gradient(135deg, #4c0d82 0%, #2e266f 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 24px rgba(59, 7, 100, 0.45) !important;
}