*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #f4f2ee;
    --white: #ffffff;
    --accent: #3a6df0;
    --accent2: #c850c0;
    --text: #1a1a2e;
    --muted: #7a7a8c;
    --border: #dddbd6;
    --success: #22c55e;
    --error: #ef4444;
    --card-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

.input-row.backfrounf {
    background: #d9d9d9;
    padding: 10px;
    font-size: 16px;
    color: #5e5e5e;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #f4f2ee;
    --white: #ffffff;
    --accent: #3a6df0;
    --accent2: #c850c0;
    --text: #1a1a2e;
    --muted: #7a7a8c;
    --border: #dddbd6;
    --success: #22c55e;
    --error: #ef4444;
    --card-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    box-shadow: 0 0 0px 1000px #ffffff inset !important;

    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}


/* OPTIONAL: keep your design */
.field input,
.field select {
    background-color: #fff !important;
    border-radius: 10px !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text);
    text-decoration: none;
}

.quientity {
    display: flex;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 18px;
    height: 18px;
}

/* LAYOUT */
.checkout-wrap {
    max-width: 950px;
    margin: 0 auto;
    /* padding:0px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    background: #fff;
}

/* LEFT – ORDER SUMMARY */
.order-card {
    padding: 30px;
    /* box-shadow: var(--card-shadow); */
}

.order-card h2 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    margin-bottom: 20px;
}

.product-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    padding-bottom: 20px;
}

.product-img {
    width: 72px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    background: #f0f0f0;
    flex-shrink: 0;
}

.product-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}

.product-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
}

.product-price {
    font-weight: 600;
    font-size: 14px;
    margin-top: 4px;
}

/* TOTAL */
.total-box {
    margin-top: 10px;
    background: #fff;
    border: 1px solid #c7d4f7;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;

}

.flag {
    font-size: 22px;
}

.total-label {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.total-amount {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

/* RIGHT – FORM */
.form-card {
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.form-grid {
    display: grid;
    gap: 12px;
}

.field-icon {
    color: var(--muted);
}

.form-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.field input,
.field select {
    width: 100%;
    padding: 12px 14px 12px 12px;
    border: 1.5px solid var(--border);
    border-radius: 0px !important;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    appearance: none;
}

.field input::placeholder,
.field select option[value=""] {
    color: var(--muted);
}

.field input:focus,
.field select:focus {
    border-color: var(--accent);
    box-shadow: none;
}

.field input.error-input {
    border-color: var(--error);
}

.field.india {
    border: 1px solid #dcdcdc;
    background-color: #d9d9d9;
}

.error-msg {
    color: var(--error);
    font-size: 14px;
    margin-top: 0;
    display: block;
    padding: 6px;
    padding-top: 0;
}

/* MANUAL ADDRESS TOGGLE */
.manual-fields {
    display: none;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    transition: all .3s ease;
}

.manual-fields.open {
    display: flex;
}

.enter-manual-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    padding: 4px 0;
    margin-top: 2px;
}

.enter-manual-link:hover {
    text-decoration: underline;
}

.enter-manual-link svg {
    transition: transform .25s;
}

.enter-manual-link.open svg {
    transform: rotate(180deg);
}

/* BANK CARD */
.bank-card {
    background: #f7f9ff;
    border: 1px solid #c7d4f7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.bank-card h3 {
    font-size: 16px;
    text-transform: none;
    letter-spacing: normal;
    color: #000;
    margin-bottom: 6px;
    font-weight: 600;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 5px 0;
    border-bottom: 1px dashed #dde4f5;
}

.bank-row:last-child {
    border: none;
}

.bank-row .bval {
    font-weight: 600;
}

/* CONFIRM PAYMENT */
.confirm-card {
    border: 1px solid #c7d4f7;
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
    background: #f7f9ff;
}

.confirm-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.confirm-card p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
}

.utr-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.input-row.backfrounf {
    background: #d9d9d9;
    padding: 10px;
    font-size: 15px;
    color: #5e5e5e;
}


.utr-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(58, 109, 240, .12);
}

.utr-input.error-input {
    border-color: var(--error);
}

/* CHECKBOX */
.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.check-row input[type=checkbox] {
    width: 17px;
    height: 17px;
    accent-color: var(--accent);
    cursor: pointer;
}

.check-row label {
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
}

/* CAPTCHA */
.captcha-section {
    margin: 16px 0;
}

.captcha-section label {
    font-size: 13px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.captcha-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.captcha-img-wrap {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    border: 1px solid #dcdcdc;
}

#captchaText {
    font-family: 'Courier New', monospace;
    font-size: 22px;
    letter-spacing: 8px;
    color: #000;
    filter: blur(0.5px);
    user-select: none;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, .3);
}

.captcha-refresh {
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    font-size: 21px;
    text-decoration: underline;
    margin-left: 0;
}

