:root {
    --bg: #f2f1ee;
    --white: #ffffff;
    --text: #111111;
    --muted: #777777;
    --light: #f8f7f5;
    --border: rgba(0, 0, 0, 0.09);
    --red: #d0021b;
    --red-dark: #a8000f;
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.07);
    --shadow-panel: 0 -8px 48px rgba(0, 0, 0, 0.13);
}

/* ─── Page header ─── */
.page-head {
    max-width: 1160px;
    margin: 0 auto 36px;
}

.page-head h1 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -.02em;
    margin-bottom: 4px;
}

.page-head p {
    font-size: 14px;
    color: var(--muted);
}

/* ─── Filter tabs ─── */
.filters {
    max-width: 1160px;
    margin: 0 auto 32px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ftab {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: none;
    color: var(--muted);
    cursor: pointer;
    transition: all .15s;
}

.ftab:hover {
    border-color: rgba(0, 0, 0, 0.3);
    color: var(--text);
}

.ftab.on {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

/* ─── Grid ─── */
.grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ─── Card item ─── */
.card-item {
    background: var(--white);
    border-radius: 18px;
    padding: 22px 22px 18px;
    border: 2px solid transparent;
    transition: transform .25s, box-shadow .25s, border-color .2s;
    cursor: default;
}

.card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.10);
}

.card-item.selected {
    border-color: var(--red);
}

/* ─── Physical card ─── */
.phys {
    width: 100%;
    aspect-ratio: 1.586;
    border-radius: 13px;
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
    transition: transform .3s;
}

.phys:hover {
    transform: scale(1.015);
}

/* themes */
.t-black {
    background: #181818;
}

