/* XeNhap2Banh — Trang thông tin */
:root { --xnhp-red: #DC2626; --xnhp-red-d: #b91c1c; }

.xnhp-wrap { background: #f6f7f9; padding: 0 0 40px; }
.xnhp-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* Breadcrumb */
.xnhp-crumb { font-size: 13px; color: #888; padding: 16px 0 10px; }
.xnhp-crumb a { color: #666; text-decoration: none; }
.xnhp-crumb a:hover { color: var(--xnhp-red); }
.xnhp-crumb span { margin: 0 6px; }
.xnhp-crumb .cur { color: var(--xnhp-red); font-weight: 600; }

/* Title */
.xnhp-title {
    font-size: 26px; font-weight: 800; color: #1a1a1a; margin: 0 0 20px;
    padding-bottom: 14px; border-bottom: 3px solid var(--xnhp-red); position: relative;
}

/* Grid */
.xnhp-grid { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
@media (max-width: 900px) { .xnhp-grid { grid-template-columns: 1fr; } }

/* Main content card */
.xnhp-main {
    background: #fff; border: 1px solid #eaeaea; border-radius: 10px;
    padding: 30px 32px; box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.xnhp-main h2 {
    font-size: 19px; font-weight: 700; color: var(--xnhp-red); margin: 28px 0 12px;
    display: flex; align-items: center; gap: 8px;
}
.xnhp-main h2:first-child { margin-top: 0; }
.xnhp-main h3 { font-size: 16px; font-weight: 700; color: #1a1a1a; margin: 20px 0 10px; }
.xnhp-main p { font-size: 15px; line-height: 1.75; color: #333; margin: 0 0 14px; }
.xnhp-main ul, .xnhp-main ol { margin: 0 0 16px; padding-left: 22px; }
.xnhp-main li { font-size: 15px; line-height: 1.8; color: #333; margin-bottom: 6px; }
.xnhp-main strong { color: #1a1a1a; }
.xnhp-main a { color: var(--xnhp-red); }
.xnhp-main img { max-width: 100%; height: auto; border-radius: 8px; }

/* Step list */
.xnhp-steps { counter-reset: step; list-style: none; padding: 0; margin: 16px 0; }
.xnhp-steps li {
    position: relative; padding: 16px 16px 16px 64px; margin-bottom: 12px;
    background: #fafafa; border: 1px solid #eee; border-radius: 8px; counter-increment: step;
}
.xnhp-steps li::before {
    content: counter(step); position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    width: 34px; height: 34px; background: var(--xnhp-red); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px;
}
.xnhp-steps li b { display: block; margin-bottom: 3px; color: #1a1a1a; }

/* Highlight box */
.xnhp-box {
    background: #fff5f5; border-left: 4px solid var(--xnhp-red); border-radius: 0 8px 8px 0;
    padding: 14px 18px; margin: 18px 0; font-size: 14px; color: #444;
}
.xnhp-box.green { background: #f0fdf4; border-left-color: #16a34a; }
.xnhp-box.blue  { background: #eff6ff; border-left-color: #2563eb; }

/* Payment methods */
.xnhp-pay { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 12px; margin: 16px 0; }
.xnhp-pay-item {
    border: 1px solid #eaeaea; border-radius: 8px; padding: 16px; text-align: center; background: #fafafa;
}
.xnhp-pay-item .ic { font-size: 28px; }
.xnhp-pay-item b { display: block; margin-top: 6px; font-size: 14px; color: #1a1a1a; }
.xnhp-pay-item span { font-size: 12px; color: #888; }

/* Bank info table */
.xnhp-bank { width: 100%; border-collapse: collapse; margin: 14px 0; }
.xnhp-bank td { padding: 10px 14px; border: 1px solid #eaeaea; font-size: 14px; }
.xnhp-bank td:first-child { background: #fafafa; font-weight: 600; width: 160px; color: #555; }

/* Sidebar */
.xnhp-side { position: sticky; top: 20px; }
.xnhp-widget {
    background: #fff; border: 1px solid #eaeaea; border-radius: 10px;
    padding: 18px 20px; margin-bottom: 16px;
}
.xnhp-widget h4 {
    font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0 0 14px;
    padding-bottom: 10px; border-bottom: 2px solid #f0f0f0;
}
.xnhp-nav { list-style: none; margin: 0; padding: 0; }
.xnhp-nav li { margin: 0; }
.xnhp-nav li a {
    display: block; padding: 9px 12px; font-size: 14px; color: #444; text-decoration: none;
    border-radius: 6px; transition: all .15s; border-left: 3px solid transparent;
}
.xnhp-nav li a:hover { background: #fafafa; color: var(--xnhp-red); }
.xnhp-nav li.active a {
    background: #fff5f5; color: var(--xnhp-red); font-weight: 700; border-left-color: var(--xnhp-red);
}

/* Support widget */
.xnhp-support .hot { display: flex; justify-content: space-between; align-items: center; margin: 0 0 10px; font-size: 14px; }
.xnhp-support .hot span { color: #888; }
.xnhp-support .hot a { color: var(--xnhp-red); font-weight: 700; text-decoration: none; }
.xnhp-support .time { font-size: 13px; color: #888; margin: 8px 0 0; }

/* Contact page */
.xnhp-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
@media (max-width: 700px) { .xnhp-contact-grid { grid-template-columns: 1fr; } }
.xnhp-info-card { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
.xnhp-info-card .ic { font-size: 22px; flex-shrink: 0; }
.xnhp-info-card b { display: block; font-size: 14px; color: #1a1a1a; margin-bottom: 2px; }
.xnhp-info-card p { margin: 0; font-size: 14px; color: #555; }

/* Form */
.xnhp-form .row { margin-bottom: 14px; }
.xnhp-form label { display: block; font-size: 14px; font-weight: 600; color: #333; margin-bottom: 5px; }
.xnhp-form input, .xnhp-form textarea {
    width: 100%; padding: 11px 13px; border: 1px solid #d5d5d5; border-radius: 7px;
    font-size: 14px; font-family: inherit; box-sizing: border-box;
}
.xnhp-form input:focus, .xnhp-form textarea:focus { outline: none; border-color: var(--xnhp-red); }
.xnhp-form .hp { position: absolute; left: -9999px; }
.xnhp-form button {
    background: var(--xnhp-red); color: #fff; border: none; padding: 12px 28px; border-radius: 7px;
    font-size: 15px; font-weight: 700; cursor: pointer; transition: background .15s;
}
.xnhp-form button:hover { background: var(--xnhp-red-d); }
.xnhp-alert { padding: 12px 16px; border-radius: 7px; margin-bottom: 16px; font-size: 14px; }
.xnhp-alert.ok  { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.xnhp-alert.err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Map */
.xnhp-map { margin-top: 24px; border-radius: 10px; overflow: hidden; border: 1px solid #eaeaea; }
.xnhp-map iframe { display: block; width: 100%; height: 340px; border: 0; }
