/* ==========================================================================
   创业宝盒 — 列表页 / 详情页样式
   ========================================================================== */

/* ---------- 列表页 ---------- */
.list-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.filter-panel {
    position: sticky;
    top: calc(var(--header-h) + 16px);
    display: grid;
    gap: 24px;
}

.filter-group__title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    padding-bottom: 9px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-group__title span {
    font-size: 12px;
    color: var(--muted-2);
    font-weight: 400;
}

.filter-list {
    display: grid;
    gap: 1px;
}

.filter-list button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 7px 10px;
    border-radius: var(--r-xs);
    font-size: 13.6px;
    color: var(--text-2);
    text-align: left;
    transition: background-color .16s var(--ease), color .16s var(--ease);
}

.filter-list button:hover {
    background: var(--bg-soft);
    color: var(--text);
}

.filter-list button.is-on {
    background: var(--brand-bg);
    color: var(--brand);
    font-weight: 500;
}

.filter-list button i {
    font-style: normal;
    font-size: 12px;
    color: var(--muted-2);
    font-family: var(--font-num);
}

.filter-list button.is-on i {
    color: var(--brand);
}

.price-range {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-range .input {
    min-height: 38px;
    padding: 6px 10px;
    font-size: 13px;
    text-align: center;
}

.filter-tip {
    font-size: 12.5px;
    color: var(--muted);
    padding: 12px 13px;
    border-radius: var(--r-sm);
    background: var(--bg-soft);
    line-height: 1.7;
}

/* 工具条 */
.toolbar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-bottom: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.toolbar__info {
    font-size: 13.5px;
    color: var(--muted);
}

.toolbar__info b {
    color: var(--text);
    font-family: var(--font-num);
}

.toolbar__sorts {
    margin-left: auto;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.sort-btn {
    padding: 5px 12px;
    border-radius: var(--r-xs);
    font-size: 13px;
    color: var(--text-2);
    border: 1px solid transparent;
    transition: all .16s var(--ease);
}

.sort-btn:hover {
    color: var(--text);
    background: var(--bg-soft);
}

.sort-btn.is-on {
    background: var(--brand-bg);
    border-color: var(--brand-line);
    color: var(--brand);
    font-weight: 500;
}

.view-toggle,
.filter-trigger {
    display: none;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}

.active-filters .tag {
    cursor: pointer;
    padding: 4px 10px;
}

.active-filters .tag:hover {
    border-color: var(--brand);
}

.active-filters .clear {
    font-size: 12.8px;
    color: var(--muted);
    text-decoration: underline;
}

/* 分页 */
.pager {
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pager button,
.pager a {
    min-width: 36px;
    height: 36px;
    padding: 0 11px;
    border-radius: var(--r-xs);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: var(--bg);
    font-size: 13.5px;
    font-family: var(--font-num);
    color: var(--text-2);
    transition: all .16s var(--ease);
}

.pager button:hover:not(:disabled),
.pager a:hover {
    border-color: var(--line-2);
    color: var(--text);
}

.pager .is-on {
    background: var(--btn-bg);
    color: var(--btn-fg);
    border-color: transparent;
    font-weight: 600;
}

.pager button:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.pager__dots {
    color: var(--muted-2);
    padding: 0 2px;
}

/* ---------- 详情页 ---------- */
.detail-top {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: 40px;
    align-items: start;
}

.gallery {
    position: sticky;
    top: calc(var(--header-h) + 16px);
    display: grid;
    gap: 12px;
}

.gallery__main {
    position: relative;
    border-radius: var(--r);
    border: 1px solid var(--line);
    overflow: hidden;
    background: var(--bg-mute);
    aspect-ratio: 16 / 11;
}

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

.gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    color: var(--text);
    opacity: 0;
    transition: opacity .18s var(--ease);
}

[data-theme="dark"] .gallery__nav {
    background: rgba(22, 24, 28, .9);
}

.gallery__main:hover .gallery__nav {
    opacity: 1;
}

.gallery__nav svg {
    width: 17px;
    height: 17px;
}

.gallery__nav--prev {
    left: 10px;
}

.gallery__nav--next {
    right: 10px;
}

.gallery__counter {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 3px 10px;
    border-radius: var(--r-xs);
    background: rgba(16, 18, 22, .6);
    color: #fff;
    font-size: 12px;
    font-family: var(--font-num);
}

.thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.thumbs button {
    aspect-ratio: 16 / 11;
    border-radius: var(--r-xs);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-mute);
    transition: border-color .18s var(--ease);
}

.thumbs button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .7;
    transition: opacity .18s var(--ease);
}

