/* 
 * Single Offer styles
 */

.breadcrumb { background: #fff; border-bottom: 1px solid var(--border); padding: 10px 32px; }
.bc-in { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }
.bc-link { color: var(--mint); cursor: pointer; transition: .15s; }
.bc-link:hover { text-decoration: underline; color: var(--mint-d); }

.offer-body { max-width: 1240px; margin: 0 auto; padding: 32px; display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }

/* ── Hero Card ── */
.offer-hero-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 32px 0 32px;
    margin-bottom: 24px;
    overflow: hidden;
}
.offer-hdr {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 28px;
}
.offer-logo { width: 84px; height: 84px; border-radius: 16px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 800; color: #fff; flex-shrink: 0; }
.offer-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px;}
.offer-hdr-info { flex: 1; }
.offer-verified { display: flex; align-items: center; gap: 6px; color: var(--mint); font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.offer-title { font-size: 28px; font-weight: 800; color: var(--text); line-height: 1.25; margin-bottom: 10px; }
.offer-desc { font-size: 14.5px; color: var(--text2); line-height: 1.65; margin-bottom: 14px; }
.offer-meta-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.offer-meta-item {
    display: flex; align-items: center; gap: 12px;
    background: #fff; border: 1px solid var(--border);
    border-radius: 12px; padding: 12px 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.omi-icon-wrap {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.omi-svg { width: 16px; height: 16px; }
.omi-mint { background: rgba(0, 201, 167, 0.12); color: var(--mint-d); }
.omi-orange { background: rgba(249, 115, 22, 0.12); color: #f97316; }
.omi-purple { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; }
.omi-blue { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.omi-key { font-size: 11.5px; color: var(--muted); display: block; margin-bottom: 2px; }
.omi-val { font-size: 14px; font-weight: 700; color: var(--text); display: block; line-height: 1.2; }

.offer-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 22px; margin-bottom: 16px; }
.oc-title { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.qf-list { display: flex; flex-direction: column; }
.qf-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); }
.qf-row:last-child { border-bottom: none; padding-bottom: 0; }
.qf-row:first-child { padding-top: 0; }
.qf-key { font-size: 13px; font-weight: 500; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.qf-key svg { width: 16px; height: 16px; color: #94A3B8; }
.qf-val { font-size: 13.5px; font-weight: 600; color: var(--text); text-align: right; }
.qf-val.green { color: var(--mint); }
.qf-val.blue { color: var(--blue); }

.redeem-ol { list-style: none; counter-reset: r; padding-left: 0; }
.redeem-li { counter-increment: r; display: flex; gap: 12px; margin-bottom: 14px; }
.redeem-li::before { content: counter(r); min-width: 24px; height: 24px; border-radius: 50%; background: var(--mint); color: var(--navy); font-size: 12.5px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.redeem-li p { font-size: 14.5px; color: var(--text2); line-height: 1.6; }

.check-list { list-style: none; padding-left: 0; }
.check-list li { display: flex; gap: 10px; margin-bottom: 8px; font-size: 13.5px; color: var(--text2); line-height: 1.5; }
.check-list li::before { content: '✓'; color: var(--mint-d); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

.three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tg-head { font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.tg-head.green { color: var(--green); }
.tg-head.red { color: var(--red); }
.tg-head.muted { color: var(--muted); }
.bullet-list { list-style: none; padding-left: 0; }
.bullet-list li { display: flex; gap: 8px; margin-bottom: 8px; font-size: 14px; color: var(--text2); }
.bullet-list li::before { content: '•'; flex-shrink: 0; color: var(--text2); }
.pros-list li::before { content: '✓'; color: var(--green); font-weight: 800; }
.cons-list li::before { content: '✗'; color: var(--red); }

.fine-list { list-style: none; padding-left: 0; }
.fine-list li { display: flex; gap: 10px; margin-bottom: 8px; font-size: 14px; color: var(--text2); }
.fine-list li::before { content: '•'; color: var(--muted); }

.sim-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.sim-card { border: 1px solid var(--border); border-radius: 12px; padding: 14px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: .15s; }
.sim-card:hover { border-color: var(--mint); }
.sim-logo { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0; background: var(--navy); }
.sim-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.sim-info { flex: 1; min-width: 0; }
.sim-name { font-size: 14px; font-weight: 700; color: var(--text); }
.sim-disc { font-size: 12.5px; color: var(--mint-d); font-weight: 600; }
.sim-type { font-size: 11.5px; color: var(--muted); }
.sim-rat { font-size: 12px; color: #F59E0B; }
.sim-arr { color: var(--muted); font-size: 16px; flex-shrink: 0; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border: none; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--text); }
.faq-q::after { content: '⌄'; font-size: 15px; color: var(--muted); flex-shrink: 0; transition: transform 0.2s; }
.faq-q.active::after { transform: rotate(180deg); }
.faq-a { display: none; font-size: 14.5px; color: var(--text2); padding-bottom: 16px; line-height: 1.65; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }

.reports-row { display: grid; grid-template-columns: 120px 1fr 240px; gap: 24px; align-items: start; }
.donut-wrap { text-align: center; }
.donut-score { font-size: 24px; font-weight: 800; color: var(--text); }
.donut-sub { font-size: 12px; color: var(--muted); }
.report-q { font-size: 13.5px; color: var(--text2); margin-bottom: 10px; padding: 10px 14px; background: #F8FAFC; border-radius: 8px; border-left: 4px solid var(--mint); }
.rr-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 13px; }
.rr-code { font-family: monospace; font-weight: 700; color: var(--text); font-size: 14px; }
.rr-w { color: var(--green); font-weight: 700; }
.rr-f { color: var(--red); font-weight: 700; }
.rr-t { color: var(--muted); margin-left: auto; }

.found-cta { background: var(--navy); border-radius: var(--r); padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.fct-left { display: flex; align-items: center; gap: 14px; }
.fct-icon { font-size: 26px; }
.fct-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.fct-sub { font-size: 13px; color: rgba(255,255,255,.45); }
.fct-btn { background: var(--mint); color: var(--navy); font-weight: 800; padding: 10px 20px; border-radius: 8px; transition: .15s; }
.fct-btn:hover { background: var(--mint-d); }

/* Sidebar coupon card */
.offer-sidebar { }

/* ── Sidebar coupon card (redesigned to match mockup) ── */
.csb { background: var(--navy-dark); border-radius: 16px; padding: 20px; margin-bottom: 14px; }

/* Dual badge row */
.csb-badges { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.csb-badge-active {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11.5px; font-weight: 700;
    background: rgba(0,201,167,.15); color: var(--mint);
    border: 1px solid rgba(0,201,167,.25);
    border-radius: 99px; padding: 4px 10px;
}
.csb-badge-verified {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11.5px; font-weight: 700;
    background: rgba(34,197,94,.15); color: #4ade80;
    border: 1px solid rgba(34,197,94,.25);
    border-radius: 99px; padding: 4px 10px;
}
.csb-badge-unverified {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11.5px; font-weight: 700;
    background: rgba(245,158,11,.15); color: #fbbf24;
    border: 1px solid rgba(245,158,11,.25);
    border-radius: 99px; padding: 4px 10px;
}

/* Product + price */
.csb-product-name { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.csb-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 18px; }
.csb-price-big { font-size: 36px; font-weight: 800; color: var(--mint); line-height: 1; }
.csb-price-period { font-size: 14px; color: rgba(255,255,255,.45); font-weight: 400; }

/* Deal panel */
.csb-deal-panel { }
.csb-code-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.35); margin-bottom: 8px; }
.csb-code-box {
    border: 2px dashed rgba(0,201,167,.3);
    border-radius: 10px; padding: 13px 16px;
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px; background: rgba(0,201,167,.04);
}
.csb-lock-icon { font-size: 16px; color: rgba(255,255,255,.4); flex-shrink: 0; }
.csb-code-label-txt { font-size: 13px; color: rgba(255,255,255,.4); flex: 1; }
.csb-code-val { font-family: monospace; font-size: 18px; font-weight: 800; color: var(--mint); letter-spacing: 3px; }

/* Full-width reveal button */
.csb-reveal-btn {
    display: block; width: 100%; text-align: center;
    background: var(--mint); color: var(--navy);
    border: none; border-radius: 10px; padding: 14px;
    font-size: 15px; font-weight: 800; cursor: pointer;
    font-family: inherit; margin-bottom: 12px; transition: background .15s;
}
.csb-reveal-btn:hover { background: #00b096; }

.csb-or { display: flex; align-items: center; gap: 10px; margin: 4px 0 12px; }
.csb-or::before, .csb-or::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.1); }
.csb-or span { font-size: 12px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .05em; }

.csb-nocode-note { font-size: 13px; color: rgba(255,255,255,.4); text-align: center; margin-bottom: 14px; }

/* CTA button */
.csb-cta {
    display: block; text-align: center; width: 100%;
    background: var(--gold); color: #1a1000;
    padding: 15px; border-radius: 10px;
    font-size: 15px; font-weight: 800;
    text-decoration: none; transition: background .15s; margin-bottom: 12px;
}
.csb-cta:hover { background: #E6B94A; color: #1a1000; }
.csb-cta--expired { opacity: .5; cursor: default; pointer-events: none; background: var(--muted); color: #fff; }
.dealonai-open-deal-after-reveal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    color: var(--mint-d);
    font-size: 12.5px;
    font-weight: 800;
    text-decoration: none;
}

.csb-checked { font-size: 12px; color: rgba(255,255,255,.3); text-align: center; margin-bottom: 14px; }
.csb-vote-lbl { font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.4); text-align: center; margin-bottom: 8px; }
.csb-votes { display: flex; gap: 8px; }
.csb-vbtn { flex: 1; padding: 9px 6px; border-radius: 8px; border: none; cursor: pointer; font-size: 12.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 5px; transition: .15s; font-family: inherit; }
.cvb-w { background: rgba(34,197,94,.2); color: #4ade80; border: 1px solid rgba(34,197,94,.3); }
.cvb-w:hover { background: rgba(34,197,94,.35); }
.cvb-f { background: rgba(239,68,68,.2); color: #f87171; border: 1px solid rgba(239,68,68,.3); }
.cvb-f:hover { background: rgba(239,68,68,.35); }

.success-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px; margin-bottom: 14px; }
.sc-heading { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.sc-heading .sc-icon { font-size: 18px; }
.sc-donut-row { display: flex; align-items: center; gap: 18px; margin-bottom: 12px; }
.sc-donut {
    width: 80px; height: 80px; border-radius: 50%;
    background: conic-gradient(var(--mint) var(--pct, 96%), #E5EEF2 0);
    display: grid; place-items: center; flex-shrink: 0;
}
.sc-donut-inner {
    width: 58px; height: 58px; border-radius: 50%;
    background: #fff; display: grid; place-items: center;
    font-size: 18px; font-weight: 800; color: var(--mint-d);
}
.sc-donut-info { flex: 1; }
.sc-donut-count { font-size: 24px; font-weight: 800; color: var(--mint-d); line-height: 1.2; }
.sc-donut-desc { font-size: 13px; color: var(--text2); line-height: 1.4; }
.sc-period { font-size: 12px; color: var(--muted); text-align: center; }
/* Legacy bar kept for backwards compat but hidden */
.sc-row, .sc-bar, .sc-fill, .sc-stats, .sc-stat-v, .sc-stat-l, .sc-lbl, .sc-rate { }
.sc-bar { height: 10px; background: #F1F5F9; border-radius: 5px; overflow: hidden; margin-bottom: 16px; display: none; }
.sc-fill { height: 100%; background: var(--mint); border-radius: 5px; }

.trust-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 18px; margin-bottom: 14px; }
.tc-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.tc-item:last-child { border: none; padding-bottom: 0; }
.tc-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; color: var(--mint-d); }
.tc-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.tc-sub { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ── High-fidelity single offer refresh ── */
.breadcrumb {
    background: transparent;
    border-bottom: none;
    padding: 12px 32px 0;
}
.bc-in {
    font-size: 12px;
}
.offer-body {
    max-width: 1280px;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    padding: 24px 28px 42px;
}
.offer-main {
    min-width: 0;
}

.offer-card {
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}
.oc-title {
    font-size: 17.5px;
    margin-bottom: 16px;
    padding-bottom: 14px;
}
.qf-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 30px;
}
.qf-key {
    font-size: 12px;
}
.qf-val {
    font-size: 17px;
}
.redeem-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 28px;
    align-items: center;
}
.redeem-li {
    margin-bottom: 11px;
}
.redeem-li p {
    margin: 0;
    font-size: 14px;
}
.checkout-preview {
    display: flex;
    justify-content: center;
}
.checkout-window {
    width: 240px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    background: #f8fafc;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.window-dots {
    display: flex;
    gap: 5px;
    margin-bottom: 14px;
}
.window-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
}
.window-dots span:nth-child(2) { background: #f59e0b; }
.window-dots span:nth-child(3) { background: #22c55e; }
.checkout-window strong,
.checkout-window label {
    display: block;
}
.checkout-window strong {
    color: var(--text);
    font-size: 13px;
    margin-bottom: 10px;
}
.checkout-window label {
    color: var(--muted);
    font-size: 11px;
    margin-bottom: 6px;
}
.checkout-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 8px;
    font-size: 11px;
    color: var(--muted);
}
.checkout-input b {
    background: var(--mint);
    color: var(--navy);
    border-radius: 5px;
    padding: 5px 8px;
}
.checkout-total {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    font-size: 12px;
}
.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 34px;
}
.include-item {
    display: flex;
    gap: 10px;
    color: var(--text2);
    font-size: 14px;
}
.include-item::before {
    content: '✓';
    color: var(--mint-d);
    font-weight: 900;
}
.info-grid,
.lower-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.mini-card {
    margin-bottom: 0;
}
.mini-card p {
    color: var(--text2);
    line-height: 1.65;
    margin: 0;
}
.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-list li {
    margin-bottom: 12px;
}
.pricing-list li:last-child {
    margin-bottom: 0;
}
.pl-featured {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px !important;
}
.pl-icon {
    width: 24px;
    height: 24px;
    color: var(--mint-d);
    flex-shrink: 0;
    opacity: 0.8;
}
.pl-icon svg {
    width: 100%;
    height: 100%;
}
.pl-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pl-title {
    font-size: 12.5px;
    color: var(--text2);
    line-height: 1.2;
}
.pl-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--mint-d);
    line-height: 1.2;
}
.pl-standard {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.5;
}
.pl-check {
    width: 14px;
    height: 14px;
    color: var(--mint-d);
    flex-shrink: 0;
    margin-top: 3px;
}

.dot-list,
.mini-check-list,
.activity-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text2);
    line-height: 1.7;
    font-size: 14px;
}
.dot-list strong {
    color: var(--text);
}
.mini-check-list {
    list-style: none;
    padding-left: 0;
}
.mini-check-list li {
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
}
.mini-check-list li::before {
    font-weight: 900;
}
.mini-check-list .is-pro::before {
    content: '✓';
    color: var(--green);
}
.mini-check-list .is-con::before {
    content: '✕';
    color: var(--red);
}
.verdict-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 28px;
    align-items: center;
}
.verdict-card p {
    color: var(--text2);
    line-height: 1.65;
    margin: 0;
}
.verdict-score {
    border-left: 1px solid var(--border);
    padding-left: 24px;
}
.verdict-score span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}
.verdict-score strong {
    display: block;
    color: var(--text);
    font-size: 24px;
    font-weight: 800;
}
.creator-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
}
.creator-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: #020617;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 900;
}
.creator-card h2 {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 24px;
}
.creator-card p {
    color: var(--text2);
    margin: 8px 0 0;
    line-height: 1.5;
}
.creator-badge {
    color: var(--mint-d);
    font-size: 12px;
    font-weight: 700;
}
.creator-stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 22px;
}
.creator-stats strong,
.creator-stats span {
    display: block;
}
.creator-stats strong {
    color: var(--text);
}
.creator-stats span {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}
.trust-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 12px;
}
.trust-mini-grid strong {
    display: block;
    color: var(--text);
    font-size: 24px;
}
.trust-mini-grid span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}
.report-summary {
    display: flex;
    gap: 18px;
    align-items: center;
}
.report-ring {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: conic-gradient(var(--mint) var(--p), #f1f5f9 0);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.report-ring span {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--text);
}
.report-summary ul {
    margin: 0;
    padding-left: 16px;
    color: var(--text2);
    font-size: 13px;
}
.related-section .sh {
    margin-bottom: 12px;
}
.reports-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.reports-columns strong {
    color: var(--text);
    display: block;
    margin-bottom: 8px;
}
.reports-columns p {
    color: var(--text2);
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}
.muted-text {
    color: var(--muted);
}
.mobile-coupon-card {
    display: none;
}
.mobile-success-card,
.mobile-feature-trust-card,
.mobile-offer-snapshot-card {
    display: none;
}
.offer-sidebar {
    top: 96px;
}
body.admin-bar .offer-sidebar {
    top: 128px;
}
.csb {
    border-radius: 20px;
    padding: 28px;
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 201, 167, 0.11), transparent 30%),
        linear-gradient(145deg, #071827 0%, #0a1726 100%);
    box-shadow: 0 24px 60px rgba(7, 24, 39, 0.14);
}
.csb-discount {
    font-size: clamp(54px, 6vw, 74px);
    letter-spacing: 0;
}
.csb-code-box {
    border-radius: 16px;
    padding: 18px 20px;
}
.csb-code-val {
    font-size: 30px;
}
.csb-cta {
    display: block;
    text-align: center;
    text-decoration: none;
}
.help-link {
    display: block;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    color: var(--text);
    font-weight: 700;
    margin-top: 10px;
}

