:root {
    --purple: #7c3aed;
    --purple-dark: #5b21b6;
    --purple-light: #a78bfa;
    --green: #22c55e;
    --green-dark: #16a34a;
    --green-light: #86efac;
    --green-pale: #dcfce7;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 55%, var(--green-dark) 100%);
    min-height: 100vh;
    padding: 20px;
}

/* ---- LIGHT/PROFESSIONAL THEME (app ke andar wale pages: home, dashboard, edit) ---- */
body.app-light {
    background: #eef1f8;
    padding: 24px 40px;
}
.app-light .wrap { max-width: 1100px; }
body.app-light .card {
    box-shadow: 0 4px 20px rgba(30,30,46,0.08);
    border-top: none;
    border: 1px solid #eceef4;
}
.app-navbar {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(30,30,46,0.08);
    padding: 18px 26px;
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 14px;
}
.app-navbar .brand { font-weight: 800; color: var(--purple-dark); font-size: 19px; white-space: nowrap; }
.app-navbar .nav-links { display: flex; gap: 10px; align-items: center; }
.app-navbar .nav-links a {
    color: #555; text-decoration: none; font-weight: 700; font-size: 14.5px;
    padding: 10px 18px; border-radius: 10px;
    background: #f6f6fb; border: 1px solid #ebebf3;
    box-shadow: 0 3px 8px rgba(30,30,46,0.05);
    transition: 0.15s;
}
.app-navbar .nav-links a:hover { color: #fff; background: var(--purple); border-color: var(--purple); transform: translateY(-1px); }
.app-navbar .nav-right { display: flex; gap: 16px; align-items: center; font-size: 13.5px; }
.app-navbar .nav-right span { color: #8a8a99; }
.app-navbar .nav-right a { color: var(--purple); text-decoration: none; font-weight: 700; }
.page-title { font-size: 28px; font-weight: 800; color: #1e1e2e; margin-bottom: 6px; }
.page-subtitle { font-size: 15px; color: #7a7a8c; margin-bottom: 24px; }
.wrap { max-width: 680px; margin: 0 auto; }
.site-header { text-align: center; color: #fff; margin: 30px 0; }
.site-header h1 { font-size: 30px; margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.site-header p { opacity: 0.92; font-size: 15px; }

/* ---- 3D CARD ---- */
.card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow:
        0 22px 45px rgba(91,33,182,0.28),
        0 8px 18px rgba(34,197,94,0.15),
        inset 0 1px 0 rgba(255,255,255,0.7);
    border: 1px solid rgba(124,58,237,0.08);
    border-top: 4px solid var(--purple);
    position: relative;
}

.tabs { display: flex; gap: 10px; margin-bottom: 26px; }
.tab-btn {
    flex: 1; padding: 14px; border: none; border-radius: 12px;
    background: var(--green-pale); color: #166534; cursor: pointer; font-weight: 700; font-size: 15px;
    transition: 0.2s;
}
.tab-btn.active {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: #fff;
    box-shadow: 0 6px 14px rgba(124,58,237,0.4);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 15.5px; color: #262130; letter-spacing: 0.1px; }
.field-hint { display: block; font-weight: 400; font-size: 12.5px; color: #8a8494; margin: -4px 0 10px; line-height: 1.5; }
.section-title {
    display: flex; align-items: center; gap: 8px;
    font-size: 17px; font-weight: 800; color: var(--purple-dark);
    margin: 30px 0 16px; padding-top: 22px; border-top: 1px solid #f0eef5;
}
.section-title:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.field-group { margin-bottom: 20px; }
input[type=text], input[type=password], input[type=email], input[type=file] {
    width: 100%; padding: 13px 14px; border: 2px solid #e5e5ea; border-radius: 12px;
    margin-bottom: 6px; font-size: 15px; font-family: inherit;
}
input[type=file] { padding: 11px 12px; background: #fafafd; cursor: pointer; }
input[type=text]:focus, input[type=password]:focus, input[type=email]:focus {
    outline: none; border-color: var(--purple-light);
}
.btn-primary {
    width: 100%; padding: 15px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: #fff; border: none;
    border-radius: 12px; font-weight: 700; font-size: 16px; cursor: pointer;
    box-shadow: 0 8px 18px rgba(124,58,237,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    margin-top: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(124,58,237,0.5); }
.alert { padding: 15px 16px; border-radius: 12px; margin-bottom: 18px; font-size: 14.5px; line-height: 1.5; }
.alert-error { background: #fee2e2; color: #991b1b; }
.alert-success { background: var(--green-pale); color: #166534; }
.result-box { display: flex; gap: 8px; margin-top: 10px; }
.result-box input { margin-bottom: 0; background: #fff; }
.result-box button {
    padding: 0 18px; background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff; border: none; border-radius: 8px; cursor: pointer; font-weight: 700;
    box-shadow: 0 6px 14px rgba(34,197,94,0.4);
}

/* ---- ADMIN DASHBOARD ---- */
.admin-wrap { max-width: 1150px; margin: 30px auto; padding: 0 16px; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; color: #fff; margin-bottom: 24px; }
.admin-topbar h2 { text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.admin-topbar a { color: #fff; text-decoration: underline; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 16px; margin-bottom: 24px; }
.stat-box {
    background: #fff; border-radius: 16px; padding: 20px; text-align: center;
    box-shadow: 0 16px 30px rgba(91,33,182,0.22), 0 4px 10px rgba(34,197,94,0.12);
    border-top: 3px solid var(--green);
}
.stat-box .num { font-size: 28px; font-weight: 800; color: var(--purple); }
.stat-box .lbl { font-size: 13px; color: #666; margin-top: 4px; }
table {
    width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 16px 30px rgba(91,33,182,0.18);
}
th, td { padding: 12px 14px; text-align: left; font-size: 13px; border-bottom: 1px solid #eee; }
th { background: linear-gradient(135deg, var(--green-pale) 0%, #f1f1f5 100%); font-weight: 700; color: #444; }
tr:hover { background: #faf9ff; }
.badge { padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-url { background: var(--green-pale); color: var(--green-dark); }
.badge-image { background: #ede9fe; color: var(--purple-dark); }
.login-box {
    max-width: 400px; margin: 60px auto; background: #fff; padding: 32px; border-radius: 20px;
    box-shadow: 0 26px 50px rgba(91,33,182,0.32), 0 8px 20px rgba(34,197,94,0.15);
    border-top: 5px solid var(--green);
}
.mini-link { color: var(--purple); text-decoration: none; font-weight: 600; }

/* ---- TOP NAV ---- */
.top-nav { display: flex; justify-content: flex-end; gap: 16px; color: #fff; margin-bottom: 10px; font-size: 14px; align-items: center; }
.top-nav a { color: #fff; text-decoration: underline; }
.top-nav span { opacity: 0.9; }

/* ---- PASSWORD EYE TOGGLE ---- */
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 44px; }
.pw-eye {
    position: absolute; right: 6px; top: 6px; height: calc(100% - 26px); width: 34px;
    background: transparent; border: none; cursor: pointer; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
}

/* ---- LANDING PAGE (LOGIN-FIRST) ---- */
.landing-wrap { max-width: 980px; }
.landing-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start;
}
@media (max-width: 760px) {
    .landing-grid { grid-template-columns: 1fr; }
}
.feature-panel {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 18px;
    padding: 28px;
    color: #fff;
    backdrop-filter: blur(4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}
.feature-panel h3 { margin-bottom: 16px; font-size: 18px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; }
.feature-icon {
    background: rgba(255,255,255,0.18); border-radius: 10px; padding: 6px 9px; font-size: 16px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}
.login-box-3d { border-top: 5px solid var(--green); }

/* ---- PLAN BANNER ---- */
.plan-banner {
    border-radius: 16px; padding: 18px 22px; margin-bottom: 20px; font-size: 14.5px; line-height: 1.6;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}
.plan-paid {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff; font-weight: 600;
}
.plan-free {
    background: #fff; color: #333; border-left: 4px solid var(--purple);
}

/* ---- USER "YOUR LINKS" LIST ---- */
.links-list { display: flex; flex-direction: column; gap: 14px; }
.link-row {
    background: #fff; border-radius: 16px; padding: 16px 20px;
    display: flex; align-items: center; gap: 16px;
    box-shadow:
        0 16px 30px rgba(91,33,182,0.22),
        0 5px 12px rgba(34,197,94,0.15),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(124,58,237,0.08);
    border-left: 5px solid var(--green);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.link-row:hover {
    transform: translateY(-3px);
    box-shadow:
        0 22px 40px rgba(91,33,182,0.28),
        0 8px 16px rgba(34,197,94,0.18),
        inset 0 1px 0 rgba(255,255,255,0.8);
}
.link-thumb { width: 56px; height: 56px; flex-shrink: 0; border-radius: 12px; overflow: hidden; background: var(--green-pale); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.12); }
.link-thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-placeholder { font-size: 22px; color: var(--purple-light); }
.link-info { flex: 1; min-width: 0; }
.link-target { font-size: 13.5px; color: #555; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.link-short { font-size: 15px; margin-top: 3px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.link-short a { color: var(--purple); font-weight: 700; text-decoration: none; }
.arrow { color: var(--green-dark); }
.click-count { color: #888; font-size: 12.5px; font-weight: 600; }
.link-actions { display: flex; gap: 6px; flex-shrink: 0; }
.btn-sm {
    padding: 8px 15px; border-radius: 9px; border: 1px solid #e2e2e8; background: #fff;
    font-size: 13px; font-weight: 700; cursor: pointer; text-decoration: none; color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* ---- "YOUR LINKS" CTA BUTTON (home.php se dashboard.php le jaane ke liye) ---- */
.your-links-cta {
    display: block; text-align: center; margin-top: 24px;
    background: #fff; color: var(--purple-dark); text-decoration: none;
    font-weight: 800; font-size: 16px; padding: 18px; border-radius: 16px;
    box-shadow:
        0 18px 34px rgba(91,33,182,0.28),
        0 6px 14px rgba(34,197,94,0.15),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border-top: 4px solid var(--green);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.your-links-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 44px rgba(91,33,182,0.34), 0 8px 18px rgba(34,197,94,0.2);
}

/* ---- LIGHT THEME: flat/clean link rows (jaisa reference screenshot) ---- */
body.app-light .link-row {
    background: #fff; border-radius: 10px; padding: 14px 18px;
    box-shadow: none; border: 1px solid #eceef4; border-left: 3px solid var(--purple);
}
body.app-light .link-row:hover {
    transform: none; background: #fafaff;
    box-shadow: 0 2px 10px rgba(30,30,46,0.06);
}
body.app-light .link-target { color: #6b6b7d; }
body.app-light .btn-sm { box-shadow: none; border: 1px solid #dcdce6; }
.btn-sm:hover { background: var(--green-pale); border-color: var(--green-light); }
.btn-danger { color: #dc2626; border-color: #fecaca; }
.btn-danger:hover { background: #fee2e2; }

/* ---- PAGINATION ---- */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 20px; flex-wrap: wrap; }
.page-btn {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    background: #fff; border-radius: 8px; color: #333; text-decoration: none; font-weight: 600; font-size: 13px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.page-btn.active {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: #fff;
}

/* ---- IMAGE PREVIEW BOX (size selector ke sath, 3D look) ---- */
.img-preview-box {
    width: 100%;
    background: linear-gradient(135deg, #f8f8fb 0%, var(--green-pale) 100%);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--purple-light);
    box-shadow:
        0 16px 32px rgba(91,33,182,0.22),
        0 6px 14px rgba(34,197,94,0.15),
        inset 0 1px 0 rgba(255,255,255,0.6);
}
.img-preview-box img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
}
.img-preview-placeholder { color: #888; font-size: 13px; padding: 20px; text-align: center; font-weight: 600; }

/* ---- LAYER BADGE (dikhata hai ke abhi konsi layer preview mein hai) ---- */
.layer-badge {
    position: absolute; top: 10px; left: 10px; z-index: 5;
    background: var(--purple); color: #fff; font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.layer-badge-1 { background: #666; }

/* ---- DOUBLE LAYER IMAGE INFO BADGE ---- */
.layer-info {
    background: var(--green-pale); color: #166534; font-size: 13.5px; font-weight: 600; line-height: 1.6;
    padding: 14px 16px; border-radius: 12px; margin-bottom: 22px;
    border-left: 4px solid var(--green);
}

/* ---- ZOOM CONTROL ---- */
.zoom-control { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.zoom-slider {
    flex: 1; height: 6px; border-radius: 3px; -webkit-appearance: none; appearance: none;
    background: linear-gradient(90deg, var(--green) 0%, var(--purple) 100%);
    outline: none; cursor: pointer;
}
.zoom-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
    background: #fff; border: 3px solid var(--purple); cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}
.zoom-slider::-moz-range-thumb {
    width: 20px; height: 20px; border-radius: 50%;
    background: #fff; border: 3px solid var(--purple); cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}
.zoom-value { font-weight: 700; color: var(--purple-dark); font-size: 13px; min-width: 42px; text-align: right; }

/* ---- REMOVE (X) BUTTON on preview image ---- */
.img-remove-btn {
    position: absolute; top: 10px; right: 10px; width: 30px; height: 30px;
    border-radius: 50%; background: rgba(0,0,0,0.65); color: #fff; border: 2px solid #fff;
    cursor: pointer; font-size: 15px; font-weight: 700; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.img-remove-btn:hover { background: #dc2626; }

/* ---- PLAY BUTTON OVERLAY (on actual preview box, positioned absolute) ---- */
.play-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}
.play-overlay .circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    border-radius: 50%;
    z-index: 1;
}
.play-overlay .tri {
    width: 0; height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 26px solid #fff;
    margin-left: 6px;
    position: relative;
    z-index: 2;
}
.play-overlay.play-style-1 .circle { background: rgba(255,255,255,0.55); }
.play-overlay.play-style-1 .tri { border-left-color: #2a2a2a; }
.play-overlay.play-style-2 .circle { background: rgba(224,30,30,0.9); }
.play-overlay.play-style-3 .circle { background: transparent; border: 3px solid rgba(255,255,255,0.95); }
.play-overlay.play-style-4 .circle { background: rgba(0,0,0,0.55); }

/* ---- PREVIEW SIZE SELECTOR (zyada visible/3D) ---- */
.preview-size-select {
    border: 2px solid var(--purple-light) !important;
    box-shadow: 0 6px 14px rgba(124,58,237,0.18);
    font-weight: 700;
    background: #fff;
    color: var(--purple-dark);
}

/* ---- PLAY BUTTON PICKER (form UI, 4 selectable style buttons) ---- */
.play-btn-picker { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.play-btn-option {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    cursor: pointer; padding: 8px; border-radius: 10px; border: 2px solid transparent;
    font-size: 11px; color: #555; transition: 0.15s;
}
.play-btn-option:hover { background: var(--green-pale); }
.play-btn-option.selected { border-color: var(--purple); background: #ede9fe; }
.play-btn-preview {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.play-btn-preview .tri {
    width: 0; height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid #fff;
    margin-left: 3px;
}
.play-btn-preview.play-style-none { background: #eee; color: #999; font-size: 16px; }
.play-btn-preview.play-style-1 { background: rgba(120,120,120,0.35); }
.play-btn-preview.play-style-1 .tri { border-left-color: #2a2a2a; }
.play-btn-preview.play-style-2 { background: #e01e1e; }
.play-btn-preview.play-style-3 { background: transparent; border: 2px solid #999; }
.play-btn-preview.play-style-3 .tri { border-left-color: #666; }
.play-btn-preview.play-style-4 { background: rgba(0,0,0,0.6); }

/* ---- PROGRESS BAR OVERLAY (video-jaisa seek bar, image ke neeche) ---- */
.progress-overlay {
    position: absolute; left: 5%; right: 5%; bottom: 6%; height: 6px;
    border-radius: 4px; overflow: hidden;
}
.progress-overlay .fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 4px; }
.progress-overlay.progress-style-1 { background: rgba(255,255,255,0.35); }
.progress-overlay.progress-style-1 .fill { width: 60%; background: #e01e1e; }
.progress-overlay.progress-style-2 { background: rgba(0,0,0,0.45); }
.progress-overlay.progress-style-2 .fill { width: 50%; background: #fff; }
.progress-overlay.progress-style-2 .fill::after {
    content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%);
    width: 12px; height: 12px; border-radius: 50%; background: #fff;
}
.progress-overlay.progress-style-3 { background: rgba(120,120,120,0.4); }
.progress-overlay.progress-style-3 .fill { width: 70%; background: #fff; }
.progress-overlay.progress-style-4 { background: rgba(255,255,255,0.4); }
.progress-overlay.progress-style-4 .fill { width: 55%; background: var(--green); }

/* ---- PROGRESS BAR PICKER (form UI, 4 selectable style buttons) ---- */
.progress-btn-picker { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.progress-btn-option {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    cursor: pointer; padding: 8px; border-radius: 10px; border: 2px solid transparent;
    font-size: 11px; color: #555; transition: 0.15s;
}
.progress-btn-option:hover { background: var(--green-pale); }
.progress-btn-option.selected { border-color: var(--purple); background: #ede9fe; }
.progress-btn-preview {
    width: 44px; height: 24px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: #f5f5f5;
}
.progress-btn-preview .mini-bar {
    width: 32px; height: 5px; border-radius: 3px; position: relative; overflow: hidden;
}
.progress-btn-preview .mini-fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 3px; }
.progress-btn-preview.progress-style-none { background: #eee; color: #999; font-size: 16px; }
.progress-btn-preview.progress-style-1 .mini-bar { background: rgba(0,0,0,0.15); }
.progress-btn-preview.progress-style-1 .mini-fill { width: 60%; background: #e01e1e; }
.progress-btn-preview.progress-style-2 .mini-bar { background: rgba(0,0,0,0.35); }
.progress-btn-preview.progress-style-2 .mini-fill { width: 50%; background: #fff; }
.progress-btn-preview.progress-style-3 .mini-bar { background: #ccc; }
.progress-btn-preview.progress-style-3 .mini-fill { width: 70%; background: #fff; }
.progress-btn-preview.progress-style-4 .mini-bar { background: rgba(0,0,0,0.1); }
.progress-btn-preview.progress-style-4 .mini-fill { width: 55%; background: var(--green); }

/* ---- PAYMENT PROOF FORM (details/summary) ---- */
.plan-free details summary { list-style: none; }
.plan-free details summary::-webkit-details-marker { display: none; }
.plan-free details[open] summary { margin-bottom: 4px; }

/* ---- PAYMENT METHODS (EasyPaisa / JazzCash) ---- */
.payment-methods { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.payment-method-box {
    background: #f8f8fb;
    border: 2px solid var(--green-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 13px;
    box-shadow: 0 6px 14px rgba(34,197,94,0.12);
}
.payment-method-box .pm-title { font-weight: 800; color: var(--purple); margin-bottom: 3px; }
.payment-method-box .pm-number { font-weight: 700; font-size: 15px; letter-spacing: 0.5px; color: #222; }