.thumbs button:hover img {
    opacity: 1;
}

.thumbs button.is-on {
    border-color: var(--brand);
}

.thumbs button.is-on img {
    opacity: 1;
}

.gallery__feat {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery__feat div {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 11px;
    border-radius: var(--r-xs);
    background: var(--bg-soft);
    font-size: 12.4px;
    color: var(--muted);
}

.gallery__feat svg {
    width: 15px;
    height: 15px;
    color: var(--brand);
    flex-shrink: 0;
}

/* 信息区 */
.detail-info__title {
    font-size: clamp(21px, 2.4vw, 27px);
    font-weight: 700;
    line-height: 1.4;
    margin-top: 10px;
}

.detail-info__sub {
    margin-top: 10px;
    font-size: 14.5px;
    color: var(--muted);
}

.detail-info__tags {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.detail-info__meta {
    margin-top: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 13.2px;
    color: var(--muted);
}

.detail-info__meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-info__meta svg {
    width: 15px;
    height: 15px;
    color: var(--brand);
}

.detail-info__meta b {
    color: var(--text-2);
    font-weight: 500;
}

/* 价格条（单价格） */
.price-bar {
    padding: 20px 0 4px;
}

.price-bar__main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.price-bar__label {
    font-size: 13px;
    color: var(--muted);
}

.price-bar__now {
    font-family: var(--font-num);
    font-size: clamp(28px, 3.4vw, 36px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -1px;
    line-height: 1.1;
}

.price-bar__hint {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    font-size: 12.8px;
    color: var(--muted);
}

.price-bar__hint span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-bar__hint svg {
    width: 14px;
    height: 14px;
    color: var(--brand);
}

/* 规格 */
.spec-group {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--line);
}

.spec-group__head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.spec-group__name {
    font-size: 14.5px;
    color: var(--text);
    font-weight: 600;
}

.spec-group__name i {
    color: var(--brand);
    font-style: normal;
    margin-left: 3px;
}

.spec-group__note {
    font-size: 12.5px;
    color: var(--muted-2);
}

.spec-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
    gap: 10px;
}

.spec-opt {
    position: relative;
    text-align: left;
    padding: 12px 14px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line-2);
    background: var(--bg);
    transition: border-color .18s var(--ease), background-color .18s var(--ease);
}

.spec-opt:hover {
    border-color: var(--muted-2);
}

.spec-opt.is-on {
    border-color: var(--brand);
    background: var(--brand-bg);
}

.spec-opt__name {
    display: block;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.spec-opt.is-on .spec-opt__name {
    color: var(--brand);
}

.spec-opt__desc {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: var(--muted-2);
    line-height: 1.55;
}

.spec-opt__price {
    display: block;
    margin-top: 7px;
    font-size: 12.8px;
    color: var(--brand);
    font-family: var(--font-num);
}

.spec-opt__flag {
    position: absolute;
    top: -9px;
    right: 10px;
    padding: 1px 7px;
    font-size: 11px;
    border-radius: var(--r-xs);
    background: var(--btn-bg);
    color: var(--btn-fg);
}

/* 增值服务 */
.addon-list {
    display: grid;
    gap: 8px;
}

.addon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line-2);
    background: var(--bg);
    cursor: pointer;
    transition: border-color .18s var(--ease), background-color .18s var(--ease);
}

.addon:hover {
    border-color: var(--muted-2);
}

.addon.is-on {
    border-color: var(--brand);
    background: var(--brand-bg);
}

.addon__box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid var(--line-2);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all .18s var(--ease);
}

.addon__box svg {
    width: 12px;
    height: 12px;
    color: var(--btn-fg);
    opacity: 0;
}

.addon.is-on .addon__box {
    background: var(--brand);
    border-color: var(--brand);
}

.addon.is-on .addon__box svg {
    opacity: 1;
}

.addon__text {
    flex: 1;
    min-width: 0;
}

.addon__name {
    display: block;
    font-size: 13.8px;
    color: var(--text);
}

.addon__desc {
    display: block;
    font-size: 12.2px;
    color: var(--muted-2);
    margin-top: 2px;
}

.addon__price {
    font-size: 13.5px;
    color: var(--brand);
    font-family: var(--font-num);
    white-space: nowrap;
}