.captcha-row input {
    flex: 1;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.captcha-row input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(58, 109, 240, .12);
}

/* PLACE ORDER BTN */
.place-order-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .03em;
    transition: opacity .2s, transform .1s;
    margin-top: 8px;
}

.section-title.payment {
    padding-top: 10px;
    margin-bottom: 10px !important;
}

.place-order-btn:hover {
    opacity: .92;
}

.place-order-btn:active {
    transform: scale(.99);
}

.place-order-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

/* FOOTER NOTE */
.powered-by {
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    margin-top: 16px;
}

.product-left img {
    width: 52px;
    height: auto;
}

.powered-by a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

/* ALERTS */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
}

.contact-box .field {
    border-bottom: 1px solid #dcdcdc;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0px 14px;
}

.contact-box .field:last-child {
    border-bottom: none !important;
}

.contact-box .field input,
.field select {
    border: #fff;
    background: none;
}

.section-title.contact {
    margin-bottom: 6px;
}

.contact-box {
    width: 100%;
    border: 1px solid #dcdcdc;
    overflow: hidden;
    margin-bottom: 4px;
    border-radius: 10px;
}


/* Login */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    /* horizontal */
    align-items: center;
    /* vertical */
    padding: 20px;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    /* margin: 40px auto; */
}

.login-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    justify-content: center
}

.login-logo .icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.login-logo span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .02em
}

h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    text-align: center
}

.sub {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-bottom: 24px
}

.field {
    margin-bottom: 14px
}

.field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.field input:focus {
    border-color: #3a6df0;
    box-shadow: none;
}

.error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px
}

.login-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #3a6df0, #c850c0);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px
}

.login-btn:hover {
    opacity: .92
}

.login-logo img {
    width: auto;
    height: 27px;
}

.contact_details_form {
    flex-wrap: wrap;
}

.contact_details_form input {
    min-width: calc(100% - 16px);
    width: calc(100% - 16px) !important;
}



/* RIGHT – FORM */
.form-card {
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.form-grid {
    display: grid;
    gap: 12px;
}

.form-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.field input::placeholder,
.field select option[value=""] {
    color: var(--muted);
}

.field input:focus,
.field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(58, 109, 240, .12);
}

.field input.error-input {
    border-color: var(--error);
}

.field.india {
    border: 1px solid #dcdcdc;
    background-color: #d9d9d9;
}

/* MANUAL ADDRESS TOGGLE */
.manual-fields {
    display: none;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    transition: all .3s ease;
}

.manual-fields.open {
    display: flex;
}

.enter-manual-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    padding: 4px 0;
    margin-top: 2px;
}

.enter-manual-link:hover {
    text-decoration: underline;
}

.enter-manual-link svg {
    transition: transform .25s;
}

.enter-manual-link.open svg {
    transform: rotate(180deg);
}

/* BANK CARD */
.bank-card {
    background: #f7f9ff;
    border: 1px solid #c7d4f7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.bank-card h3 {
    font-size: 16px;
    text-transform: none;
    letter-spacing: normal;
    color: #000;
    margin-bottom: 6px;
    font-weight: 600;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 5px 0;
    border-bottom: 1px dashed #dde4f5;
}

.bank-row:last-child {
    border: none;
}

.bank-row .bval {
    font-weight: 600;
}

/* CONFIRM PAYMENT */
.confirm-card {
    border: 1px solid #c7d4f7;
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
    background: #f7f9ff;
}

.confirm-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.confirm-card p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
}

.utr-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.input-row.background {
    background: #d9d9d9;
    padding: 10px;
    font-size: 15px;
    color: #5e5e5e;
}


.utr-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(58, 109, 240, .12);
}

.utr-input.error-input {
    border-color: var(--error);
}

/* CHECKBOX */
.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.check-row input[type=checkbox] {
    width: 17px;
    height: 17px;
    accent-color: var(--accent);
    cursor: pointer;
}

.check-row label {
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
}

/* CAPTCHA */
.captcha-section {
    margin: 16px 0;
}

.captcha-section label {
    font-size: 13px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.captcha-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.captcha-img-wrap {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    border: 1px solid #dcdcdc;
}

#captchaText {
    font-family: 'Courier New', monospace;
    font-size: 22px;
    letter-spacing: 8px;
    color: #000;
    filter: blur(0.5px);
    user-select: none;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, .3);
}

.captcha-refresh {
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    font-size: 21px;
    text-decoration: underline;
    margin-left: 0;
}

.captcha-row input {
    flex: 1;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.captcha-row input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(58, 109, 240, .12);
}

/* PLACE ORDER BTN */
.place-order-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .03em;
    transition: opacity .2s, transform .1s;
    margin-top: 8px;
}

.section-title.payment {
    padding-top: 10px;
    margin-bottom: 10px !important;
}

.place-order-btn:hover {
    opacity: .92;
}

