/*
Theme Name: Bus Mall
Description: Card-style mall theme for Z-Blog.
*/

:root {
    --bg: #f6efe7;
    --surface: #fffdf9;
    --surface-dark: #17313f;
    --text: #15222b;
    --muted: #64707a;
    --line: #eadfd1;
    --primary: #ff6f3d;
    --primary-deep: #df5728;
    --accent: #1d7c74;
    --accent-soft: #e6f5f2;
    --shadow: 0 18px 50px rgba(21, 34, 43, 0.08);
    --radius-xl: 28px;
    --wrap: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: #edf1f5;
    font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

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

.busmall-shell {
    width: min(var(--wrap), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #353946;
    border-bottom: 0;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand__mark {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f30018, #c70017);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    box-shadow: none;
}

.brand__text {
    min-width: 0;
}

.brand__title {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
}

.brand__desc {
    margin: 2px 0 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-nav > ul,
.mobile-nav > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-nav > ul {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.top-nav li {
    position: relative;
    list-style: none;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.top-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    transition: 0.22s ease;
}

.top-nav a:hover,
.top-nav li:hover > a {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.top-nav li ul {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    min-width: 180px;
    margin: 0;
    padding: 10px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    z-index: 80;
}

.top-nav li:hover > ul {
    display: block;
}

.top-nav li ul li {
    display: block;
    margin: 0;
}

.top-nav li ul li + li {
    margin-top: 4px;
}

.top-nav li ul a {
    display: flex;
    width: 100%;
    padding: 10px 12px;
    justify-content: flex-start;
    border-radius: 12px;
    color: #1f2937;
    background: transparent;
    white-space: nowrap;
}

.top-nav li ul a:hover,
.top-nav li ul li:hover > a {
    color: #0f172a;
    background: #f5f7fb;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.search-form input {
    width: 170px;
    border: 0;
    background: transparent;
    outline: 0;
    font-size: 13px;
    color: #fff;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.search-form button,
.mobile-toggle {
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
}

.mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav {
    display: none;
    padding-bottom: 16px;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 700;
}

.mobile-nav li ul {
    margin-top: 6px;
    margin-left: 14px;
    padding-left: 0;
    list-style: none;
}

.mobile-nav a:hover {
    background: rgba(255, 111, 61, 0.08);
    color: var(--text);
}

.mobile-nav .search-form {
    display: flex;
}

.hero {
    padding: 10px 0 8px;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(23, 49, 63, 0.12);
    background: linear-gradient(135deg, rgba(23, 49, 63, 0.96), rgba(31, 72, 90, 0.96));
}

.hero-slider__track {
    display: flex;
    transition: transform 0.55s ease;
    will-change: transform;
}

.hero-slider__item {
    min-width: 100%;
    aspect-ratio: 16 / 4.1;
    background: #17313f;
}

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

.hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
}

.hero-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-slider__dot.is-active {
    width: 22px;
    background: #fff;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 6px;
}

.section-head h2,
.section-head h1 {
    margin: 0;
    font-size: clamp(18px, 2.4vw, 26px);
    line-height: 1.1;
}

.section-head p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.category-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-strip::-webkit-scrollbar {
    display: none;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    transition: 0.22s ease;
    white-space: nowrap;
}

.category-pill span {
    display: inline-flex;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: var(--text);
    font-size: 10px;
}

.category-pill:hover {
    transform: translateY(-2px);
    background: #fff;
    color: var(--text);
    box-shadow: var(--shadow);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 4px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(234, 223, 209, 0.9);
    box-shadow: var(--shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(21, 34, 43, 0.12);
}

.product-card__media {
    position: relative;
    aspect-ratio: 16 / 8.2;
    background: linear-gradient(135deg, rgba(255, 111, 61, 0.18), rgba(29, 124, 116, 0.18));
    overflow: hidden;
}

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

.product-card__placeholder {
    width: 100%;
    height: 100%;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
        linear-gradient(145deg, #233b48, #345769);
    color: #fff;
}

.product-card__placeholder strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 20px;
}

.product-card__placeholder span {
    font-size: 12px;
    opacity: 0.78;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-card__body {
    padding: 14px;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.product-badge,
.stock-badge,
.detail-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.product-badge {
    color: var(--accent);
    background: var(--accent-soft);
}

.stock-badge {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #ff9a62);
}

.stock-badge.is-empty {
    background: #a7adb3;
}

.product-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.25;
}

.product-card__desc {
    margin: 0;
    min-height: 34px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.product-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.detail-chip {
    background: #fff8f2;
    border: 1px solid #f3dccf;
    color: #b25633;
}

.product-card__foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(234, 223, 209, 0.9);
}

.product-grid--square .product-card {
    display: block;
    aspect-ratio: 1 / 1;
    background: #fffaf4;
    border: 1px solid rgba(234, 223, 209, 0.95);
    box-shadow: 0 18px 42px rgba(21, 34, 43, 0.1);
}

.product-grid--square .product-card__media {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    background: #f5ede3;
}

.product-grid--square .product-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 250, 244, 0.02) 0%, rgba(255, 250, 244, 0.04) 48%, rgba(255, 250, 244, 0.12) 100%);
    transition: background 0.24s ease;
}

.product-grid--square .product-card__media img {
    transform: scale(1.01);
}

.product-grid--square .product-card__body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 14px;
    color: var(--text);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.product-grid--square .product-card:hover .product-card__body,
.product-grid--square .product-card:focus-within .product-card__body {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.product-grid--square .product-card:hover .product-card__media::after,
.product-grid--square .product-card:focus-within .product-card__media::after {
    background:
        linear-gradient(180deg, rgba(255, 250, 244, 0.04) 0%, rgba(255, 250, 244, 0.1) 34%, rgba(255, 250, 244, 0.94) 100%),
        linear-gradient(180deg, rgba(255, 250, 244, 0) 42%, rgba(255, 250, 244, 0.78) 100%);
}

.product-grid--square .product-card__meta {
    margin-bottom: 8px;
    align-items: center;
}

.product-grid--square .product-card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
}

.product-grid--square .product-card h3 a {
    color: var(--text);
}

.product-grid--square .product-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-grid--square .product-card__desc,
.product-grid--square .product-card__chips {
    display: none;
}

.product-grid--square .product-card__foot {
    margin-top: 10px;
    padding-top: 10px;
    align-items: center;
    border-top-color: rgba(234, 223, 209, 0.95);
}

.product-grid--square .product-badge {
    color: #8f542e;
    background: rgba(255, 248, 242, 0.92);
    border: 1px solid rgba(243, 220, 207, 0.95);
    backdrop-filter: blur(8px);
}

.product-grid--square .stock-badge {
    color: #fff;
    background: rgba(34, 197, 94, 0.9);
    box-shadow: none;
}

.product-grid--square .stock-badge.is-empty {
    background: rgba(100, 116, 139, 0.92);
}

.product-grid--square .product-price small {
    display: none;
}

.product-grid--square .product-price strong {
    color: var(--primary-deep);
    font-size: 18px;
}

.product-grid--square .btn--primary {
    padding: 9px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #ff9b62);
    color: #fff;
    box-shadow: 0 12px 24px rgba(255, 111, 61, 0.22);
}

.product-grid--square .btn--primary:hover {
    background: linear-gradient(135deg, #ff834f, #ffab74);
}

.product-price small,
.detail-price small {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-price strong,
.detail-price strong {
    display: block;
    font-size: 20px;
    line-height: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 16px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.22s ease;
}

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

.btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #ff9b62);
    box-shadow: 0 16px 30px rgba(255, 111, 61, 0.26);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgba(255, 111, 61, 0.32);
}

.btn--ghost {
    color: var(--text);
    background: #fff;
    border: 1px solid var(--line);
}

.btn--ghost:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.archive-banner,
.detail-card,
.content-card,
.info-card,
.empty-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(234, 223, 209, 0.95);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.archive-banner,
.content-card,
.info-card,
.empty-card {
    padding: 24px;
}

.archive-banner {
    margin: 30px 0 24px;
}

.order-crumbs {
    margin: 24px 0 14px;
    font-size: 12px;
}

.order-hero {
    position: relative;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
    background: #fff;
    border: 1px solid #dde5ed;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(28, 44, 64, 0.06);
}

.order-hero__media {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: #0f1117;
    border: 1px solid #e5e7eb;
}

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

.order-hero__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    gap: 12px;
}

.order-hero__placeholder strong {
    font-size: 100px;
    line-height: 1;
}

.order-hero__body {
    position: relative;
    min-height: 270px;
    padding-right: 120px;
}

.order-stock {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 98px;
    padding: 8px 16px;
    border-radius: 999px 6px 6px 999px;
    background: linear-gradient(135deg, #ca35ff, #6f7cff);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.order-stock.is-empty {
    background: linear-gradient(135deg, #999, #777);
}

.order-title {
    margin: 6px 0 16px;
    padding-right: 110px;
    font-size: 24px;
    line-height: 1.35;
}

.order-price-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 16px;
}

.order-price-line strong {
    color: #ff5b2e;
    font-size: 20px;
}

.order-row {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.order-row > label,
.order-qty > label {
    font-size: 14px;
    color: #222;
}

.pay-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pay-method {
    min-width: 118px;
    height: 40px;
    border: 1px solid #d4dae1;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

.pay-method.is-active {
    border-color: #2e87ff;
    color: #2e87ff;
    box-shadow: inset 0 0 0 1px #2e87ff;
}

.order-row__content {
    max-width: 400px;
}

.order-input {
    width: 100%;
    height: 44px;
    border: 1px solid #d8dee5;
    border-radius: 4px;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
}

.order-input:focus {
    border-color: #2e87ff;
}

.order-notice {
    max-width: 760px;
    margin: -2px 0 16px 86px;
    color: #ff5b57;
    font-size: 13px;
    line-height: 1.5;
}

.order-footer {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}

.order-qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-qty__control {
    width: 140px;
    border-radius: 4px;
}

.order-qty__control button,
.order-qty__control input {
    height: 42px;
}

.order-total {
    display: flex;
    align-items: baseline;
    gap: 8px;
    white-space: nowrap;
}

.order-total strong {
    font-size: 18px;
    color: #222;
}

.order-actions {
    display: flex;
    justify-content: flex-end;
}

.order-buy {
    min-width: 116px;
    background: #22c55e;
    color: #fff;
    border-radius: 4px;
    box-shadow: none;
}

.order-buy:hover {
    transform: translateY(-1px);
    box-shadow: none;
    background: #16a34a;
}

.order-buy.is-disabled {
    background: #b6bcc3;
    cursor: not-allowed;
}

.order-detail-card {
    margin-top: 18px;
}

.detail-highlights--compact {
    margin-top: 0;
}

.archive-banner__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff7ef;
    color: #b25633;
    font-size: 12px;
    font-weight: 800;
}

.empty-card {
    text-align: center;
    color: var(--muted);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 24px;
    margin-top: 30px;
    align-items: start;
}

.detail-card {
    overflow: hidden;
}

.detail-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(255, 111, 61, 0.18), rgba(29, 124, 116, 0.18));
}

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

.detail-card__placeholder {
    width: 100%;
    height: 100%;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at right top, rgba(255,255,255,0.14), transparent 30%),
        linear-gradient(135deg, #213a48, #274656 60%, #1d7c74);
    color: #fff;
}

.detail-card__placeholder strong {
    display: inline-flex;
    width: 86px;
    height: 86px;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 34px;
}

.detail-card__body {
    padding: 28px;
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-size: 13px;
}

.crumbs span {
    opacity: 0.5;
}

.detail-title {
    margin: 16px 0 12px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
}

.detail-summary {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.detail-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.detail-highlight {
    padding: 16px;
    border-radius: 18px;
    background: #fff8f2;
    border: 1px solid #f3dccf;
}

.detail-highlight span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 8px;
}

.detail-highlight strong {
    display: block;
    font-size: 16px;
    line-height: 1.3;
}

.purchase-panel {
    position: sticky;
    top: 96px;
    padding: 24px;
}

.detail-price {
    margin-top: 6px;
}

.purchase-meta {
    display: grid;
    gap: 12px;
    margin: 18px 0 22px;
}

.purchase-meta__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff8f2;
    border: 1px solid #f3dccf;
    font-size: 14px;
}

.purchase-meta__item strong {
    font-size: 15px;
}

.quantity-box {
    margin: 22px 0 18px;
}

.quantity-box label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 800;
    color: var(--muted);
}

.quantity-control {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
}

.quantity-control button {
    width: 52px;
    height: 52px;
    border: 0;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    color: var(--text);
}

.quantity-control input {
    width: 100%;
    height: 52px;
    border: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    background: transparent;
    outline: 0;
}

.total-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 111, 61, 0.08), rgba(255, 214, 163, 0.22));
    margin-bottom: 18px;
}