/* 购买行 */
.buy-row {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.qty {
    display: flex;
    align-items: center;
    border-radius: var(--r-sm);
    border: 1px solid var(--line-2);
    background: var(--bg);
    height: 44px;
    overflow: hidden;
}

.qty button {
    width: 38px;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--text-2);
}

.qty button:hover {
    background: var(--bg-soft);
    color: var(--text);
}

.qty button svg {
    width: 15px;
    height: 15px;
}

.qty input {
    width: 46px;
    height: 100%;
    text-align: center;
    border: 0;
    background: transparent;
    font-family: var(--font-num);
    font-size: 15px;
}

.buy-row .btn {
    flex: 1 1 170px;
    height: 44px;
}

.buy-row .btn--outline,
.buy-row .btn.is-on {
    flex: 0 0 auto;
    min-width: 108px;
}

.assure-row {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 8px;
}

.assure {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.8px;
    color: var(--muted);
}

.assure svg {
    width: 15px;
    height: 15px;
    color: var(--brand);
    flex-shrink: 0;
}

.assure > [data-icon] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 26px;
    overflow-x: auto;
    scrollbar-width: none;
}

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

.tabs button {
    position: relative;
    padding: 12px 0;
    font-size: 15px;
    color: var(--muted);
    white-space: nowrap;
}

.tabs button:hover {
    color: var(--text);
}

.tabs button.is-on {
    color: var(--text);
    font-weight: 600;
}

.tabs button.is-on::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--brand);
}

.tab-panel {
    display: none;
}

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

.prose {
    font-size: 14.6px;
    line-height: 1.9;
    color: var(--text-2);
}

.prose h3 {
    margin: 26px 0 10px;
    font-size: 16.5px;
    color: var(--text);
    font-weight: 600;
}

.prose h3:first-child {
    margin-top: 0;
}

.prose p {
    margin: 10px 0;
    color: var(--muted);
}

.prose ul {
    display: grid;
    gap: 8px;
    margin: 12px 0;
}

.prose ul li {
    position: relative;
    padding-left: 16px;
    color: var(--muted);
}

.prose ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--muted-2);
}

.prose strong {
    color: var(--text-2);
    font-weight: 600;
}

/* 规格对比表 */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.6px;
}

.spec-table th,
.spec-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    color: var(--text-2);
}

.spec-table th {
    background: var(--bg-soft);
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 1px solid var(--line-2);
}

.spec-table tr:last-child td {
    border-bottom: 0;
}

.spec-table td:first-child {
    color: var(--muted);
    white-space: nowrap;
}

.spec-table .hl {
    color: var(--brand);
    font-weight: 600;
}

.table-scroll {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
}

/* 功能清单 */
.feat-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
}

.feat-list div {
    display: flex;
    gap: 9px;
    padding: 12px 14px;
    border-radius: var(--r-sm);
    background: var(--bg-soft);
    font-size: 13.4px;
    color: var(--text-2);
    line-height: 1.6;
}

.feat-list svg {
    width: 15px;
    height: 15px;
    color: var(--brand);
    flex-shrink: 0;
    margin-top: 5px;
}

/* 交付清单 */
.deliver-list {
    display: grid;
    gap: 10px;
}

.deliver-list li {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    font-size: 13.6px;
    color: var(--muted);
}

.deliver-list b {
    display: block;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 2px;
}

.deliver-list svg {
    width: 17px;
    height: 17px;
    color: var(--brand);
    flex-shrink: 0;
    margin-top: 3px;
}

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

.stack-row span {
    padding: 6px 13px;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    font-size: 13px;
    color: var(--text-2);
}

/* ---------- 商品详情（长文） ---------- */
.dd-sec {
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.dd-sec:first-child {
    padding-top: 0;
}

.dd-sec:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.dd-sec > h3 {
    font-size: 17px;
    margin-bottom: 12px;
}

.dd-sec > p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 10px;
}

.dd-sec > p:last-child {
    margin-bottom: 0;
}

.dd-lead {
    font-size: 15.5px !important;
    color: var(--text-2) !important;
    font-weight: 500;
}

.dd-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 20px 0 4px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
}

