@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --navy: #0a1628;
    --navy2: #0f2040;
    --blue: #1255cc;
    --bl: #1e6ef5;
    --bp: #e8f0fe;
    --green: #00c98d;
    --gd: #00a874;
    --gp: #e6faf4;
    --gold: #f5a623;
    --red: #e84040;
    --pu: #7c3aed;
    --w: #fff;
    --gr: #f0f4fb;
    --gr2: #dde5f4;
    --tx: #1a2540;
    --mu: #6b7fa3;
    --br: rgba(18, 85, 204, .13);
    --sh: 0 4px 20px rgba(10, 22, 40, .08);
    --shl: 0 20px 56px rgba(10, 22, 40, .18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #f0f4fb;
    color: var(--tx);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
}

/* ── BREADCRUMB ── */
.bc {
    background: white;
    border-bottom: 1px solid var(--br);
    padding: 0 24px;
}

.bc-in {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    font-size: 12px;
    color: var(--mu);
    flex-wrap: wrap;
}

.bc-in a {
    color: var(--blue);
}

.bc-in a:hover {
    text-decoration: underline;
}

.sep {
    color: var(--gr2);
}

/* ── MAIN LAYOUT ── */
.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px 64px;
}

.grid {
    display: grid;
    grid-template-columns:1fr 380px;
    gap: 32px;
    align-items: start;
}

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

@media (max-width: 600px) {
    .page {
        padding: 16px 12px 48px;
    }
}

/* ── GALLERY ── */
.gallery {
    background: white;
    border-radius: 20px;
    border: 2px solid var(--br);
    padding: 20px;
    box-shadow: var(--sh);
    margin-bottom: 20px;
}

.main-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: var(--gr);
    margin-bottom: 14px;
}

.main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .3s ease;
    cursor: zoom-in;
    border-radius: 12px;
}

.main-img:hover {
    transform: scale(1.04);
}

.img-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 7px;
}

.thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: 2px solid var(--br);
    overflow: hidden;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
    flex-shrink: 0;
}

.thumb:hover, .thumb.on {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px var(--bp);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile gallery scroll */
@media (max-width: 600px) {
    .thumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .thumbs::-webkit-scrollbar {
        display: none;
    }

    .thumb {
        flex-shrink: 0;
    }
}

/* ── RIGHT PANEL ── */
.panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prod-card {
    background: white;
    border-radius: 20px;
    border: 2px solid var(--br);
    padding: 24px;
    box-shadow: var(--sh);
}

.prod-sku {
    font-size: 11.5px;
    color: var(--mu);
    margin-bottom: 8px;
}

.prod-sku span {
    font-weight: 700;
    color: var(--tx);
}

.prod-name {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 10px;
}

.prod-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.ptag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
}

.pt-maker {
    background: #fff8e1;
    color: #c77700;
}

.pt-bat {
    background: var(--bp);
    color: var(--blue);
}

.pt-ua {
    background: var(--gp);
    color: var(--gd);
}

/* Pricing */
.prices {
    background: var(--gr);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 16px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--br);
}

.price-row:last-child {
    border: none;
}

.pr-label {
    font-size: 13px;
    color: var(--mu);
}

.pr-val {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
}

.pr-val.green {
    color: var(--gd);
}

.pr-val.blue {
    color: var(--blue);
}

.pr-note {
    font-size: 11px;
    color: var(--mu);
    margin-top: 2px;
    text-align: right;
}

.pr-lock {
    font-size: 13px;
    color: var(--blue);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-min {
    font-size: 12px;
    color: var(--mu);
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--br);
}

.price-min strong {
    color: var(--navy);
}

/* Size selector */
.size-wrap {
    margin-bottom: 16px;
}

.size-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mu);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.size-link {
    font-size: 12px;
    color: var(--blue);
    font-weight: 700;
    cursor: pointer;
}

.sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sz {
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    border: 2px solid var(--br);
    background: var(--gr);
    color: var(--tx);
    cursor: pointer;
    transition: all .2s;
}