.total-box strong {
    font-size: 22px;
}

.panel-actions {
    display: grid;
    gap: 12px;
}

.panel-note {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.content-card {
    margin-top: 24px;
}

.article-content {
    color: #2d3b44;
    font-size: 15px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
    line-height: 1.2;
    color: #132129;
}

.article-content img {
    border-radius: 20px;
    margin: 18px 0;
}

.article-content a {
    color: var(--primary-deep);
}

.article-content blockquote {
    margin: 18px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--primary);
    background: #fff8f2;
    border-radius: 0 18px 18px 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
}

.article-content th,
.article-content td {
    padding: 12px 14px;
    border: 1px solid var(--line);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 20px;
}

.info-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.related-card {
    display: block;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(234, 223, 209, 0.95);
    box-shadow: var(--shadow);
    transition: 0.22s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card strong {
    display: block;
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.3;
}

.related-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.pagebar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 34px 0 12px;
}

.pagebar a {
    min-width: 42px;
    padding: 10px 14px;
    text-align: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    color: var(--muted);
    font-weight: 800;
}

.pagebar a:hover,
.pagebar .now-page {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #ff9b62);
    border-color: transparent;
}

.site-footer {
    margin-top: 42px;
    border-top: 1px solid rgba(234, 223, 209, 0.9);
    background: rgba(255, 255, 255, 0.56);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px 0 34px;
    color: var(--muted);
    font-size: 13px;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
}

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

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        border-radius: 26px;
    }

    .hero-slider__item {
        aspect-ratio: 16 / 8.5;
    }

    .purchase-panel {
        position: static;
    }

    .order-hero {
        grid-template-columns: 220px minmax(0, 1fr);
    }
}