.dd-stats > div {
    padding: 18px 14px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.dd-stats > div:last-child {
    border-right: 0;
}

.dd-stats b {
    display: block;
    font-family: var(--font-num);
    font-size: 23px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.dd-stats span {
    display: block;
    margin-top: 5px;
    font-size: 12.5px;
    color: var(--muted);
}

.dd-shot {
    margin: 16px 0 0;
}

.dd-shot img {
    width: 100%;
    border-radius: var(--r);
    border: 1px solid var(--line);
    background: var(--bg-mute);
}

.dd-shot figcaption {
    margin-top: 10px;
    font-size: 13.2px;
    color: var(--muted);
    line-height: 1.7;
}

.dd-shot figcaption b {
    color: var(--text-2);
    font-weight: 600;
    margin-right: 4px;
}

.dd-mod {
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.dd-mod:first-of-type {
    border-top: 0;
    padding-top: 6px;
}

.dd-mod h4 {
    font-size: 15.5px;
    color: var(--text);
    display: flex;
    align-items: baseline;
    gap: 9px;
}

.dd-mod h4 i {
    font-style: normal;
    font-family: var(--font-num);
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
}

.dd-mod ul {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px 20px;
}

.dd-mod li {
    display: flex;
    gap: 8px;
    font-size: 13.4px;
    color: var(--muted);
    line-height: 1.65;
}

.dd-mod li svg {
    width: 15px;
    height: 15px;
    color: var(--brand);
    flex-shrink: 0;
    margin-top: 4px;
}

.dd-kv {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
}

.dd-kv > div {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    padding: 13px 16px;
    background: var(--bg);
    font-size: 13.4px;
}

.dd-kv span {
    color: var(--muted-2);
    min-width: 72px;
}

.dd-kv b {
    color: var(--text-2);
    font-weight: 500;
    flex: 1;
}

.dd-sec .stack-row {
    margin-top: 8px;
}

@media (max-width: 720px) {
    .dd-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dd-stats > div:nth-child(2) {
        border-right: 0;
    }

    .dd-stats > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .dd-kv {
        grid-template-columns: 1fr;
    }

    .dd-mod ul {
        grid-template-columns: 1fr;
    }
}

/* 评价 */
.review-summary {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
    border-radius: var(--r);
    border: 1px solid var(--line);
    background: var(--bg-soft);
    margin-bottom: 20px;
}

.review-score {
    text-align: center;
    border-right: 1px solid var(--line);
    padding-right: 20px;
}

.review-score b {
    display: block;
    font-family: var(--font-num);
    font-size: 40px;
    line-height: 1;
    color: var(--text);
}

.review-score small {
    display: block;
    margin-top: 8px;
    font-size: 12.6px;
    color: var(--muted);
}

.review-bars {
    display: grid;
    gap: 8px;
    align-content: center;
}

.review-bars div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 10px;
    font-size: 12.6px;
    color: var(--muted);
}

.bar {
    height: 5px;
    border-radius: 5px;
    background: var(--line);
    overflow: hidden;
}

.bar i {
    display: block;
    height: 100%;
    border-radius: 5px;
    background: var(--brand);
}

/* 移动端吸底购买条 */
.buy-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(62px + env(safe-area-inset-bottom));
    z-index: 915;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.buy-bar__price {
    flex: 1;
    min-width: 0;
}

.buy-bar__price small {
    display: block;
    font-size: 11.5px;
    color: var(--muted-2);
}

.buy-bar__price b {
    font-family: var(--font-num);
    font-size: 19px;
    color: var(--text);
}

.buy-bar .btn {
    height: 42px;
    flex: 0 0 auto;
}

.reco-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .reco-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
    .list-layout {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        display: none;
        position: static;
        padding: 20px;
        border: 1px solid var(--line);
        border-radius: var(--r);
        background: var(--bg-soft);
    }

    .filter-panel.is-open {
        display: grid;
    }

    .filter-trigger {
        display: inline-flex;
    }

    .detail-top {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .gallery {
        position: static;
    }
}

@media (max-width: 880px) {
    .buy-bar {
        display: flex;
    }

    body.has-buybar {
        padding-bottom: calc(128px + env(safe-area-inset-bottom));
    }

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

    .review-score {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 0 0 14px;
    }

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

@media (max-width: 560px) {
    .thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .spec-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .spec-opt {
        padding: 10px 11px;
    }

    .spec-opt__name {
        font-size: 13.4px;
    }

    .spec-opt__desc {
        font-size: 11.5px;
    }

    .tabs {
        gap: 18px;
    }

    .tabs button {
        font-size: 14px;
    }

    .buy-row .btn {
        flex: 1 1 100%;
    }

    .buy-row .btn--outline,
    .buy-row .btn.is-on {
        flex: 1 1 100%;
        min-width: 0;
    }

    .toolbar__sorts {
        margin-left: 0;
        width: 100%;
    }

    .faq-a__in {
        padding-left: 2px;
    }
}