.t-red {
    background: linear-gradient(135deg, #b01e15 0%, #e53935 55%, #b71c1c 100%);
}

.t-silver {
    background: linear-gradient(145deg, #c8c8c8 0%, #a8a8a8 35%, #d5d5d5 65%, #b4b4b4 100%);
}

.t-navy {
    background: linear-gradient(135deg, #0b2137 0%, #183556 55%, #0b2137 100%);
}

.t-gold {
    background: linear-gradient(135deg, #281800 0%, #4a2c00 50%, #281800 100%);
}

.t-green {
    background: linear-gradient(135deg, #092b18 0%, #185530 55%, #092b18 100%);
}

/* patterns */
.pat-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.pat-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, .11) 1px, transparent 1px);
    background-size: 15px 15px;
}

.pat-marble {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(118deg, transparent 0, rgba(255, 255, 255, .07) 2px, transparent 4px, rgba(0, 0, 0, .06) 6px, transparent 8px);
}

.pat-wave {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(45deg, transparent 0, transparent 10px, rgba(255, 255, 255, .04) 10px, rgba(255, 255, 255, .04) 11px);
}

/* card inner */
.ci {
    position: absolute;
    inset: 0;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ci-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ci-logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ci-hex {
    width: 14px;
    height: 14px;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}

.ci-brand {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: .01em;
}

.ci-brand b {
    font-weight: 700;
}

.dk .ci-brand,
.dk .ci-lbl {
    color: rgba(255, 255, 255, .85);
}

.lt .ci-brand,
.lt .ci-lbl {
    color: rgba(25, 25, 25, .78);
}

.ci-lbl {
    font-size: 9px;
    letter-spacing: .07em;
    text-transform: lowercase;
}

.ci-chip {
    display: flex;
    align-items: center;
    gap: 7px;
}

.chip {
    width: 27px;
    height: 20px;
    border-radius: 3px;
    background: linear-gradient(135deg, #c8a800, #f0d060, #a87e00, #f0d060);
    position: relative;
    overflow: hidden;
}

.chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: .5px;
    background: rgba(0, 0, 0, .25);
    transform: translateY(-50%);
}

.chip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: .5px;
    background: rgba(0, 0, 0, .25);
    transform: translateX(-50%);
}

.ci-wifi {
    opacity: .6;
    flex-shrink: 0;
}

.dk .ci-wifi {
    color: #fff;
}

.lt .ci-wifi {
    color: #333;
}

.ci-num {
    font-family: 'Orbitron', monospace;
    font-size: 11px;
    letter-spacing: .18em;
}

.dk .ci-num {
    color: rgba(255, 255, 255, .87);
}

.lt .ci-num {
    color: rgba(20, 20, 20, .78);
}

.ci-bot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.ci-holder {}

.ci-vl {
    font-size: 6.5px;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 1px;
}

.dk .ci-vl {
    color: rgba(255, 255, 255, .42);
}

.lt .ci-vl {
    color: rgba(20, 20, 20, .38);
}

.ci-name {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.dk .ci-name {
    color: rgba(255, 255, 255, .9);
}

.lt .ci-name {
    color: rgba(20, 20, 20, .82);
}

.ci-exp {
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    font-weight: 600;
    margin: 0 12px 0 6px;
}

.dk .ci-exp {
    color: rgba(255, 255, 255, .72);
}

.lt .ci-exp {
    color: rgba(20, 20, 20, .68);
}

/* networks */
.n-visa {
    font-family: 'Orbitron', monospace;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.dk .n-visa {
    color: #fff;
}

.lt .n-visa {
    color: #1a1f71;
}

.n-mc {
    display: flex;
}

.mc1,
.mc2 {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.mc1 {
    background: #eb001b;
}

.mc2 {
    background: #f79e1b;
    margin-left: -7px;
    opacity: .95;
}

.n-amex {
    background: #016fd0;
    color: #fff;
    font-size: 6.5px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    padding: 2px 4px;
    border-radius: 2px;
    line-height: 1.4;
    text-align: center;
}

/* ─── Card meta ─── */
.ctag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 2px 8px;
    border-radius: 100px;
    background: #f0efec;
    color: #666;
    margin-bottom: 7px;
}

.cname {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 5px;
}

.cdesc {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.cdivider {
    height: 1px;
    background: var(--border);
    margin-bottom: 12px;
}

.cfoot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
}

/* ── Know more button ── */
.btn-know {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1.5px solid #c0001a;
    background: transparent;
    color: #c0001a;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: background .18s, color .18s, transform .12s;
    font-family: inherit;
}

.btn-know svg {
    transition: transform .18s;
    flex-shrink: 0;
}

.btn-know:hover {
    background: #c0001a;
    color: #fff;
    transform: translateY(-1px);
}

.btn-know:hover svg {
    transform: translateX(3px);
}

.btn-know:active {
    transform: scale(.97);
}

/* ── Compare button ── */
.btn-cmp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1.5px solid #d1d5db;
    background: #f9fafb;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    flex: 1;
    transition: border-color .18s, color .18s, background .18s, transform .12s;
    font-family: inherit;
}

.btn-cmp:hover {
    border-color: #c0001a;
    color: #c0001a;
    background: #fff0f2;
}

.btn-cmp:active {
    transform: scale(.97);
}

/* Compare — selected/active state */
.btn-cmp.on {
    border-color: #c0001a;
    background: #c0001a;
    color: #fff;
}

.btn-cmp.on .cmp-box {
    background: rgba(255, 255, 255, .25);
    border-color: rgba(255, 255, 255, .5);
}

.btn-cmp.on .cmp-tick {
    opacity: 1;
}

/* ── Checkbox inside Compare button ── */
.cmp-box {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s, border-color .15s;
}

.cmp-tick {
    font-size: 10px;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    opacity: 0;
    transition: opacity .15s;
}

/* ════════════════════════════════════════════
   COMPARE PANEL
   ════════════════════════════════════════════ */
#cpanel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .09);
    box-shadow: var(--shadow-panel);
    transform: translateY(110%);
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
}

#cpanel.visible {
    transform: translateY(0);
}

.cpanel-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 18px 40px 20px;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Title block */
.cp-title {
    flex-shrink: 0;
}

.cp-title h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

/* Slots row */
.cp-slots {
    display: flex;
    gap: 18px;
    flex: 1;
}

/* Single slot */
.cp-slot {
    width: 168px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cp-thumb {
    width: 100%;
    aspect-ratio: 1.586;
    border-radius: 11px;
    position: relative;
    overflow: hidden;
    border: 1.5px dashed rgba(0, 0, 0, .17);
    background: #f8f7f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, box-shadow .2s;
}

.cp-thumb.has-card {
    border-style: solid;
    border-color: rgba(0, 0, 0, .13);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

/* pop-in animation */
@keyframes popIn {
    0% {
        transform: scale(.7) translateY(10px);
        opacity: 0;
    }

    65% {
        transform: scale(1.04) translateY(-2px);
        opacity: 1;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.cp-thumb.pop {
    animation: popIn .35s cubic-bezier(.34, 1.56, .64, 1) both;
}

.cp-empty-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(0, 0, 0, .18);
}

.cp-empty-icon svg {
    opacity: .5;
}

.cp-empty-icon span {
    font-size: 11px;
    font-weight: 500;
}

/* Mini card inside thumb */
.mini-card {
    position: absolute;
    inset: 0;
}

.mini-inner {
    position: absolute;
    inset: 0;
    padding: 9px 11px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mini-brand {
    font-size: 9px;
    font-weight: 700;
}

.mini-num {
    font-family: 'Orbitron', monospace;
    font-size: 7px;
    letter-spacing: .1em;
}

.mini-bot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.mini-name {
    font-size: 7px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.mini-net {}

.dk .mini-brand,
.dk .mini-num,
.dk .mini-name {
    color: rgba(255, 255, 255, .78);
}

.lt .mini-brand,
.lt .mini-num,
.lt .mini-name {
    color: rgba(20, 20, 20, .68);
}

.mini-visa {
    font-family: 'Orbitron', monospace;
    font-size: 9px;
    font-weight: 700;
}

.dk .mini-visa {
    color: #fff;
}

.lt .mini-visa {
    color: #1a1f71;
}

.mini-mc {
    display: flex;
}

.mini-mc1,
.mini-mc2 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mini-mc1 {
    background: #eb001b;
}

.mini-mc2 {
    background: #f79e1b;
    margin-left: -4px;
}

.mini-amex {
    background: #016fd0;
    color: #fff;
    font-size: 5px;
    font-weight: 700;
    padding: 1px 3px;
    border-radius: 2px;
    line-height: 1.4;
    text-align: center;
}

/* × remove button on thumb */
.thumb-x {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 5;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    border: none;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    line-height: 1;
}

.thumb-x:hover {
    background: var(--red);
}

/* Slot label under thumb */
.cp-slot-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text);
    text-align: center;
    line-height: 1.3;
    min-height: 28px;
    display: flex;
    align-items: center;
}

.cp-slot-label.empty-lbl {
    color: rgba(0, 0, 0, .22);
}

/* Right section */
.cp-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.cp-clear {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color .15s;
}

.cp-clear:hover {
    color: var(--red);
}

.cp-clear svg {
    flex-shrink: 0;
}

.cp-count {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.cp-count .cnt {
    color: var(--red);
}

.btn-go {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px 34px;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: .01em;
    transition: background .15s, opacity .15s, transform .1s;
}

.btn-go:hover:not(:disabled) {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.btn-go:active:not(:disabled) {
    transform: translateY(0);
}

.btn-go:disabled {
    opacity: .38;
    cursor: not-allowed;
    transform: none;
}

/* ════════════════════════════════════════════
   COMPARE MODAL
   ════════════════════════════════════════════ */
#cmodal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .52);
    display: flex;
    align-items: center;        /* flex-start → center */
    justify-content: center;
    padding: 24px 20px;         /* padding কমানো */
    overflow-y: hidden;         /* auto → hidden */
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
    backdrop-filter: blur(4px);
}

#cmodal.open {
    opacity: 1;
    pointer-events: all;
}

.mbox {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 960px;
    overflow: hidden;
    max-height: 90vh;           /* ← এটা যোগ করুন */
    display: flex;              /* ← এটা যোগ করুন */
    flex-direction: column;     /* ← এটা যোগ করুন */
    transform: translateY(18px) scale(.98);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

#cmodal.open .mbox {
    transform: translateY(0) scale(1);
}

.mhead {
    padding: 20px 26px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.mhead h2 {
    font-size: 17px;
    font-weight: 600;
}

.mclose {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .1);
    background: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

.mclose:hover {
    background: #f0f0f0;
}

.mscroll-body {
    overflow-y: auto;           /* ← মূল scroll এখানে */
    overflow-x: hidden;
    flex: 1;                    /* ← বাকি সব জায়গা নেবে */
    -webkit-overflow-scrolling: touch;
}

.mtable {
    width: 100%;
    border-collapse: collapse;
}

.mtable th {
    padding: 18px 14px 14px;
    text-align: center;
    vertical-align: bottom;
    min-width: 170px;
}

.mtable th:first-child {
    min-width: 150px;
    text-align: left;
    background: #fafaf9;
}

.mtable td {
    padding: 12px 14px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    vertical-align: middle;
}

.mtable td:first-child {
    text-align: left;
    font-weight: 500;
    font-size: 12.5px;
    color: var(--text);
    background: #fafaf9;
}

.mtable tbody tr:last-child td {
    border-bottom: none;
}

.mtable tbody tr:hover td {
    background: #fafef8;
}

.mtable tbody tr:hover td:first-child {
    background: #f4f4f1;
}

.mthumb {
    width: 100%;
    aspect-ratio: 1.586;
    border-radius: 9px;
    overflow: hidden;
    position: relative;
    margin-bottom: 9px;
}

.mthumb-inner {
    position: absolute;
    inset: 0;
    padding: 9px 11px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mcard-name {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.tick {
    color: #178a4a;
    font-size: 16px;
}

.cross {
    color: var(--red);
    font-size: 16px;
}

.mfoot {
    padding: 16px 26px;
    border-top: 1px solid rgba(0, 0, 0, .07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.mfoot-note {
    font-size: 12px;
    color: var(--muted);
}

.btn-mclose {
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    background: none;
    border: 1px solid rgba(0, 0, 0, .14);
    padding: 8px 20px;
    border-radius: 100px;
    cursor: pointer;
    transition: border-color .15s;
}

.btn-mclose:hover {
    border-color: var(--text);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #1a1a1a;
    color: #fff;
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 12.5px;
    z-index: 1200;
    opacity: 0;
    transition: opacity .2s, transform .2s;
    pointer-events: none;
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


/* ══════════════════════════════════════════════════════════
   card.css — এই CSS যোগ করুন (আগেরগুলো replace করুন)
   ══════════════════════════════════════════════════════════
*/

#cmodal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.55);
    align-items: center;
    justify-content: center;
    padding: 12px;
}
#cmodal.open { display: flex; }

.mbox {
    background: #fff;
    border-radius: 14px;
    border: 0.5px solid rgba(0,0,0,.1);
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 0.5px solid rgba(0,0,0,.08);
    flex-shrink: 0;
}
.mhead-title { font-size: 14px; font-weight: 600; color: #111; }

.mclose {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 0.5px solid rgba(0,0,0,.15);
    background: transparent;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: #666;
    transition: background .15s;
}
.mclose:hover { background: #f3f3f3; }

.card-strip {
    display: grid;
    border-bottom: 0.5px solid rgba(0,0,0,.08);
    flex-shrink: 0;
}
.card-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 10px 14px;
    gap: 10px;
    border-right: 0.5px solid rgba(0,0,0,.08);
}
.card-col:last-child { border-right: none; }

.card-title-top {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    text-align: center;
    line-height: 1.4;
    min-height: 28px;
    display: flex; align-items: center; justify-content: center;
}
.card-img-frame {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 8px;
    overflow: hidden;
    border: 0.5px solid rgba(0,0,0,.08);
    background: #f3f3f3;
}
.card-img-ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; letter-spacing: .06em;
    color: rgba(255,255,255,.4);
}
.card-badge {
    font-size: 10px;
    padding: 2px 9px;
    border-radius: 999px;
    border: 0.5px solid rgba(0,0,0,.1);
    color: #666;
    background: #f5f5f5;
    white-space: nowrap;
}

.details-grid {
    display: grid;
    /* overflow-y: auto; */
    /* flex: 1; */
    /* max-height: 260px; */
}
.detail-col {
    padding: 14px 12px;
    border-right: 0.5px solid rgba(0,0,0,.07);
    border-top: 0.5px solid rgba(0,0,0,.07);
}
.detail-col:last-child { border-right: none; }

.detail-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.55;
    margin-bottom: 10px;
}
.detail-h {
    font-size: 10px;
    font-weight: 600;
    color: #999;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 7px;
}
.blist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.blist li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 11px;
    color: #222;
    line-height: 1.4;
}
.bico {
    flex-shrink: 0;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #fff0f2;
    border: 0.5px solid #f5b8c0;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.bico i { font-size: 10px; color: #c0001a; }

.mfoot {
    flex-shrink: 0;
}
.mfoot-col {
    padding: 12px 10px;
    border-right: 0.5px solid rgba(0,0,0,.08);
    display: flex; justify-content: center;
}
.mfoot-col:last-child { border-right: none; }

.btn-apply {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: 5px;
    padding: 8px 0;
    width: 100%;
    border-radius: 999px;
    border: none;
    background: #c0001a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, transform .1s;
    font-family: inherit;
    text-decoration: none;
}
.btn-apply:hover { background: #9e0016; color: #fff; }
.btn-apply:active { transform: scale(.97); }



@media(max-width:900px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:580px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .cpanel-inner {
        padding: 14px 16px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .cp-slot {
        width: 130px;
    }

    .cp-right {
        align-items: flex-start;
    }
}