@media (max-width: 860px) {
    .top-nav,
    .search-form {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .detail-highlights,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .mobile-nav .search-form {
        display: flex;
    }

    .order-hero {
        grid-template-columns: 1fr;
    }

    .order-hero__media {
        max-width: 320px;
    }

    .order-hero__body {
        padding-right: 0;
    }

    .order-stock {
        position: static;
        margin-bottom: 12px;
        border-radius: 999px;
    }

    .order-title {
        padding-right: 0;
    }

    .order-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .order-notice {
        margin-left: 0;
    }

    .order-footer {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .order-actions {
        width: 100%;
        justify-content: stretch;
    }

    .order-buy {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .busmall-shell {
        width: min(var(--wrap), calc(100% - 20px));
    }

    .hero {
        padding-top: 22px;
    }

    .hero-slider,
    .archive-banner,
    .content-card,
    .info-card,
    .empty-card,
    .purchase-panel,
    .product-card,
    .detail-card {
        border-radius: 22px;
    }

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

    .site-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-slider__item {
        aspect-ratio: 16 / 10.5;
    }

    .hero-slider__dots {
        bottom: 12px;
        gap: 8px;
        padding: 8px 12px;
    }
}

.buy-success-banner,
.buy-error-banner {
    margin: 20px 0 18px;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.7;
    box-shadow: var(--shadow);
}

.buy-success-banner {
    color: #136c54;
    background: #edfdf6;
    border: 1px solid #b8ebd2;
}

.buy-error-banner {
    color: #a33b2a;
    background: #fff1ee;
    border: 1px solid #f3c7bd;
}

.order-pay-form {
    display: none;
}

.order-pay-status {
    margin: 14px 0 0;
    padding: 13px 15px;
    border-radius: 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    font-size: 13px;
    line-height: 1.6;
}

.header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    transition: 0.22s ease;
}

.header-link:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.header-link--query {
    gap: 10px;
    justify-content: flex-start;
    min-height: 40px;
    padding: 6px 14px 6px 8px;
    border-radius: 18px;
    border-color: rgba(255, 183, 151, 0.2);
    background: linear-gradient(180deg, rgba(255, 157, 108, 0.18), rgba(255, 157, 108, 0.08));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 10px 24px rgba(0, 0, 0, 0.18);
    color: #fff4ef;
}

.header-link--query:hover {
    background: linear-gradient(180deg, rgba(255, 157, 108, 0.24), rgba(255, 157, 108, 0.12));
    border-color: rgba(255, 197, 171, 0.3);
}

.header-link__icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 111, 61, 0.95), rgba(223, 87, 40, 0.95));
    color: #fff;
    font-size: 12px;
    box-shadow: 0 8px 18px rgba(255, 111, 61, 0.28);
}