/* Laptop proportion pass: closer to the original single-offer mockup. */
.section-svg,
.sh-title .section-svg {
    width: 18px;
    height: 18px;
    color: #64748b;
}
.section-svg.gold {
    color: #f59e0b;
}
.section-svg.mint {
    color: var(--mint);
}
.oc-title .section-svg,
.sh-title .section-svg {
    margin-right: 2px;
}
.omi-svg {
    width: 18px;
    height: 18px;
    color: #64748b;
    margin-top: 2px;
}
.trust-svg {
    grid-row: span 2;
    width: 22px;
    height: 22px;
    color: var(--mint-d);
}
.fact-svg {
    width: 15px;
    height: 15px;
    color: #64748b;
}
.side-svg {
    width: 20px;
    height: 20px;
    color: var(--mint-d);
}
.cta-svg {
    width: 28px;
    height: 28px;
    color: var(--mint);
}
.breadcrumb {
    padding: 10px 24px;
}
.offer-body {
    max-width: 1220px;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    padding: 24px 28px 40px;
}
.offer-hdr {
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 22px;
}
.offer-logo {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    margin-top: 4px;
    font-size: 0;
    position: relative;
    overflow: hidden;
}
.offer-logo img {
    border-radius: 16px;
}
.offer-logo-mark {
    position: relative;
    width: 54px;
    height: 54px;
    display: block;
}
.offer-logo-mark-a,
.offer-logo-mark-b {
    position: absolute;
    display: block;
    border-radius: 9px;
    transform-origin: center;
}
.offer-logo-mark-a {
    width: 18px;
    height: 56px;
    left: 17px;
    top: -2px;
    transform: rotate(32deg);
    background: linear-gradient(180deg, #fbf5ff 0%, #d6b4ff 52%, #a47cff 100%);
}
.offer-logo-mark-b {
    width: 18px;
    height: 40px;
    right: 7px;
    bottom: 2px;
    transform: rotate(-45deg);
    background: #fff;
}
.offer-logo-name {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
    letter-spacing: 0.02em;
}
.offer-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 8px;
    max-width: 680px;
}
.offer-desc {
    max-width: 680px;
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 16px;
}
.offer-meta-row {
    gap: 16px;
}
.offer-meta-item {
    min-width: 90px;
}
.omi-key {
    font-size: 11px;
}
.omi-val {
    font-size: 13px;
}
.trust-strip {
    margin-bottom: 16px;
    border-radius: 12px;
}
.trust-strip-item {
    padding: 14px 18px;
    grid-template-columns: 30px minmax(0, 1fr);
}
.trust-strip-item > span:not(.dealonai-icon) {
    font-size: 20px;
}
.trust-strip-item strong {
    font-size: 13.5px;
}
.trust-strip-item small {
    font-size: 11.5px;
}
.offer-card {
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 16px;
}
.oc-title {
    font-size: 17px;
    margin-bottom: 16px;
    padding-bottom: 14px;
}
.qf-grid {
    gap: 16px 22px;
}
.qf-key {
    font-size: 10.5px;
    margin-bottom: 5px;
}
.qf-val {
    font-size: 13.5px;
}
.redeem-card {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 22px;
}
.redeem-li {
    margin-bottom: 8px;
    gap: 10px;
}
.redeem-li::before {
    min-width: 20px;
    height: 20px;
    font-size: 11px;
}
.redeem-li p,
.include-item,
.dot-list,
.mini-check-list,
.activity-list {
    font-size: 13px;
    line-height: 1.55;
}
.checkout-window {
    width: 220px;
    padding: 14px;
}
.includes-grid {
    gap: 10px 28px;
}
.info-grid,
.lower-grid {
    gap: 12px;
    align-items: start;
}
.mini-card {
    padding: 18px;
}
.mini-card p {
    font-size: 13.5px;
    line-height: 1.55;
}
.verdict-card {
    grid-template-columns: minmax(0, 1fr) 160px;
}
.creator-card {
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 14px;
    grid-template-columns: 68px minmax(0, 1fr) auto;
    gap: 18px;
}
.creator-logo {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    font-size: 28px;
}
.creator-card h2 {
    font-size: 20px;
}
.creator-card p {
    font-size: 13px;
}
.creator-stats {
    gap: 16px;
}
.sim-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.sim-card {
    border-radius: 10px;
    padding: 10px;
    gap: 9px;
}
.sim-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
}
.sim-name {
    font-size: 12.5px;
}
.sim-disc {
    font-size: 11.5px;
}
.reports-columns {
    gap: 18px;
}
.found-cta {
    border-radius: 12px;
    padding: 18px 22px;
}
.offer-sidebar {
    top: 88px;
}
body.admin-bar .offer-sidebar {
    top: 120px;
}
.csb {
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 12px;
}
.csb-top {
    margin-bottom: 18px;
}
.csb-active-lbl {
    font-size: 13px;
}
.csb-vbadge {
    font-size: 12px;
    border-radius: 10px;
    padding: 6px 11px;
}
.csb-type-label {
    font-size: 11.5px;
    margin-bottom: 8px;
}
.csb-discount {
    font-size: clamp(48px, 4.5vw, 60px);
    margin-bottom: 8px;
}
.csb-on {
    font-size: 13.5px;
    margin-bottom: 18px;
}
.csb-deal-panel {
    border: 2px dashed rgba(0,201,167,.32);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 14px;
}
.csb-code-lbl {
    font-size: 10.5px;
    margin-bottom: 8px;
    color: rgba(255,255,255,.7);
}
.csb-code-box {
    border: 1px dashed rgba(255,255,255,.24);
    border-radius: 10px;
    padding: 10px 10px 10px 14px;
    margin-bottom: 8px;
}
.csb-code-val {
    font-size: 22px;
    letter-spacing: 2.5px;
}
.csb-cpbtn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.csb-cpbtn.dealonai-reveal-code {
    width: auto;
    min-width: 68px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}