.sz:hover {
    border-color: var(--blue);
    background: var(--bp);
    color: var(--blue);
}

.sz.on {
    border-color: var(--blue);
    background: var(--blue);
    color: white;
}

/* Qty + CTA */
.qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
}

.qty {
    display: flex;
    align-items: center;
    border: 2px solid var(--br);
    border-radius: 11px;
    overflow: hidden;
}

.qty button {
    width: 40px;
    height: 44px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--navy);
    transition: background .15s;
}

.qty button:hover {
    background: var(--gr);
}

.qty-val {
    width: 48px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.qty-note {
    font-size: 11.5px;
    color: var(--mu);
}

.btn-buy {
    width: 100%;
    padding: 16px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    background: linear-gradient(135deg, var(--bl), var(--blue));
    color: white;
    box-shadow: 0 6px 18px rgba(18, 85, 204, .3);
    transition: transform .15s, box-shadow .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(18, 85, 204, .4);
}

.btn-drop {
    width: 100%;
    padding: 14px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    background: linear-gradient(135deg, var(--green), var(--gd));
    color: white;
    box-shadow: 0 6px 18px rgba(0, 201, 141, .28);
    transition: transform .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.btn-drop:hover {
    transform: translateY(-2px);
}

.btn-ask {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    background: white;
    color: var(--navy);
    border: 2px solid var(--br);
    transition: border-color .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.btn-ask:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* Trust badges */
.trust {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}

.tb {
    background: var(--gr);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tb-ic {
    font-size: 18px;
    flex-shrink: 0;
}

.tb-tx {
    font-size: 11.5px;
    color: var(--mu);
    line-height: 1.4;
}

.tb-tx strong {
    display: block;
    font-size: 12.5px;
    color: var(--navy);
    font-weight: 700;
}

/* Delivery */
.delivery-card {
    background: white;
    border-radius: 16px;
    border: 2px solid var(--br);
    padding: 18px;
    box-shadow: var(--sh);
}

.del-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.del-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--br);
    font-size: 13px;
}

.del-row:last-child {
    border: none;
}

.del-ic {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.del-info strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.del-info span {
    font-size: 12px;
    color: var(--mu);
    line-height: 1.5;
}

/* Supplier card */
.sup-card {
    background: white;
    border-radius: 16px;
    border: 2px solid var(--br);
    padding: 18px;
    box-shadow: var(--sh);
}

.sup-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.sup-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 2px solid var(--br);
    overflow: hidden;
    flex-shrink: 0;
}

.sup-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sup-logo-ph {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 2px solid var(--br);
    background: var(--gr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.sup-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 4px;
}

.sup-name:hover {
    color: var(--blue);
}

.sup-meta {
    font-size: 12px;
    color: var(--mu);
}

.sup-stars {
    color: var(--gold);
    font-size: 12px;
    margin-right: 4px;
}

.sup-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.ss {
    font-size: 12.5px;
    color: var(--mu);
    display: flex;
    align-items: center;
    gap: 5px;
}

.ss strong {
    color: var(--navy);
    font-weight: 700;
}

.btn-sup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 12px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--bl), var(--blue));
    color: white;
    font-size: 13.5px;
    font-weight: 700;
    border: none;
    transition: opacity .15s;
    margin-bottom: 8px;
}

.btn-sup:hover {
    opacity: .88;
}

.btn-sup-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 11px;
    border-radius: 11px;
    background: white;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    border: 2px solid var(--br);
    transition: border-color .15s;
}

.btn-sup-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* ── LEFT COLUMN SECTIONS ── */
.section {
    background: white;
    border-radius: 18px;
    border: 2px solid var(--br);
    padding: 22px;
    box-shadow: var(--sh);
    margin-bottom: 18px;
}

.sec-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--br);
}

/* Description */
.desc-text {
    font-size: 14.5px;
    color: var(--tx);
    line-height: 1.8;
}

.desc-text p {
    margin-bottom: 10px;
}

.desc-text p:last-child {
    margin-bottom: 0;
}