.header-link__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.header-link__text small {
    display: block;
    margin-bottom: 2px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffbea4;
}

.header-link__text strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #fff7f2;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.header-link--back {
    padding: 0 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.04);
}

.header-link--back:hover {
    color: #fff;
}

.order-actions {
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.order-history-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
}

.order-history-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.order-query-page {
    padding: 18px 0 40px;
}

.order-query-panel {
    margin-top: 18px;
}

.order-query-form {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.order-query-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.order-query-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.order-query-field input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    outline: 0;
    font-size: 14px;
    color: var(--text);
}

.order-query-field input:focus {
    border-color: rgba(29, 124, 116, 0.35);
    box-shadow: 0 0 0 4px rgba(29, 124, 116, 0.08);
}

.order-query-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-query-hint,
.order-query-summary {
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted);
}

.order-records {
    display: grid;
    gap: 18px;
    margin-top: 16px;
}

.order-record-card {
    margin-top: 0;
}

.order-record-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.order-record-card__head h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
}

.order-record-card__head p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    word-break: break-all;
}

.order-record-card__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.order-record-stat {
    padding: 14px 15px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #f0e6da;
}

.order-record-stat span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    color: var(--muted);
}

.order-record-stat strong {
    display: block;
    font-size: 15px;
    line-height: 1.45;
    color: var(--text);
    word-break: break-word;
}