.place-order-btn:active {
    transform: scale(.99);
}

.place-order-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

/* FOOTER NOTE */
.powered-by {
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    margin-top: 16px;
}

.product-left img {
    width: 52px;
    height: auto;
}

.powered-by a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

/* ALERTS */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
}

.contact-box .field {
    border-bottom: 1px solid #dcdcdc;
}

.contact-box .field input,
.field select {
    border: #fff;
    background: none;
    box-shadow: none !important;
}

.section-title.contact {
    margin-bottom: 6px;
}

.contact-box {
    width: 100%;
    border: 1px solid #dcdcdc;
    overflow: hidden;
    margin-bottom: 4px;
    border-radius: 10px;
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #16a34a;
}

.contec-logo img {
    width: auto;
    height: 26px;
}

.contec-logo {
    padding-bottom: 30px;
}

.qty-row {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 6px;
}

.qty-label {
    font-size: 12px;
    color: var(--muted);
}

.qty-ctrl {
    display: flex;
    align-items: center;
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg);
}

.qty-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    font-size: 18px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

.qty-btn:hover {
    background: var(--border);
}

.qty-num {
    width: 52px;
    text-align: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 6px;
    background: #f8f8f8;
    outline: none;
    -moz-appearance: textfield;
    /* Firefox arrow hide */
}

.qty-num::-webkit-outer-spin-button,
.qty-num::-webkit-inner-spin-button {
    -webkit-appearance: none;
    /* Chrome arrow hide */
}

.qty-num:focus {
    border-color: #3a6df0;
    background: #fff;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08)
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 28px
}

.login-logo img {
    width: auto;
    height: 27px
}

h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    text-align: center
}

.sub {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-bottom: 24px
}

.field {
    margin-bottom: 14px
}

.field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.field input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e0deda;
    border-radius: 9px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .2s
}

.field input:focus {
    border-color: #3a6df0;
    box-shadow: 0 0 0 3px rgba(58, 109, 240, .1)
}

.error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px
}

.login-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #3a6df0, #c850c0);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer
}

.login-btn:hover {
    opacity: .92
}
.login_wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.policy-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    z-index: 9998;
    align-items: center;
    justify-content: center;
}
.policy-overlay.active {
    display: flex;
}

/* Modal box */
.policy-modal {
    background: #fff;
    border-radius: 12px;
    width: min(680px, 94vw);
    max-height: 82vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
    animation: modalIn 0.22s ease;
    z-index: 9999;
    overflow: hidden;
}
@keyframes modalIn {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* Header */
.policy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px 16px;
    border-bottom: 1px solid #e8e8e8;
    flex-shrink: 0;
}
.policy-modal-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}
.policy-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    padding: 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: background 0.15s, color 0.15s;
}
.policy-modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

/* Scrollable body */
.policy-modal-body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    flex: 1;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #333;
}
.policy-modal-body h2 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 20px 0 6px;
    text-align: left;
    background: #e8e8e8;
    padding: 2px 10px;
    border-radius: 3px;
}
.policy-modal-body h2:first-child { margin-top: 0; }
.policy-modal-body p  { margin: 0 0 10px; }
.policy-modal-body ul {
    margin: 0 0 10px 18px;
    padding: 0;
}
.policy-modal-body ul li { margin-bottom: 4px; }
.policy-modal-body .meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 18px;
}

/* Powered-by footer links */
.powered-by a.policy-link {
    cursor: pointer;
    text-decoration: underline;
    color: inherit;
}

/* ============================================================
   PAYMENT METHOD SELECTOR
   ============================================================ */
.payment-method-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.payment-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    background: #fff;
}

.payment-option:hover {
    border-color: #b0c4f7;
    background: #fbfcff;
}

.payment-option.active {
    border-color: var(--accent);
    background: #f0f4ff;
    box-shadow: 0 0 0 3px rgba(58, 109, 240, 0.1);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f0f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
}

.payment-option.active .payment-option-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.payment-option.active .payment-option-icon svg {
    stroke: #fff;
}

.payment-option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-option-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.payment-option-desc {
    font-size: 12px;
    color: var(--muted);
}

.payment-secure-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 600;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 2px 8px;
    letter-spacing: 0.02em;
}

/* ONLINE PAYMENT CARD */
.online-payment-card {
    background: #f7f9ff;
    border: 1px solid #c7d4f7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.online-payment-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.online-payment-header h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.online-payment-header p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

.payment-methods-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.pm-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #444;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px 12px;
}

.online-payment-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
    background: #eef2ff;
    border-radius: 8px;
    padding: 10px 12px;
}

.online-payment-note svg {
    flex-shrink: 0;
}

/* Responsive: stack payment options on mobile */
@media (max-width: 600px) {
    .payment-method-selector {
        flex-direction: column;
        gap: 8px;
    }
    .payment-secure-badge {
        position: static;
        margin-left: auto;
    }
}