.is-revealed-code .csb-cpbtn.dealonai-reveal-code {
    min-width: 54px;
}
.csb-apply {
    font-size: 11.5px;
    margin-bottom: 12px;
}
.csb-or {
    margin: 10px 0;
}
.csb-nocode {
    background: transparent;
    border: 0;
    padding: 0;
    margin-bottom: 14px;
}
.csb-nc-lbl {
    color: rgba(255,255,255,.75);
    letter-spacing: 1.5px;
}
.csb-nc-sub {
    font-size: 11.5px;
}
.csb-cta {
    padding: 13px 14px;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 0;
}
.csb-checked {
    font-size: 12px;
    margin-bottom: 13px;
}
.csb-vote-lbl {
    font-size: 12.5px;
}
.csb-vbtn {
    padding: 9px 8px;
    font-size: 12.5px;
}
.success-card,
.trust-card {
    border-radius: 12px;
    padding: 16px;
}
.tc-item {
    padding: 9px 0;
}
.tc-title {
    font-size: 13px;
}
.tc-sub {
    font-size: 12px;
}

/* ══════════════════════════════════════════════════════════════════════════
   PASS 3 — ToolSuite mockup redesign additions
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Verified badge in hero ── */
.offer-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
    margin-bottom: 8px;
}
.offer-verified-badge .vbadge-svg { width: 13px; height: 13px; }
.vbadge--verified { background: rgba(34,197,94,.12); color: #16a34a; border: 1px solid rgba(34,197,94,.3); }
.vbadge--recent   { background: rgba(0,201,167,.12);  color: var(--mint);  border: 1px solid rgba(0,201,167,.3); }
.vbadge--unverified { background: rgba(245,158,11,.12); color: #b45309; border: 1px solid rgba(245,158,11,.3); }

/* ── Star rating ── */
.star-rating { display: inline-flex; gap: 1px; font-size: 15px; line-height: 1; }
.star-rating .star.full  { color: #FFD166; }
.star-rating .star.half  { color: #FFD166; opacity: .55; }
.star-rating .star.empty { color: #CBD5E1; }
.offer-rating-row { display: flex; align-items: center; gap: 8px; margin: 4px 0 8px; flex-wrap: wrap; }
.offer-rating-val { font-size: 14px; font-weight: 700; color: var(--text); }
.offer-rating-count { font-size: 13px; color: var(--muted); }

/* ── Trust chips (inline, below meta row in hero) ── */
.offer-trust-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 -32px;
    background: #F8FAFC;
    border-top: 1px solid var(--border);
}
.trust-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-right: 1px solid var(--border);
}
.trust-chip:last-child { border-right: none; }
.chip-icon-wrap {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.trust-chip .chip-svg { width: 18px; height: 18px; }
.trust-chip-text { display: flex; flex-direction: column; gap: 2px; }
.trust-chip-title { font-size: 14px; font-weight: 800; color: var(--text); line-height: 1.2; }
.trust-chip-sub { font-size: 12.5px; font-weight: 400; color: var(--muted); line-height: 1.2; }

/* ── Offer Overview card ── */
.offer-overview-card { margin-bottom: 16px; }
.ov-para { color: var(--text2); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.ov-mini-blocks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ov-block { background: transparent; border-radius: 0; padding: 0 24px; border-right: 1px solid var(--border); }
.ov-block:first-child { padding-left: 0; }
.ov-block:last-child { padding-right: 0; border-right: none; }
.ov-block-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.ov-block-icon svg { width: 22px; height: 22px; }
.ovb-mint { background: rgba(0, 201, 167, 0.12); color: var(--mint-d); }
.ovb-blue { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.ovb-orange { background: rgba(249, 115, 22, 0.12); color: #f97316; }
.ovb-purple { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; }
.ov-block-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 8px;
}
.ov-block-text { font-size: 13.5px; color: var(--text2); line-height: 1.5; font-weight: 400; }

/* ── Deals section: badge + table ── */
.deals-count-badge {
    background: rgba(0,201,167,.12);
    color: var(--mint);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 10px;
    margin-left: 8px;
    vertical-align: middle;
}
.deals-table-wrap { overflow-x: auto; margin-bottom: 10px; }
.deals-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.deals-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--muted);
    border: 1px solid var(--border);
    white-space: nowrap;
    background: #F8FAFC;
}
.deals-table th:nth-child(1), .deals-table td:nth-child(1), /* Status */
.deals-table th:nth-child(4), .deals-table td:nth-child(4), /* Action */
.deals-table th:nth-child(5), .deals-table td:nth-child(5)  /* CTA */ {
    width: 1px;
    white-space: nowrap;
}
.deals-table th:nth-child(3), .deals-table td:nth-child(3) /* Code */ {
    width: 1px;
    min-width: 125px; /* Enough for "Hidden until reveal" to wrap nicely */
}
.deals-table th:nth-child(2), .deals-table td:nth-child(2) /* Deal / Plan */ {
    width: 100%;
}
.deals-table td {
    padding: 12px 16px;
    border: 1px solid var(--border);
    vertical-align: middle;
}
.deals-table tbody tr:hover td { background: #FAFCFF; }
.dt-row--expired td { opacity: .6; }

.dt-status-badge {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 99px;
    white-space: nowrap;
}
.dt-status-badge.verified         { background: #ECFDF5; color: #059669; }
.dt-status-badge.recently_checked { background: #ECFEFF; color: #0891B2; }
.dt-status-badge.creator_submitted { background: #FFF7ED; color: #C2410C; }
.dt-status-badge.user_submitted   { background: rgba(99,102,241,.1); color: #4f46e5; }
.dt-status-badge.unverified       { background: rgba(148,163,184,.12); color: #64748B; }
.dt-status-badge.expired          { background: rgba(239,68,68,.1); color: var(--red); }

.dt-plan-name { font-weight: 600; color: var(--text); }
.dt-plan-sub  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.dt-hidden    { display: flex; align-items: flex-start; gap: 6px; color: var(--muted); font-size: 12px; line-height: 1.3; }
.dt-revealed-code {
    display: inline-block;
    font-family: monospace;
    font-weight: 800;
    font-size: 14px;
    background: #E0F2FE;
    color: #0284C7;
    padding: 4px 8px;
    border-radius: 4px;
}
.dt-lock-icon { font-size: 13px; display: flex; align-items: center; margin-top: 1px; }
.dt-lock-icon svg { width: 13px; height: 13px; }
.dt-nocode    { color: var(--muted); font-size: 12px; font-style: italic; line-height: 1.3; }

.dt-reveal-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #E8FDF8;
    border: 1px solid var(--mint);
    color: var(--mint);
    border-radius: 7px;
    padding: 6px 12px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background .15s;
}
.dt-reveal-btn .btn-lock {
    display: flex;
    align-items: center;
    color: #F59E0B; /* Orange-yellow lock */
}
.dt-reveal-btn .btn-lock svg {
    width: 14px;
    height: 14px;
}
.dt-reveal-btn:hover { background: rgba(0,201,167,.18); }

.dt-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--mint);
    color: #fff;
    border-radius: 7px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s;
}
.dt-cta .btn-arrow {
    display: flex;
    align-items: center;
}
.dt-cta .btn-arrow svg {
    width: 14px;
    height: 14px;
}
.dt-cta:hover { background: #00b096; color: #fff; }
.dt-last-checked { font-size: 12px; color: var(--muted); white-space: nowrap; }
.deals-microcopy { font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ── Support 3-col row ── */
.support-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.support-row .offer-card { margin-bottom: 0; }
.support-row .redeem-card { grid-template-columns: 1fr; }
.support-row .qf-grid { grid-template-columns: repeat(2, 1fr); gap: 14px 12px; }

/* ── Best Plan card ── */
.best-plan-card { }
.bp-tabs {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 14px;
}
.bp-tab {
    flex: 1;
    padding: 8px 6px;
    text-align: center;
    font-size: 12.5px;
    font-weight: 600;
    cursor: default;
    background: #F8FAFC;
    color: var(--muted);
}
.bp-tab.active { background: var(--navy); color: #fff; }
.bp-popular {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: var(--mint);
    margin-top: 1px;
}
.bp-plan-name { font-size: 13.5px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.bp-price { font-size: 22px; font-weight: 800; color: var(--mint); margin-bottom: 12px; line-height: 1.2; }
.bp-price span { font-size: 13px; font-weight: 400; color: var(--muted); }
.bp-features { list-style: none; padding: 0; margin: 0 0 14px; font-size: 13px; color: var(--text2); }
.bp-features li { padding: 4px 0; }
.bp-features li::before { content: "✓ "; color: #22C55E; font-weight: 700; }
.bp-checkout-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: var(--mint);
    color: #fff;
    border-radius: 8px;
    padding: 11px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background .15s;
}
.bp-checkout-btn .btn-lock, .bp-checkout-btn .btn-arrow { display: flex; align-items: center; }
.bp-checkout-btn .btn-lock svg, .bp-checkout-btn .btn-arrow svg { width: 14px; height: 14px; }
.bp-checkout-btn:hover { background: #00b096; color: #fff; }
.bp-secure-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11.5px; color: var(--muted); margin-top: 8px; }
.bp-secure-note svg { width: 12px; height: 12px; color: #F59E0B; }
.bp-due-today {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 12px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text2);
}
.bp-due-price { font-weight: 800; color: var(--text); font-size: 14px; }

/* ── Feature row — 3 cols (What You Get, Pricing, Who For) ── */
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.feature-row .offer-card { margin-bottom: 0; }

/* ── Pros / Refund 2-col row ── */
.twocard-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.twocard-row .offer-card { margin-bottom: 0; }
.pros-cons-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pc-head { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 4px 0 8px; }
.pc-head--pro { color: #15803d; }
.pc-head--con { color: var(--red); }
.fine-print-link { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--mint); margin-top: 12px; text-decoration: none; }
.fine-print-link:hover { text-decoration: underline; }

/* ── Trust 4-card row ── */
.trust5-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.t5-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
}
.t5-card-title {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
}
.t5-card.t5-center .t5-card-title {
    justify-content: center;
}
.t5-card-title .t5-svg { width: 16px; height: 16px; color: var(--mint); flex-shrink: 0; margin-top: 2px; }
.t5-card-title small { font-size: 11px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.t5-text { font-size: 13px; color: var(--text2); line-height: 1.5; margin: 12px 0; }
.t5-card.t5-center .t5-text { text-align: center; }
.t5-label { font-size: 12px; color: var(--muted); margin-top: auto; padding-top: 12px; }
.t5-card.t5-center .t5-label { text-align: center; }
.t5-link { margin-top: auto; padding-top: 16px; }
.t5-card.t5-center .t5-link { text-align: center; }
.t5-link a { font-size: 13px; font-weight: 700; color: var(--blue); text-decoration: none; transition: .15s; }
.t5-link a:hover { text-decoration: underline; color: var(--navy); }
.verdict-score-sm {
    margin: 8px 0;
    display: flex;
    justify-content: center;
}
.report-ring.score-ring span {
    color: var(--mint);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 24px;
}
.report-ring.score-ring small {
    color: var(--muted);
    font-size: 14px;
}
.vs-ring {
    background: var(--navy);
    color: var(--mint);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    flex-direction: column;
    line-height: 1;
}
.vs-ring small { font-size: 12px; color: var(--mint); opacity: 0.8; margin-top: 2px; }
.t5-creator { display: flex; align-items: center; gap: 12px; margin: 4px 0 12px; }
.t5-creator-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--mint);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 800; flex-shrink: 0;
}
.t5-creator-name { font-size: 15px; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 2px; }
.t5-creator-role { font-size: 12px; color: var(--muted); }
.t5-rating-big { font-size: 32px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.t5-stars { margin-bottom: 12px; }
.t5-activity { list-style: none; padding: 0; margin: 0; }
.t5-activity li { 
    font-size: 13px; 
    color: var(--text2); 
    padding: 8px 0; 
    border-bottom: 1px solid #F1F5F9; 
    display: flex; 
    align-items: flex-start;
    gap: 8px;
}
.t5-activity li:last-child { border-bottom: none; }
.act-icon .t5-svg { width: 14px; height: 14px; }
.act-content { display: flex; flex-direction: column; gap: 2px; }

.t5-card .report-ring { margin: 12px auto; }
.report-ring.multi-ring { width: 80px; height: 80px; }
.report-ring.multi-ring::before { inset: 12px; }

.t5-report-list { list-style: none; padding: 0; margin: 16px 0 16px; }
.t5-report-list li { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text2); padding: 4px 0; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--green { background: #22C55E; }
.dot--yellow { background: #F59E0B; }
.dot--red { background: var(--red); }

/* ── User Reviews section ── */
.ur-header { display: flex; gap: 40px; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; }
.ur-score-block { text-align: center; min-width: 80px; display: flex; flex-direction: column; align-items: center; }
.ur-score { font-size: 56px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; display: flex; align-items: baseline; justify-content: center; }
.ur-stars { margin: 4px 0; }
.ur-count { font-size: 12px; color: var(--muted); }
.ur-tags-block { flex: 1; }
.ur-tags-label { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.feedback-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.feedback-tag {
    background: #F1F5F9;
    border-radius: 99px;
    padding: 5px 12px;
    font-size: 12.5px;
    color: var(--text2);
    display: flex; align-items: center; gap: 6px;
}
.feedback-tag-pct { font-weight: 700; color: var(--text); }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0 8px; }
.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.review-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--mint);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800; flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 700; color: var(--text); }
.review-badge { font-size: 11px; color: #15803d; }
.review-date { font-size: 11px; color: var(--muted); margin-left: auto; white-space: nowrap; }
.review-stars { margin-bottom: 6px; font-size: 13px; }
.review-text { font-size: 13px; color: var(--text2); line-height: 1.55; margin: 0 0 8px; }
.review-plan-tag {
    display: inline-block;
    background: #E8FDF8;
    color: var(--mint);
    border-radius: 99px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 600;
}
.ur-view-all { display: inline-block; margin-top: 8px; font-size: 13.5px; color: var(--mint); text-decoration: none; }
.ur-view-all:hover { text-decoration: underline; }

/* ── Similar offers: category + rating added ── */
.sim-cat { font-size: 11.5px; color: var(--muted); margin: 1px 0; }
.sim-rating { font-size: 11.5px; color: var(--text2); margin: 2px 0; display: flex; align-items: center; gap: 4px; }
.sim-rating span { font-weight: 600; }

/* ── Sidebar: heading style ── */
.tc-heading { font-size: 13.5px; font-weight: 700; color: var(--text); margin: 0 0 10px; }

/* ── Sidebar: Offer Snapshot card ── */
.offer-snapshot-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px;
    margin-top: 12px;
}
.snap-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid #F1F5F9;
    font-size: 13px;
    gap: 8px;
}
.snap-row:last-of-type { border-bottom: none; }
.snap-key { color: var(--muted); white-space: nowrap; }
.snap-val { font-weight: 700; color: var(--text); text-align: right; font-size: 12.5px; }
.snap-val.mint { color: var(--mint); }
.snap-verified {
    margin-top: 10px;
    background: rgba(34,197,94,.1);
    color: #15803d;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 12.5px;
    font-weight: 700;
    text-align: center;
}

/* ── Sidebar: help card extras ── */
.help-text { font-size: 12.5px; color: var(--text2); margin: 0 0 10px; }
.help-link {
    display: block;
    text-align: center;
    background: #F1F5F9;
    color: var(--text);
    border-radius: 8px;
    padding: 9px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border);
    margin-bottom: 8px;
}
.help-link:hover { background: var(--border); }
.help-reply { font-size: 11.5px; color: var(--muted); text-align: center; }

/* ── Similar offers header row ── */
.sh { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.sh-title { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--text); margin: 0; }
.sh-link { font-size: 13px; color: var(--mint); text-decoration: none; }
.sh-link:hover { text-decoration: underline; }

/* ── Pros / Cons base styles (list-style reset) ── */
.pros-list,
.cons-list { list-style: none; padding-left: 0; margin: 0; }
.pros-list li,
.cons-list li { display: flex; gap: 9px; margin-bottom: 8px; font-size: 13.5px; color: var(--text2); line-height: 1.5; }

/* ── Dot list (feature row Pricing & Billing) ── */
.dot-list { padding-left: 0; list-style: none; margin: 0; }
.dot-list li { display: flex; gap: 8px; margin-bottom: 8px; font-size: 13.5px; color: var(--text2); line-height: 1.5; }
.dot-list li::before { content: '•'; color: var(--muted); flex-shrink: 0; }

@media (max-width: 1160px) {
    .offer-body {
        grid-template-columns: 1fr;
    }
    .offer-sidebar {
        display: none;
    }
    .mobile-coupon-card {
        display: block;
        margin-bottom: 18px;
    }
    .support-row { grid-template-columns: 1fr; }
    .feature-row { grid-template-columns: 1fr 1fr; }
    .twocard-row { grid-template-columns: 1fr; }
    .trust5-row  { grid-template-columns: repeat(3, 1fr); }
    .ov-mini-blocks { grid-template-columns: repeat(2, 1fr); }
    .review-cards { grid-template-columns: 1fr 1fr; }
    .offer-trust-chips { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1080px) {
    .offer-body { grid-template-columns: 1fr; }
    .offer-sidebar { display: none; }
    .mobile-coupon-card { display: block; margin-bottom: 20px; }
    .support-row { grid-template-columns: 1fr; }
    .feature-row { grid-template-columns: 1fr; }
    .trust5-row  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .offer-body {
        padding: 16px 14px 28px;
    }
    .offer-card {
        padding: 18px;
        border-radius: 14px;
    }
    .offer-hero-card {
        padding: 20px 18px 0;
        border-radius: 14px;
    }
    .offer-hdr { flex-direction: column; gap: 14px; }
    .offer-logo { width: 72px; height: 72px; border-radius: 12px; }
    .offer-title { font-size: 22px; }
    .offer-desc { font-size: 13.5px; }
    .creator-card,
    .verdict-card,
    .redeem-card {
        grid-template-columns: 1fr;
        display: grid;
    }
    .trust-strip,
    .qf-grid,
    .info-grid,
    .lower-grid,
    .reports-columns,
    .includes-grid,
    .support-row,
    .feature-row,
    .twocard-row,
    .trust5-row,
    .ov-mini-blocks,
    .review-cards,
    .offer-trust-chips,
    .offer-meta-row,
    .pros-cons-cols { grid-template-columns: 1fr; }
    .trust-chip { border-right: 0; border-bottom: 1px solid var(--border); }
    .trust-chip:last-child { border-bottom: 0; }
    .trust-strip-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }
    .trust-strip-item:last-child { border-bottom: 0; }
    .offer-trust-chips {
        margin: 0 -18px;
    }
    .trust-chip {
        padding: 14px 18px;
    }
    .ov-block {
        padding: 0 0 16px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }
    .ov-block:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }
    .csb {
        padding: 20px;
        border-radius: 16px;
    }
    .csb-badges {
        flex-wrap: wrap;
    }
    .csb-code-box {
        padding: 12px 14px;
        gap: 8px;
    }
    .csb-code-val {
        margin-left: auto;
        font-size: 20px;
        letter-spacing: 2px;
    }
    .csb-reveal-btn,
    .csb-cta,
    .csb-vbtn {
        min-height: 44px;
    }
    .csb-votes {
        flex-direction: column;
    }
    .mobile-success-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 14px 16px;
        margin: -6px 0 14px;
    }
    .mobile-success-main {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }
    .mobile-success-icon {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(0,201,167,.1);
        color: var(--mint-d);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .mobile-success-icon svg {
        width: 22px;
        height: 22px;
    }
    .mobile-success-title {
        font-size: 13.5px;
        font-weight: 800;
        color: var(--text);
        line-height: 1.25;
    }
    .mobile-success-sub {
        font-size: 11.5px;
        color: var(--muted);
        line-height: 1.35;
        margin-top: 2px;
    }
    .mobile-success-ring {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background:
            radial-gradient(circle at center, #fff 0 54%, transparent 56%),
            conic-gradient(var(--mint) var(--pct, 96%), #E5EEF2 0);
        color: var(--mint-d);
        display: grid;
        place-items: center;
        font-size: 12px;
        font-weight: 900;
        flex-shrink: 0;
        line-height: 1;
    }
    .creator-stats { grid-template-columns: 1fr; }
    .verdict-score {
        border-left: 0;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 18px;
    }
    .deal-row { flex-direction: column; gap: 12px; }
    .dr-right { width: 100%; }
    .dr-cta { width: 100%; text-align: center; }
    .faq-grid { grid-template-columns: 1fr; }
    .deals-count-badge {
        display: inline-flex;
        margin: 8px 0 0;
        width: fit-content;
    }
    .deals-table-wrap {
        overflow-x: visible;
    }
    .deals-table,
    .deals-table tbody,
    .deals-table tr,
    .deals-table td {
        display: block;
        width: 100%;
    }
    .deals-table thead {
        display: none;
    }
    .deals-table tr {
        border: 1px solid var(--border);
        border-radius: 12px;
        background: #fff;
        overflow: hidden;
        margin-bottom: 12px;
    }
    .deals-table td {
        display: grid;
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
        border: 0;
        border-bottom: 1px solid var(--border);
        padding: 12px 14px;
    }
    .deals-table td:nth-child(1),
    .deals-table td:nth-child(2),
    .deals-table td:nth-child(3),
    .deals-table td:nth-child(4),
    .deals-table td:nth-child(5) {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }
    .deals-table td:last-child {
        border-bottom: 0;
    }
    .deals-table td::before {
        color: var(--muted);
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .deals-table td:nth-child(1)::before { content: 'Status'; }
    .deals-table td:nth-child(2)::before { content: 'Deal'; }
    .deals-table td:nth-child(3)::before { content: 'Code'; }
    .deals-table td:nth-child(4)::before { content: 'Action'; }
    .deals-table td:nth-child(5)::before { content: 'Deal link'; }
    .deals-table tr[data-has-code="1"]:not(.is-revealed) td:nth-child(5) {
        display: none;
    }
    .dt-reveal-btn,
    .dt-cta,
    .dealonai-open-deal-after-reveal {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        text-align: center;
    }
    .dt-hidden {
        align-items: center;
    }
}

/* ── All Active Deals / Offers Overview ── */
.all-deals-section .oc-title { margin-bottom: 14px; }
.all-deals-list { display: flex; flex-direction: column; gap: 10px; }

.deal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.deal-row:hover { border-color: var(--mint); box-shadow: 0 4px 16px rgba(0,201,167,.08); }
.deal-row--expired { opacity: .6; }

.dr-left { display: flex; align-items: center; gap: 14px; }
.dr-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    white-space: nowrap;
}
.dr-badge.verified { background: #d1fae5; color: #065f46; }
.dr-badge.recently_checked { background: #dbeafe; color: #1e40af; }
.dr-badge.unverified { background: #fef3c7; color: #92400e; }
.dr-badge.expired { background: #fee2e2; color: #991b1b; }
.dr-badge.creator_submitted, .dr-badge.user_submitted { background: #f3f4f6; color: #374151; }

.dr-discount { font-size: 17px; font-weight: 800; color: var(--text); }
.dr-type { font-size: 12px; color: var(--muted); margin-top: 2px; }

.dr-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.dc-code-box {
    border: 2px dashed rgba(0,201,167,.4);
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,201,167,.04);
}
.dc-code {
    font-family: monospace;
    font-size: 15px;
    font-weight: 800;
    color: var(--mint-d);
    letter-spacing: 1.5px;
}
.dc-btn-reveal {
    background: var(--mint);
    color: var(--navy);
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}
.dc-btn-reveal:hover { background: var(--mint-d); }

.dr-cta {
    background: var(--gold);
    color: var(--navy);
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background .15s;
}
.dr-cta:hover { background: #e6b94a; }

.dr-expired-lbl {
    font-size: 12.5px;
    color: var(--red);
    font-weight: 600;
}

/* ── Redeem hint ── */
.redeem-code-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(0,201,167,.06);
    border: 1px solid rgba(0,201,167,.2);
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 14px;
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.55;
}
.redeem-code-hint strong { color: var(--text); }

/* ── FAQ single-column list ── */
.faq-card .oc-title { border-bottom: 1px solid var(--border); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border: none; }
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    font-family: inherit;
    gap: 12px;
}
.faq-q::after { content: '+'; font-size: 18px; font-weight: 400; color: var(--muted); flex-shrink: 0; transition: transform .2s; }
.faq-q[aria-expanded="true"]::after { content: '−'; }
.faq-a {
    display: none;
    font-size: 14.5px;
    color: var(--text2);
    padding-bottom: 16px;
    line-height: 1.65;
}
.faq-a.is-open { display: block; }

/* ── Responsive overrides for pass-3 additions ── */
@media (max-width: 1160px) {
    .ov-mini-blocks { grid-template-columns: repeat(2, 1fr); }
    .trust5-row { grid-template-columns: repeat(3, 1fr); }
    .support-row { grid-template-columns: 1fr; }
    .feature-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    .ov-mini-blocks { grid-template-columns: 1fr; }
    .trust5-row { grid-template-columns: 1fr; }
    .feature-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mobile-feature-trust-card {
        display: block;
    }
    .mobile-offer-snapshot-card {
        display: block;
        margin: 0 0 20px;
    }
    .twocard-row { grid-template-columns: 1fr; }
    .pros-cons-cols { grid-template-columns: 1fr; }
    .review-cards { grid-template-columns: 1fr; }
    .support-row { grid-template-columns: 1fr; }
    .csb[data-has-code="1"]:not(.is-revealed) .csb-cta--open-deal {
        display: none;
    }
    .csb.is-revealed .csb-or {
        display: none;
    }
    .csb.is-revealed .csb-cta--open-deal {
        display: block;
    }
    .ur-header { flex-direction: column; gap: 14px; }
}

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