.order-record-card__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.order-state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.order-state.is-paid {
    color: #136c54;
    background: #edfdf6;
    border: 1px solid #b8ebd2;
}

.order-state.is-pending {
    color: #915305;
    background: #fff7e8;
    border: 1px solid #f4ddb2;
}

.order-state.is-failed {
    color: #a33b2a;
    background: #fff1ee;
    border: 1px solid #f3c7bd;
}

.order-query-empty {
    margin-top: 16px;
    text-align: center;
}

.order-query-empty h3 {
    margin: 0 0 8px;
}

.order-query-empty p {
    margin: 0;
    color: var(--muted);
}

.query-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.query-guide-card {
    margin-top: 0;
}

.query-guide-card h3 {
    margin: 0 0 10px;
}

.query-guide-card p {
    margin: 0;
    color: var(--muted);
}

.modal-open {
    overflow: hidden;
}

.pay-modal[hidden] {
    display: none;
}

.pay-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pay-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 23, 30, 0.6);
    backdrop-filter: blur(8px);
}

.pay-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
}

.pay-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #3a4752;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.pay-modal__head h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
}

.pay-modal__head p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.pay-modal__summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.pay-modal__summary div {
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e6ebf1;
}

.pay-modal__summary span,
.pay-modal__field span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pay-modal__summary strong {
    display: block;
    font-size: 17px;
    line-height: 1.5;
}

.pay-modal__form {
    margin-top: 18px;
}

.pay-modal__field {
    display: block;
}

.pay-modal__field input {
    width: 100%;
    height: 48px;
    border: 1px solid #d5dbe4;
    border-radius: 16px;
    padding: 0 16px;
    font-size: 15px;
    background: #fff;
    outline: none;
}

.pay-modal__field input:focus {
    border-color: #2e87ff;
}

.pay-modal__tips {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff7f4;
    border: 1px solid #ffd6c8;
    color: #d1522f;
    font-size: 13px;
    line-height: 1.7;
}

.pay-modal__tips p {
    margin: 0;
}

.pay-modal__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.pay-modal__ghost {
    box-shadow: none;
}

.pay-modal__submit[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.pay-modal__status {
    margin-top: 14px;
    padding: 13px 15px;
    border-radius: 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    font-size: 13px;
    line-height: 1.6;
}

.buy-success-detail {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fffb, #eefcf5);
    border: 1px solid #caecd9;
    color: #185b46;
    font-size: 15px;
    line-height: 1.9;
    word-break: break-word;
}

.pay-modal--success .pay-modal__head h3 {
    color: #136c54;
}

.news-page {
    padding: 20px 0 44px;
}

.news-hero-card {
    padding: 28px 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.96));
    border: 1px solid rgba(222, 228, 236, 0.96);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.news-hero-card__meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(16, 24, 40, 0.08);
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-hero-card h1 {
    margin: 16px 0 10px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
}

.news-hero-card p {
    max-width: 760px;
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.9;
}