.desc-props {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

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

.dp {
    background: var(--gr);
    border-radius: 10px;
    padding: 12px 14px;
}

.dp-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mu);
    margin-bottom: 4px;
}

.dp-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

/* Size table */
.size-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 520px;
}

.size-table th {
    background: var(--navy);
    color: white;
    padding: 10px 12px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.size-table th:first-child {
    border-radius: 8px 0 0 0;
}

.size-table th:last-child {
    border-radius: 0 8px 0 0;
}

.size-table td {
    padding: 9px 12px;
    border-bottom: 1px solid var(--br);
    font-size: 12.5px;
    white-space: nowrap;
}

.size-table tr:hover td {
    background: var(--bp);
}

.size-table tr:last-child td {
    border-bottom: none;
}

.size-table td:first-child {
    font-weight: 700;
    color: var(--blue);
}

.st-section {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mu);
    margin: 14px 0 8px;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--br);
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tab {
    padding: 11px 18px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--mu);
    border-bottom: 3px solid transparent;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    transition: color .15s, border-color .15s;
    white-space: nowrap;
    flex-shrink: 0;
    margin-bottom: -2px;
}

.tab:hover {
    color: var(--navy);
}

.tab.on {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.tab-panel {
    display: none;
}

.tab-panel.on {
    display: block;
}

/* Related products */
.related-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

.rp {
    background: white;
    border-radius: 14px;
    border: 2px solid var(--br);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.rp:hover {
    border-color: var(--blue);
    box-shadow: var(--shl);
    transform: translateY(-3px);
}

.rp-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: var(--gr);
}

.rp-body {
    padding: 10px 12px;
}

.rp-name {
    font-size: 12px;
    color: var(--tx);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 34px;
}

.rp-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.rp-drop {
    font-size: 11.5px;
    color: var(--blue);
    font-weight: 700;
}

/* Q&A form */
.qa-form {
    background: var(--gr);
    border-radius: 14px;
    padding: 18px;
}

.qa-form textarea {
    width: 100%;
    border: 2px solid var(--br);
    border-radius: 10px;
    padding: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--tx);
    background: white;
    outline: none;
    resize: none;
    height: 80px;
    transition: border-color .2s;
}

.qa-form textarea:focus {
    border-color: var(--blue);
}

.qa-form input {
    width: 100%;
    border: 2px solid var(--br);
    border-radius: 10px;
    padding: 11px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--tx);
    background: white;
    outline: none;
    margin-top: 8px;
    transition: border-color .2s;
}

.qa-form input:focus {
    border-color: var(--blue);
}

.btn-qa {
    margin-top: 10px;
    padding: 12px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--bl), var(--blue));
    color: white;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: opacity .15s;
}

.btn-qa:hover {
    opacity: .88;
}

/* REVEAL */
.rev {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s ease, transform .55s ease;
}

.rev.v {
    opacity: 1;
    transform: none;
}

/* Modal (size chart) */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, .6);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.open {
    display: flex;
}

.modal-box {
    background: white;
    border-radius: 20px;
    padding: 28px;
    max-width: 760px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    float: right;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--mu);
    line-height: 1;
}

.modal-close:hover {
    color: var(--navy);
}


/* ════════════════════════════════════════
   MOBILE — clean, complete
════════════════════════════════════════ */

/* Force all containers to never exceed their parent */
.page, .grid, .panel, .prod-card,
.prices, .size-wrap, .sizes, .trust,
.sup-card, .sup-stats, .delivery-card,
.gallery, .thumbs, .section, .tabs,
.related-grid, .qty-row {
    max-width: 100%;
    box-sizing: border-box;
}

/* Grid/flex children must respect parent width */
.grid > *, .panel > *, .sup-stats > .ss {
    min-width: 0;
}

/* ── ≤900px ── */
@media (max-width: 900px) {
    .page {
        padding: 14px 12px 48px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .panel {
        width: 100%;
    }
}

/* ── ≤600px ── */
@media (max-width: 600px) {
    /* Nav */
    .nav {
        padding: 0 12px;
        gap: 8px;
    }

    .nav-links {
        display: none;
    }

    /* Breadcrumb */
    .bc {
        padding: 0 12px;
    }

    .bc-in {
        font-size: 11px;
        gap: 4px;
    }

    /* Gallery */
    .gallery {
        padding: 12px;
        border-radius: 14px;
    }

    .thumb {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }

    /* Product card */
    .prod-card {
        padding: 16px 14px;
        border-radius: 16px;
    }

    .prod-name {
        font-size: 15px;
        line-height: 1.3;
    }

    .prices {
        padding: 12px;
    }

    .pr-val {
        font-size: 16px;
    }

    .price-row {
        gap: 8px;
    }

    .pr-label {
        font-size: 12.5px;
    }

    /* Sizes */
    .size-wrap {
        margin-bottom: 14px;
    }

    .sizes {
        gap: 6px;
    }

    .sz {
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 9px;
    }

    /* Qty */
    .qty-row {
        gap: 8px;
    }

    .qty-note {
        font-size: 11px;
    }

    /* Buttons */
    .btn-buy, .btn-drop {
        padding: 15px;
        font-size: 14px;
    }

    .btn-ask {
        padding: 12px;
        font-size: 13px;
    }

    /* Trust — single row of 2 */
    .trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
        margin-top: 12px;
    }

    .tb {
        padding: 9px 10px;
        gap: 7px;
        border-radius: 9px;
    }

    .tb-ic {
        font-size: 16px;
        flex-shrink: 0;
    }

    .tb-tx strong {
        font-size: 11.5px;
    }

    .tb-tx {
        font-size: 10.5px;
    }

    /* Supplier card */
    .sup-card {
        padding: 14px;
        border-radius: 14px;
    }

    .sup-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 12px;
        margin-bottom: 12px;
    }

    .ss {
        font-size: 12px;
    }

    /* Delivery */
    .delivery-card {
        padding: 14px;
        border-radius: 14px;
    }

    .del-row {
        gap: 8px;
        padding: 7px 0;
    }

    .del-info strong {
        font-size: 12.5px;
    }

    .del-info span {
        font-size: 11.5px;
    }

    /* Tabs */
    .tab {
        padding: 10px 11px;
        font-size: 12px;
    }

    /* Size table */
    .size-table-wrap {
        border-radius: 10px;
        overflow: hidden;
    }

    .size-table {
        font-size: 11.5px;
    }

    .size-table th, .size-table td {
        padding: 7px 8px;
    }

    /* Sections */
    .section {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .sec-title {
        font-size: 13.5px;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    /* Related */
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .rp-img {
        height: 110px;
    }

    .rp-body {
        padding: 8px 10px;
    }

    .rp-name {
        font-size: 11.5px;
    }

    .rp-price {
        font-size: 13px;
    }

    /* QA form */
    .qa-form {
        padding: 14px;
    }

    /* Buttons in sup card */
    .btn-sup, .btn-sup-ghost {
        font-size: 13px;
        padding: 11px;
    }
}

/* ── ≤400px ── */
@media (max-width: 400px) {
    .trust {
        grid-template-columns: 1fr 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sz {
        padding: 7px 11px;
        font-size: 12px;
    }

    .thumb {
        width: 44px;
        height: 44px;
    }

    .tab {
        padding: 9px 9px;
        font-size: 11.5px;
    }
}

.see-also-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 0 24px;
}

@media (max-width: 1000px) {
    .see-also-grid {
        grid-template-columns:1fr 1fr;
        gap: 0 18px;
    }
}

@media (max-width: 600px) {
    .see-also-grid {
        grid-template-columns:1fr;
        gap: 0;
    }

    .see-also-wrap {
        padding: 0 12px 48px !important;
    }

    .see-also-inner {
        padding: 18px 14px !important;
        border-radius: 14px !important;
    }
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    text-align: center;
    padding: 28px;
    color: rgba(255, 255, 255, .3);
    font-size: 13px;
}

footer a {
    color: var(--green);
    text-decoration: none;
}