.news-list {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.news-card {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 22px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(227, 232, 239, 0.98);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.news-card__media {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: #e2e8f0;
    min-height: 190px;
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card__placeholder {
    display: flex;
    height: 100%;
    min-height: 190px;
    padding: 22px;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
}

.news-card__placeholder strong {
    font-size: 52px;
    line-height: 1;
}

.news-card__placeholder span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.news-card__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 13px;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 12px;
    font-weight: 800;
}

.news-card h2 {
    margin: 14px 0 12px;
    font-size: 28px;
    line-height: 1.25;
}

.news-card h2 a,
.news-mini-card strong,
.news-side-links a {
    color: #0f172a;
}

.news-card p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.85;
}

.news-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
    color: #94a3b8;
    font-size: 13px;
}

.news-card__foot a {
    color: #1d4ed8;
    font-weight: 700;
}

.news-detail-page {
    padding: 18px 0 44px;
}

.news-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 26px;
    align-items: stretch;
    margin-top: 18px;
}

.news-detail-hero__content,
.news-detail-hero__media {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(227, 232, 239, 0.98);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.news-detail-hero__content {
    padding: 30px 32px;
}

.news-detail-hero__content h1 {
    margin: 18px 0 12px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.16;
}

.news-detail-hero__content p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.9;
}

.news-detail-hero__meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
    color: #94a3b8;
    font-size: 13px;
}

.news-detail-hero__media {
    overflow: hidden;
    min-height: 300px;
}

.news-detail-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 20px;
    margin-top: 22px;
    align-items: start;
}

.news-content-card {
    padding: 28px 30px;
}

.news-article-content {
    font-size: 16px;
    line-height: 1.95;
    color: #1e293b;
}

.news-article-content h2,
.news-article-content h3,
.news-article-content h4 {
    color: #0f172a;
}

.news-side-panel {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 88px;
}

.news-side-card {
    padding: 22px;
}

.news-side-card h3 {
    margin: 0 0 16px;
    font-size: 18px;
}

.news-side-stats {
    display: grid;
    gap: 14px;
}

.news-side-stats div {
    padding: 14px 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.news-side-stats span {
    display: block;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 12px;
}

.news-side-stats strong {
    display: block;
    font-size: 15px;
    line-height: 1.5;
    color: #0f172a;
}

.news-side-links {
    display: grid;
    gap: 12px;
}

.news-side-links a {
    padding: 13px 14px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-weight: 700;
}

.news-related-card {
    margin-top: 22px;
}

.news-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.news-mini-card {
    display: block;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.news-mini-card span {
    display: block;
    margin-bottom: 10px;
    color: #94a3b8;
    font-size: 12px;
}

.news-mini-card strong {
    display: block;
    font-size: 17px;
    line-height: 1.5;
}

.news-mini-card p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.8;
}

.seo-content-card {
    margin-top: 18px;
    padding: 22px 24px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(234, 223, 209, 0.92);
    box-shadow: var(--shadow);
}

.seo-copy {
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.seo-copy p {
    margin: 0;
}

.seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.seo-link-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff8f2;
    border: 1px solid #f3dccf;
    color: #b25633;
    font-size: 12px;
    font-weight: 800;
    transition: 0.2s ease;
}

.seo-link-chip:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 14px 28px rgba(21, 34, 43, 0.08);
}

.seo-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.seo-faq-item {
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #ece3d8;
}

.seo-faq-item h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.3;
}

.seo-faq-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

@media (max-width: 720px) {
    .header-link {
        display: none;
    }

    .order-query-fields,
    .query-guide-grid,
    .order-record-card__grid {
        grid-template-columns: 1fr;
    }

    .order-record-card__head,
    .order-query-actions,
    .order-record-card__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .order-state {
        width: 100%;
    }

    .pay-modal {
        padding: 14px;
    }

    .pay-modal__dialog {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .pay-modal__summary {
        grid-template-columns: 1fr;
    }

    .pay-modal__actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .pay-modal__actions .btn {
        width: 100%;
    }

    .news-card,
    .news-detail-hero,
    .news-detail-layout,
    .news-mini-grid {
        grid-template-columns: 1fr;
    }

    .news-detail-hero__media {
        min-height: 220px;
    }

    .news-side-panel {
        position: static;
    }

    .seo-content-card {
        padding: 18px;
    }

    .seo-faq-grid {
        grid-template-columns: 1fr;
    }
}
