html, body {
    margin: 0;
    padding: 0;
    background: #dcdcdc;
    color: #222;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 12px;
}

.top-notice {
    background: var(--live-top-notice-bg, #74240b);
    color: #f8e2d9;
    font-size: 12px;
}

.top-notice__inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 0;
}

#header {
    background: var(--live-header-main-bg, #fff);
}

.utility-bar {
    background: var(--live-utility-bg, #f5f5f5);
    border-bottom: 1px solid #e0e0e0;
}

.utility-grid {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    padding: 8px 0;
}

.utility-chip {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 12px;
}

.utility-label {
    font-weight: 700;
    color: #7b7b7b;
    text-transform: uppercase;
}

.utility-value {
    color: #444;
}

#header-main {
    padding: 14px 0;
}

.header-main__inner {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #d8e0ea;
    border-radius: 10px;
    background: #fff;
    color: #203145;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.mobile-nav-toggle__bars {
    display: inline-grid;
    gap: 4px;
}

.mobile-nav-toggle__bars span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
}

.mobile-nav-backdrop {
    display: none;
}

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

.brand__logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    background: #fff;
}

.brand__text {
    display: grid;
    gap: 4px;
}

.brand__text strong {
    font-size: 16px;
    line-height: 1.2;
    color: #213045;
}

.brand__text small {
    color: #757575;
    font-size: 12px;
}

.header-main__meta {
    display: grid;
    gap: 10px;
}

.search-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.search-box__input {
    height: 38px;
    padding: 0 14px;
    border: 1px solid #d7d7d7;
    border-radius: 2px;
    font-size: 13px;
    min-width: 0;
}

.search-box__button {
    height: 38px;
    padding: 0 18px;
    border: 0;
    border-radius: 20px;
    background: #f2ae13;
    color: #6d4100;
    font-weight: 700;
    cursor: pointer;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.header-link,
.cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
}

.header-link {
    background: #f2ae13;
    color: #6d4100;
}

.cart-link {
    background: #c54a43;
    color: #fff;
}

.header-contact {
    color: #666;
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}

.header-inline-form {
    margin: 0;
}

.header-inline-form button {
    border: 0;
    cursor: pointer;
}

.header-link--ghost {
    background: #e5e5e5;
    color: #555;
}

.flash-banner {
    padding: 10px 0;
    font-size: 13px;
    font-weight: 700;
}

.flash-banner--success {
    background: #dff2e1;
    color: #1c6a2a;
}

.flash-banner--error {
    background: #f8e1e1;
    color: #9c1d1d;
}

body.cart-modal-open {
    overflow: hidden;
}

.cart-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
}

.cart-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.54);
}

.cart-modal__dialog {
    position: relative;
    width: min(560px, calc(100vw - 28px));
    margin: 5vh auto 0;
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 32px 90px rgba(15, 23, 42, 0.24);
}

.cart-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #f3f4f6;
    color: #111827;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.cart-modal__head {
    margin-bottom: 18px;
    padding-right: 44px;
}

.cart-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #0f766e;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-modal__head h2 {
    margin: 12px 0 8px;
    font-size: 28px;
    color: #111827;
}

.cart-modal__head p,
.cart-modal__summary-note {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.cart-modal__product {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid #e5edf5;
}

.cart-modal__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
}

.cart-modal__media img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.cart-modal__media span {
    padding: 12px;
    text-align: center;
    color: #6b7280;
}

.cart-modal__product-info {
    display: grid;
    gap: 8px;
    align-content: center;
}

.cart-modal__product-info strong {
    color: #111827;
    font-size: 17px;
    line-height: 1.5;
}

.cart-modal__product-info span {
    color: #4b5563;
}

.cart-modal__price {
    margin-top: 4px;
    font-size: 24px !important;
}

.cart-modal__summary {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 24px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.cart-modal__summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #7c2d12;
}

.cart-modal__summary-row strong {
    color: #111827;
}

.cart-modal__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.cart-modal__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 0;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.cart-modal__button--ghost {
    background: #eef2f7;
    color: #1f2937;
}

.cart-modal__button--primary {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: #fff;
}

#header-bottom {
    background: var(--live-header-bottom-bg, #0d1f45);
}

.main-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-width: 0;
}

.main-menu__item {
    padding: 14px 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.main-menu__item:hover,
.catalog-tabs__button.is-active {
    background: #2e77d0;
}

.top-stage {
    padding: 14px 0 0;
}

.top-stage__slider,
.top-stage__single,
.hero-banner,
.product-card,
.layout-card,
.footer-card {
    background: #fff;
}

.top-stage__slider {
    position: relative;
    overflow: hidden;
}

.top-stage__slide {
    display: none;
}

.top-stage__slide.is-active {
    display: block;
}

.top-stage__image {
    display: block;
}

.top-stage__image img,
.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-banner {
    min-height: 250px;
    overflow: hidden;
}

.hero-banner__fallback {
    min-height: 250px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #0f0f0f, #8a1b14);
    color: #fff;
}

.hero-banner__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #f0c36b;
}

.hero-banner__fallback h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
}

.hero-banner__fallback p {
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.hero-banner__actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.hero-banner__button {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    background: #f0ad00;
    color: #1b1b1b;
    font-weight: 700;
    text-decoration: none;
}

.hero-banner__button--ghost {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.top-stage__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(13, 31, 69, 0.78);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.top-stage__nav--prev {
    left: 14px;
}

.top-stage__nav--next {
    right: 14px;
}

.top-stage__dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.top-stage__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.top-stage__dot.is-active {
    background: #f2ae13;
}

.catalog-section,
.top-column-banner,
.layout-section,
.home-bottom-section {
    padding: 14px 0 0;
}

.catalog-layout {
    display: block;
}

.catalog-layout--with-sidebar {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.catalog-sidebar {
    min-width: 0;
}

.catalog-tabs {
    min-width: 0;
}

.catalog-mobile-tools {
    display: none;
    margin-bottom: 12px;
}

.catalog-mobile-tools__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #d8e1ed;
    border-radius: 999px;
    background: #f7faff;
    color: #26476a;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.category-box {
    background: #fff;
    border: 1px solid #d9d9d9;
}

.category-box__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: #f2f2f2;
}

.category-box h2 {
    margin: 0;
    color: #28364d;
    font-size: 14px;
    text-transform: uppercase;
}

.category-box__close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #32465e;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.category-box__body {
    display: block;
}

.category-box__list {
    margin: 0;
    padding: 8px 0;
    list-style: none;
}

.category-box__list li + li,
.category-box__sublist li + li {
    border-top: 1px solid #efefef;
}

.category-box__row {
    display: flex;
    align-items: stretch;
}

.category-box__list a,
.category-box__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #333;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    flex: 1 1 auto;
}

.category-box__list a:hover,
.category-box__link:hover {
    background: #f7faff;
    color: #2e77d0;
}

.category-box__list small {
    color: #aab2bd;
    font-size: 13px;
    line-height: 1;
}

.category-box__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    padding: 0;
    border: 0;
    border-left: 1px solid #efefef;
    background: #fff;
    color: #7c8794;
    cursor: pointer;
}

.category-box__toggle span {
    display: inline-block;
    transition: transform 160ms ease;
}

.category-box__list li.is-open > .category-box__row .category-box__toggle span {
    transform: rotate(90deg);
}

.category-box__subtitle {
    margin: -4px 14px 8px;
    color: #8692a0;
    font-size: 11px;
}

.category-box__sublist {
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fafafa;
}

.category-box__sublist a {
    padding-left: 24px;
    font-weight: 400;
}

.category-box__sublist .category-box__sublist a {
    padding-left: 34px;
}

.category-box__html {
    padding: 10px 14px 14px;
    color: #555;
    font-size: 12px;
    line-height: 1.5;
}

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

.promo-card {
    min-height: 140px;
    overflow: hidden;
}

.catalog-tabs {
    background: #fff;
    padding: 18px;
}

.catalog-tabs__nav {
    display: flex;
    gap: 2px;
    align-items: center;
    margin-bottom: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.catalog-tabs__button {
    padding: 10px 14px;
    border: 0;
    background: #f1f1f1;
    color: #333;
    font-size: 12px;
    cursor: pointer;
    flex: 0 0 auto;
    white-space: nowrap;
}

.catalog-panel {
    display: none;
}

.catalog-panel.is-active {
    display: block;
}

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

.product-card {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.product-card__media {
    display: block;
    position: relative;
    aspect-ratio: 1 / 0.78;
    overflow: hidden;
    background: #fff;
}

.product-badges {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 0 0 10px;
    pointer-events: none;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0 8px;
    border-radius: 2px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(12, 24, 43, 0.14);
}

.product-badge--discount {
    background: #e74c3c;
}

.product-badge--sale {
    background: #111;
}

.product-badge--new {
    background: #5cb85c;
}

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

.product-card__placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 16px;
    font-size: 12px;
    text-align: center;
    color: #666;
}

.product-card__body {
    display: grid;
    gap: 8px;
    padding: 10px 10px 14px;
}

.product-card__body h3 {
    margin: 0;
    min-height: 50px;
    font-size: 12px;
    line-height: 1.35;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.product-card__body h3 a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-card__stock {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
}

.product-card__stock.is-ready {
    color: #30a435;
}

.product-card__stock.is-empty {
    color: #c73b2a;
}

.product-card__price {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.product-card__price strong {
    color: #d14444;
    font-size: 14px;
}

.product-card__price span {
    color: #9b9b9b;
    font-size: 11px;
    text-decoration: line-through;
}

.product-card__price-flag,
.product-detail__price-flag {
    display: inline-flex;
    align-items: center;
    min-height: 19px;
    padding: 0 6px;
    border-radius: 2px;
    background: #d9534f;
    color: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 12px;
    background: #f0a800;
    color: #111;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border: 0;
    border-radius: 8px;
}

.section-heading h2 {
    margin: 0 0 8px;
    font-size: 24px;
    color: #24334b;
}

.section-heading p {
    margin: 0;
    color: #667;
}

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

.home-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.home-bottom-card {
    background: transparent;
}

.home-bottom-card__head {
    margin-bottom: 12px;
    padding: 10px 12px;
    background: #2f2f2f;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.home-bottom-card__head--link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-bottom-card__head--link a {
    color: #fff1b7;
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
}

.blog-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.blog-teaser {
    background: #fff;
    padding: 12px;
}

.blog-teaser__image {
    display: block;
    margin-bottom: 10px;
    background: #f5f5f5;
}

.blog-teaser__image img {
    width: 100%;
    height: 92px;
    object-fit: cover;
}

.blog-teaser__body h3 {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 1.4;
    text-transform: uppercase;
}

.blog-teaser__body p {
    margin: 0;
    color: #666;
    font-size: 11px;
    line-height: 1.5;
}

.blog-page .blog-listing {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
}

.blog-page .blog-index-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.blog-page .blog-index-nav__summary {
    display: grid;
    gap: 2px;
}

.blog-page .blog-index-nav__summary strong {
    color: #132238;
    font-size: 16px;
    line-height: 1.2;
}

.blog-page .blog-index-nav__summary span {
    color: #6b7280;
    font-size: 12px;
}

.blog-page .blog-card,
.blog-page .blog-article,
.blog-page .blog-side-card {
    background: #fff;
    border: 1px solid #e5e7eb;
}

.blog-page .blog-card {
    display: grid;
    grid-template-columns: 176px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 18px;
}

.blog-page .blog-card__thumb,
.blog-page .blog-article__hero {
    display: block;
    background: #f3f4f6;
}

.blog-page .blog-card__thumb,
.blog-page .blog-card__thumb img,
.blog-page .blog-article__hero img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.blog-page .blog-card__thumb {
    height: 126px;
    overflow: hidden;
}

.blog-page .blog-card__thumb img {
    height: 126px;
}

.blog-page .blog-card__thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf2f7;
    color: #607086;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-page .blog-card__body {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.blog-page .blog-card__meta,
.blog-page .blog-side-item__body p {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    color: #6b7280;
    font-size: 12px;
}

.blog-page .blog-card h2,
.blog-page .blog-side-card h2 {
    margin: 0;
    color: #132238;
    line-height: 1.35;
}

.blog-page .blog-card h2 {
    font-size: 22px;
}

.blog-page .blog-card h2 a,
.blog-page .blog-side-item__body h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-page .blog-card__body p,
.blog-page .blog-side-card__empty {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

.blog-page .blog-card__excerpt {
    max-width: 72ch;
}

.blog-page .blog-card__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-page .blog-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    background: #f6b80f;
    color: #6f4300;
    font-weight: 700;
    text-decoration: none;
    justify-self: start;
}

.blog-page .page-head--blog .page-head__split {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.blog-page .blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: start;
}

.blog-page .blog-article__content {
    padding: 24px;
    color: #273444;
    line-height: 1.8;
}

.blog-page .blog-article__content > *:first-child {
    margin-top: 0;
}

.blog-page .blog-article__content > *:last-child {
    margin-bottom: 0;
}

.blog-page .blog-article__content h2,
.blog-page .blog-article__content h3,
.blog-page .blog-article__content h4 {
    color: #132238;
    line-height: 1.4;
}

.blog-page .blog-article__content img {
    max-width: 100%;
    height: auto;
}

.blog-page .blog-side-card {
    padding: 18px;
}

.blog-page .blog-side-list {
    display: grid;
    gap: 14px;
}

.blog-page .blog-side-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
}

.blog-page .blog-side-item__image {
    display: block;
    background: #f3f4f6;
}

.blog-page .blog-side-item__image img {
    width: 100%;
    height: 88px;
    display: block;
    object-fit: cover;
}

.blog-page .blog-side-item__body {
    display: grid;
    gap: 6px;
    align-content: start;
}

.blog-page .blog-side-item__body h3 {
    margin: 0;
    color: #132238;
    font-size: 15px;
    line-height: 1.45;
}

.testimonial-box {
    min-height: 190px;
    background: #fff;
    padding: 18px;
}

@media (max-width: 960px) {
    .blog-page .page-head--blog .page-head__split,
    .blog-page .blog-article-layout {
        display: grid;
        grid-template-columns: 1fr;
    }

    .storefront-cms__hero,
    .storefront-cms__layout,
    .storefront-cms__list--cards {
        grid-template-columns: 1fr;
    }

    .blog-page .blog-index-nav,
    .blog-page .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-page .blog-card {
        gap: 14px;
    }

    .blog-page .blog-card__thumb,
    .blog-page .blog-card__thumb img {
        height: 180px;
    }
}

@media (max-width: 640px) {
    .storefront-cms__hero {
        padding: 18px 16px;
    }

    .storefront-cms__article-head,
    .storefront-cms__content,
    .storefront-cms__panel,
    .storefront-cms__card {
        padding: 16px;
    }

    .storefront-cms__hero-main h1,
    .storefront-cms__card h2 {
        font-size: 17px;
    }

    .blog-page .blog-index-nav {
        padding: 12px 14px;
    }

    .blog-page .blog-card {
        padding: 14px;
    }

    .blog-page .blog-card__thumb,
    .blog-page .blog-card__thumb img {
        height: 140px;
    }

    .blog-page .blog-card h2 {
        font-size: 18px;
    }
}

.testimonial-box p {
    color: #7b7b7b;
}

.top-column-banner__content {
    background: #fff;
    padding: 0;
    overflow: hidden;
}

.top-column-banner__slider {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.top-column-banner__slide {
    display: none;
}

.top-column-banner__slide.is-active {
    display: block;
}

.top-column-banner__content p {
    margin: 0;
}

.top-column-banner__content img {
    width: 100%;
    height: auto;
}

.top-column-banner__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(13, 31, 69, 0.78);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.top-column-banner__nav--prev {
    left: 14px;
}

.top-column-banner__nav--next {
    right: 14px;
}

.top-column-banner__dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.top-column-banner__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.top-column-banner__dot.is-active {
    background: #f2ae13;
}

.layout-card,
.footer-card {
    padding: 18px;
}

.inner-page {
    padding: 18px 0 0;
}

.page-head {
    background: #fff;
    padding: 20px;
    margin-bottom: 14px;
}

.page-head h1 {
    margin: 6px 0 0;
    font-size: 22px;
    line-height: 1.3;
    color: #1f2d3d;
}

.page-breadcrumb,
.page-head__meta {
    margin: 0;
    color: #7b7b7b;
    font-size: 13px;
}

.storefront-cms {
    padding-bottom: 22px;
}

.storefront-cms__hero,
.storefront-cms__article,
.storefront-cms__panel,
.storefront-cms__card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.storefront-cms__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) 280px;
    gap: 22px;
    margin-bottom: 18px;
    padding: 24px 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.storefront-cms__hero-main h1 {
    margin: 8px 0 10px;
    color: #132238;
    font-size: 34px;
    line-height: 1.2;
}

.storefront-cms__hero-main .page-head__meta {
    max-width: 70ch;
    color: #5f6b7a;
    font-size: 14px;
    line-height: 1.8;
}

.storefront-cms__hero-side {
    display: grid;
    gap: 14px;
    align-content: start;
}

.storefront-cms__hero-stat {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border: 1px solid #dbe6f0;
    border-radius: 8px;
    background: #f8fbff;
}

.storefront-cms__hero-stat strong {
    color: #132238;
    font-size: 24px;
    line-height: 1.2;
}

.storefront-cms__hero-stat span {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.storefront-cms__hero-actions {
    display: grid;
    gap: 10px;
}

.storefront-cms__hero-actions .product-card__link {
    width: 100%;
    min-height: 38px;
}

.storefront-cms__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 18px;
    align-items: start;
}

.storefront-cms__article {
    padding: 0;
    overflow: hidden;
}

.storefront-cms__article-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid #e5e7eb;
    background: #f8fafc;
}

.storefront-cms__article-head strong {
    color: #132238;
    font-size: 16px;
}

.storefront-cms__article-head span {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.storefront-cms__content {
    padding: 24px 22px 26px;
    color: #334155;
    font-size: 14px;
    line-height: 1.85;
}

.storefront-cms__content > *:first-child {
    margin-top: 0;
}

.storefront-cms__content > *:last-child {
    margin-bottom: 0;
}

.storefront-cms__content h1,
.storefront-cms__content h2,
.storefront-cms__content h3,
.storefront-cms__content h4,
.storefront-cms__content h5,
.storefront-cms__content h6 {
    margin: 0 0 12px;
    color: #132238;
    line-height: 1.4;
}

.storefront-cms__content p,
.storefront-cms__content ul,
.storefront-cms__content ol,
.storefront-cms__content table,
.storefront-cms__content blockquote {
    margin: 0 0 14px;
}

.storefront-cms__content ul,
.storefront-cms__content ol {
    padding-left: 22px;
}

.storefront-cms__content a {
    color: #1d4ed8;
    text-decoration: underline;
}

.storefront-cms__content img {
    max-width: 100%;
    height: auto;
}

.storefront-cms__sidebar {
    display: grid;
    gap: 14px;
}

.storefront-cms__panel {
    padding: 18px;
}

.storefront-cms__panel-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.storefront-cms__panel-head h2 {
    margin: 0;
    color: #132238;
    font-size: 16px;
    line-height: 1.35;
}

.storefront-cms__panel-head span {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.storefront-cms__nav-list,
.storefront-cms__action-list {
    display: grid;
    gap: 10px;
}

.storefront-cms__nav-item,
.storefront-cms__action-link {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    color: #1f2d3d;
}

.storefront-cms__nav-item strong,
.storefront-cms__action-link {
    font-size: 13px;
    font-weight: 700;
}

.storefront-cms__nav-item span {
    color: #64748b;
    font-size: 12px;
    line-height: 1.65;
}

.storefront-cms__list {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}

.storefront-cms__list--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.storefront-cms__card {
    display: grid;
    gap: 16px;
    align-content: space-between;
    padding: 20px;
}

.storefront-cms__card-body {
    display: grid;
    gap: 10px;
}

.storefront-cms__card-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: #2953a6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.storefront-cms__card h2 {
    margin: 0;
    color: #132238;
    font-size: 22px;
    line-height: 1.35;
}

.storefront-cms__card h2 a {
    color: inherit;
}

.storefront-cms__card-summary {
    margin: 0;
    color: #526070;
    font-size: 13px;
    line-height: 1.75;
}

.storefront-cms__card-actions {
    display: flex;
    justify-content: flex-start;
}

.storefront-cms__card-actions .product-card__link {
    min-width: 150px;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.chip {
    background: #fff;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
}

.chip.is-active {
    background: #f2ae13;
    color: #5d3700;
}

.product-grid--listing {
    margin-bottom: 18px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.product-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    margin-top: 10px;
}

.product-card__actions form {
    margin: 0;
    display: block;
    width: 100%;
}

.product-card__actions--icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: 10px;
}

.product-card__actions--icon form {
    display: flex;
    margin: 0;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    background: #ececec;
    color: #555;
    font-size: 12px;
    font-weight: 700;
    border: 0;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.product-card__link--danger {
    background: #f4d7d7;
    color: #a02f2f;
}

.product-card__link--buy {
    background: #f6b80f;
    color: #6f4300;
}

.product-card__actions > .product-card__link,
.product-card__actions form > .product-card__link {
    width: 100%;
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid #d9e2ec;
    box-sizing: border-box;
    white-space: nowrap;
    line-height: 1.1;
}

.product-card__actions > .product-card__link {
    background: #f4f5f7;
    color: #425466;
}

.product-card__actions form > .product-card__link--buy {
    border-color: #e2ab0d;
    background: #f6b80f;
    color: #6f4300;
}

.product-card__icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #d9e3ee;
    border-radius: 8px;
    background: #f8fafc;
    color: #42556d;
    text-decoration: none;
    cursor: pointer;
    transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background 140ms ease, color 140ms ease;
}

.product-card__icon-button svg {
    width: 18px;
    height: 18px;
}

.product-card__icon-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.product-card__icon-button--view:hover,
.product-card__icon-button--view:focus {
    border-color: #cbd9ea;
    background: #eef4fb;
    color: #29496d;
}

.product-card__icon-button--cart {
    border-color: #f0b11f;
    background: linear-gradient(135deg, #f7b500, #ee9500);
    color: #2d2200;
}

.product-card__icon-button--cart:hover,
.product-card__icon-button--cart:focus {
    border-color: #e39a00;
    background: linear-gradient(135deg, #ffbf17, #f39c12);
    color: #241b00;
}

.pagination-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 14px 18px;
    margin-bottom: 14px;
}

.pagination-link {
    font-weight: 700;
    color: #2e77d0;
}

.empty-state,
.auth-card {
    background: #fff;
    padding: 24px;
}

.empty-state h2,
.auth-card h1,
.related-section h2 {
    margin-top: 0;
}

.auth-card {
    max-width: 560px;
    margin: 0 auto;
}

.auth-form {
    display: grid;
    gap: 14px;
}

.form-section-title {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ededed;
    font-size: 15px;
    font-weight: 700;
    color: #1f2d3d;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.auth-form label,
.purchase-form label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #555;
}

.auth-form input,
.purchase-form input,
.cart-qty-form input,
.auth-form textarea,
.auth-form select {
    height: 40px;
    padding: 0 12px;
    border: 1px solid #d7d7d7;
    font-size: 14px;
}

.auth-form textarea {
    height: auto;
    padding: 12px;
}

.checkbox-line {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.checkbox-line input {
    height: auto;
}

.auth-note {
    margin-bottom: 0;
    margin-top: 16px;
    color: #666;
    font-size: 13px;
}

.auth-note--highlight {
    margin-top: 0;
    margin-bottom: 16px;
    padding: 12px 14px;
    background: #f8f0d7;
    color: #7a5a00;
    font-weight: 700;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    background: #fff;
    width: 100%;
    padding: 20px;
    margin-bottom: 18px;
    box-sizing: border-box;
}

.product-detail-main,
.product-detail-sidebar {
    min-width: 0;
}

.product-detail-mobile-tools {
    margin-bottom: 12px;
}

.product-detail__media {
    position: relative;
    width: min(100%, 380px);
    max-width: 100%;
    height: 380px;
    display: grid;
    place-items: center;
    padding: 18px;
    overflow: hidden;
    border: 1px solid #e3e7ee;
    background: #f7f7f7;
    justify-self: start;
    box-sizing: border-box;
}

.product-detail__info {
    min-width: 0;
    width: 100%;
    padding-left: 4px;
    display: grid;
    align-content: start;
}

.product-detail__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-detail__media .product-badges {
    padding: 16px 0 0 16px;
}

.product-detail__placeholder {
    padding: 30px;
    text-align: center;
    font-weight: 700;
}

.product-detail__stock {
    margin: 0 0 12px;
    font-weight: 700;
    font-size: 12px;
}

.product-detail__title {
    margin: 0 0 12px;
    color: #1f2d3d;
    font-size: 22px;
    line-height: 1.3;
}

.product-detail__meta {
    display: grid;
    gap: 4px;
    margin: 0 0 10px;
    color: #727b86;
    font-size: 11px;
    text-transform: uppercase;
}

.product-detail__meta-line {
    display: block;
    line-height: 1.35;
}

.product-detail__meta-line--condition {
    color: #7b8794;
}

.product-detail__reference {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 7px 10px;
    border-radius: 12px;
    background: #f4f6f8;
    color: #4f5d6b;
    font-size: 11px;
}

.product-detail__reference span {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-detail__reference strong {
    color: #1f2d3d;
    font-size: 12px;
    font-weight: 800;
}

.product-detail__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.product-detail__price strong {
    font-size: 24px;
    color: #1f2d3d;
}

.product-detail__price span {
    color: #888;
    text-decoration: line-through;
}

.product-detail__summary {
    margin: 14px 0 16px;
}

.product-detail__summary-card {
    padding: 14px 16px;
    border: 1px solid #d9dee6;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    color: #495261;
    font-size: 12px;
    line-height: 1.75;
    text-align: left;
}

.product-detail__summary-card--legacy {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #2f3640;
    font-size: 13px;
    line-height: 1.7;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.product-detail__summary-card--legacy p,
.product-detail__summary-card--legacy div {
    margin: 0 0 8px;
}

.product-detail__summary-card--legacy p:last-child,
.product-detail__summary-card--legacy div:last-child {
    margin-bottom: 0;
}

.product-detail__summary-card--legacy strong,
.product-detail__summary-card--legacy b {
    color: #15191f;
    font-size: 15px;
    line-height: 1.4;
}

@media (max-width: 1180px) {
    .product-detail {
        grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    }

    .product-detail__media {
        width: min(100%, 340px);
        max-width: 100%;
        height: 340px;
    }
}

.product-detail__promo-note,
.product-detail__qty-note {
    margin: 12px 0 0;
    color: #7a5a00;
    font-size: 12px;
    line-height: 1.55;
}

.product-detail__promo-note {
    padding: 10px 12px;
    background: #fff6d8;
    border: 1px solid #efd88d;
}

.product-more-info-section {
    margin: 24px 0 28px;
}

.product-more-info-card {
    border: 1px solid #d8dee8;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.product-more-info-tabs {
    display: flex;
    align-items: flex-end;
    padding: 16px 18px 0;
}

.product-more-info-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    border: 0;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(180deg, #f0c400 0%, #e0ae00 100%);
    color: #111827;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-more-info-panel {
    padding: 20px 22px 24px;
    background: transparent;
    border-top: 1px solid #e3e8ef;
    font-size: 13px;
}

.product-more-info-summary {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f5f8fb;
    color: #586273;
    font-size: 12px;
    line-height: 1.75;
    text-align: left;
}

.product-more-info-content {
    color: #3f4750;
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
}

.product-more-info-content h1,
.product-more-info-content h2,
.product-more-info-content h3,
.product-more-info-content h4,
.product-more-info-content h5,
.product-more-info-content h6 {
    margin: 0 0 12px;
    color: #1f2f46;
    font-size: 15px;
    line-height: 1.45;
    text-align: left !important;
}

.product-more-info-content p,
.product-more-info-content li,
.product-more-info-content div,
.product-more-info-content span {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: left !important;
}

.product-more-info-content p,
.product-more-info-content ul,
.product-more-info-content ol,
.product-more-info-content table,
.product-more-info-content blockquote {
    margin: 0 0 14px;
}

.product-more-info-content ul,
.product-more-info-content ol {
    padding-left: 20px;
}

.product-more-info-content table {
    width: 100%;
    border-collapse: collapse;
}

.product-more-info-content td,
.product-more-info-content th {
    padding: 8px 10px;
    border: 1px solid #e3e8ef;
    vertical-align: top;
    text-align: left !important;
}

.product-more-info-content img {
    max-width: 100%;
    height: auto;
}

.purchase-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: end;
}

.related-section {
    margin-bottom: 18px;
}

.cart-table {
    display: grid;
    gap: 14px;
}

.cart-table__head {
    display: grid;
    gap: 16px;
    align-items: center;
    padding: 0 18px;
    color: #6d7a8b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cart-table--selectable .cart-table__head,
.cart-table--selectable .cart-row {
    grid-template-columns: 76px minmax(0, 1.8fr) 140px 150px 150px 88px;
}

.cart-table--guest .cart-table__head,
.cart-table--guest .cart-row {
    grid-template-columns: minmax(0, 1.9fr) 140px 150px 150px 88px;
}

.cart-row,
.cart-summary {
    background: #fff;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid #e7edf5;
    box-shadow: 0 14px 30px rgba(17, 36, 62, 0.06);
}

.cart-row {
    display: grid;
    gap: 16px;
    align-items: center;
}

.cart-row__select {
    display: flex;
    justify-content: center;
}

.cart-select-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #5e6a7d;
}

.cart-select-box input {
    width: 18px;
    height: 18px;
}

.cart-row__product {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-width: 0;
}

.cart-row__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid #edf1f6;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.cart-row__image img {
    max-height: 78px;
    object-fit: contain;
}

.cart-row__product h2 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.45;
}

.cart-row__product-info {
    min-width: 0;
}

.cart-row__product-info p,
.cart-row__price,
.cart-row__subtotal {
    margin: 0;
    color: #5f6c7d;
    font-size: 13px;
}

.cart-row__meta-label {
    display: none;
    margin-bottom: 6px;
    color: #7a8596;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cart-row__price strong,
.cart-row__subtotal strong {
    display: block;
    color: #1f2d3d;
    font-size: 15px;
}

.cart-row__qty,
.cart-row__price,
.cart-row__subtotal,
.cart-row__remove {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cart-row__price,
.cart-row__subtotal {
    justify-content: center;
}

.cart-qty-control {
    display: flex;
    gap: 8px;
    align-items: center;
    width: fit-content;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid #dbe4ee;
    background: #f8fbff;
}

.cart-qty-control__form {
    margin: 0;
}

.cart-qty-control__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #0f2245;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.cart-qty-control__value {
    min-width: 36px;
    text-align: center;
    color: #1f2d3d;
    font-size: 16px;
    font-weight: 700;
}

.cart-summary {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-summary p {
    margin: 0;
    color: #586578;
}

.cart-summary strong {
    color: #1f2d3d;
}

.cart-checkout-bar {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.cart-checkout-bar__note {
    margin: 0;
    color: #5f6c7d;
    font-size: 13px;
}

.cart-checkout-bar--guest {
    justify-content: flex-start;
    gap: 10px;
}

.search-box__button--link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.search-box__button.is-disabled,
.search-box__button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.cart-gate-card {
    margin-top: 14px;
    background: #fff7dd;
    border: 1px solid #eddc9b;
    padding: 18px;
    border-radius: 18px;
}

.cart-gate-card p {
    margin: 0 0 8px;
}

.cart-stock-alert {
    background: #fbe5e5;
    border: 1px solid #efc2c2;
    color: #992727;
    padding: 14px 16px;
    margin-bottom: 14px;
}

.cart-stock-alert p {
    margin: 0 0 6px;
}

.cart-stock-alert p:last-child,
.member-order-card small {
    margin-bottom: 0;
}

.member-order-card small {
    display: block;
    margin-top: 4px;
    color: #777;
}

.account-summary p {
    margin: 8px 0;
}

.member-dashboard {
    display: grid;
    gap: 18px;
}

.page-head--member {
    margin-bottom: 18px;
    border-radius: 18px;
    border: 1px solid #e7edf5;
    box-shadow: 0 16px 40px rgba(17, 36, 62, 0.08);
}

.member-summary-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid #dce7f5;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fe 100%);
    box-shadow: 0 12px 28px rgba(17, 36, 62, 0.05);
}

.member-summary-strip__item {
    padding: 16px 18px;
    min-width: 0;
    display: grid;
    gap: 8px;
    align-content: center;
}

.member-summary-strip__item + .member-summary-strip__item {
    border-left: 1px solid #dce7f5;
}

.member-summary-strip__label,
.member-summary-strip__value {
    display: block;
}

.member-summary-strip__label {
    color: #718095;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.member-summary-strip__value {
    color: #0f2245;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
}

.member-summary-strip__value--money {
    display: grid;
    gap: 2px;
    align-content: start;
}

.member-summary-strip__value--money span:first-child {
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.member-summary-strip__value--money span:last-child {
    font-size: 22px;
    line-height: 1.15;
}

.member-dashboard--compact {
    gap: 16px;
}

.member-overview-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.member-overview-bar__item,
.member-empty-note,
.member-address-note,
.member-account-info {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #e6edf7;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 12px 28px rgba(17, 36, 62, 0.05);
}

.member-overview-bar__item span,
.member-overview-bar__item strong {
    display: block;
}

.member-overview-bar__item span {
    color: #748297;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.member-overview-bar__item strong {
    margin-top: 8px;
    color: #1f2d3d;
    font-size: 26px;
}

.member-account-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) 380px;
    gap: 20px;
    align-items: start;
}

.member-side-stack {
    display: grid;
    gap: 18px;
}

.member-panel--history {
    padding-bottom: 18px;
}

.member-history-list {
    display: grid;
    gap: 12px;
}

.member-history-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    color: inherit;
    text-decoration: none;
    border-top: 1px solid #edf1f6;
}

.member-history-list > .member-history-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.member-history-item__main {
    min-width: 0;
    display: grid;
    gap: 10px;
}

.member-history-item__identity,
.member-history-item__meta,
.member-history-item__side {
    display: flex;
}

.member-history-item__identity {
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    flex-wrap: wrap;
}

.member-history-item__identity strong {
    color: #1f2d3d;
    font-size: 16px;
}

.member-history-item__identity span,
.member-history-item__meta span,
.member-history-item__note,
.member-history-item__main p,
.member-account-info__row span,
.member-address-note span,
.member-address-note p {
    color: #677588;
}

.member-history-item__meta {
    gap: 10px;
    flex-wrap: wrap;
}

.member-history-item__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f2f6fb;
    font-size: 12px;
}

.member-history-item__main p,
.member-address-note p {
    margin: 0;
    line-height: 1.65;
}

.member-history-item__note {
    font-size: 12px;
}

.member-history-item__side {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.member-history-item__side strong {
    color: #0f2245;
    font-size: 18px;
}

.member-history-actions {
    margin-top: 16px;
}

.member-empty-note strong,
.member-address-note strong {
    display: block;
    color: #1f2d3d;
    margin-bottom: 6px;
}

.member-empty-note p,
.member-empty-note--tight p {
    margin: 0;
}

.member-empty-note--tight {
    padding: 16px 18px;
}

.member-account-info {
    display: grid;
    gap: 18px;
}

.member-account-info__row {
    display: grid;
    gap: 8px;
}

.member-account-info__row span {
    font-size: 13px;
}

.member-account-info__row strong {
    color: #1f2d3d;
    line-height: 1.45;
}

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

.member-inline-actions .product-card__link,
.member-inline-actions .search-box__button {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 16px;
    box-sizing: border-box;
}

.member-side-stack .member-panel {
    padding: 26px 22px;
}

.member-side-stack .member-panel__head {
    display: grid;
    justify-content: start;
    align-items: start;
    gap: 6px;
    margin-bottom: 18px;
}

.member-side-stack .member-panel__head h2 {
    margin: 0;
    line-height: 1.15;
}

.member-side-stack .member-panel__head span {
    display: block;
    line-height: 1.4;
}

.member-side-stack .member-account-info,
.member-side-stack .member-address-note,
.member-side-stack .member-empty-note--tight {
    padding: 20px;
}

.member-side-stack .member-address-note strong {
    margin-bottom: 8px;
    line-height: 1.4;
}

.member-side-stack .member-address-note span {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.member-side-stack .member-address-note p {
    line-height: 1.75;
}

.page-loading {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loading.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.page-loading__box {
    width: 100%;
    max-width: 360px;
    min-width: 0;
    padding: 22px 24px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    text-align: center;
}

.page-loading__spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    border: 4px solid #d7e4f5;
    border-top-color: #2e77d0;
    border-radius: 999px;
    animation: page-loading-spin 0.8s linear infinite;
}

.page-loading__box strong,
.page-loading__box span {
    display: block;
}

.page-loading__box strong {
    color: #1f2d3d;
}

.page-loading__box span {
    margin-top: 6px;
    color: #667588;
}

@keyframes page-loading-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.member-hero,
.member-panel {
    background: #fff;
    padding: 22px;
}

.member-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 320px;
    gap: 18px;
    align-items: center;
}

.member-hero h1,
.member-panel h2 {
    margin: 0 0 10px;
}

.member-hero__lead {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.member-hero__meta {
    background: #f5f7fb;
    padding: 16px;
}

.member-hero__meta p {
    margin: 0 0 8px;
}

.member-stats-grid,
.member-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

.member-stat-card,
.member-shortcut-card {
    background: #fff;
    padding: 18px;
}

.member-stat-card span,
.member-shortcut-card span {
    display: block;
}

.member-stat-card strong {
    display: block;
    margin: 8px 0 6px;
    font-size: 28px;
    color: #1f2d3d;
}

.member-stat-card small,
.member-shortcut-card span {
    color: #666;
    line-height: 1.5;
}

.member-shortcuts {
    display: grid;
    gap: 12px;
}

.member-shortcut-card strong {
    display: block;
    margin-bottom: 6px;
}

.member-panel__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.member-checklist {
    display: grid;
    gap: 10px;
    padding-left: 18px;
    list-style: disc;
}

.member-checklist li {
    color: #444;
}

.member-checklist .is-done {
    color: #1d6b36;
    font-weight: 700;
}

.member-orders {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

.member-order-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px 180px;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    background: #f6f6f6;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 360px;
    gap: 16px;
}

.checkout-form-card,
.checkout-summary-card,
.order-summary-card {
    background: #fff;
    padding: 20px;
}

.address-summary {
    margin-bottom: 18px;
    padding: 16px;
    background: #f5f7fb;
    border-left: 4px solid #2e77d0;
}

.address-summary h2 {
    margin: 0 0 10px;
    font-size: 18px;
}

.address-summary p {
    margin: 0 0 6px;
}

.checkout-summary-card h2,
.order-summary-card h2,
.order-summary-card h3 {
    margin-top: 0;
}

.checkout-items {
    display: grid;
    gap: 12px;
}

.shipping-option-list {
    display: grid;
    gap: 10px;
}

.payment-option-list,
.bank-account-list {
    display: grid;
    gap: 12px;
}

.payment-option-card,
.bank-account-card {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 16px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #d9e4f0;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.payment-option-card input,
.bank-account-card input {
    margin-top: 5px;
}

.payment-option-card__body,
.bank-account-card__body {
    display: grid;
    gap: 6px;
}

.payment-option-card strong,
.payment-option-card small,
.bank-account-card strong,
.bank-account-card span,
.bank-account-card small {
    display: block;
}

.payment-option-card small,
.bank-account-card small,
.bank-account-card span {
    color: #64748b;
}

.shipping-option-card {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) 140px;
    gap: 12px;
    align-items: start;
    padding: 14px;
    background: #f7f7f7;
    border: 1px solid #e1e1e1;
}

.shipping-option-card input {
    margin-top: 4px;
}

.shipping-option-card strong,
.shipping-option-card small {
    display: block;
}

.shipping-option-card small {
    margin-top: 4px;
    color: #666;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ededed;
}

.checkout-item small {
    display: block;
    margin-top: 6px;
    color: #777;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 16px;
    font-size: 16px;
}

.order-summary-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 18px;
    margin-bottom: 14px;
}

.cart-row--order {
    grid-template-columns: minmax(0, 1.5fr) 120px 140px 140px;
}

.cart-row__product--single {
    grid-template-columns: 1fr;
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(46, 119, 208, 0.12);
    color: #2e77d0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.page-head--checkout {
    background: linear-gradient(135deg, #ffffff 0%, #f5f8fd 100%);
    border: 1px solid #e7edf5;
}

.page-head__split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 18px;
    align-items: center;
}

.checkout-shell {
    display: grid;
    gap: 16px;
}

.checkout-badge-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.checkout-head-side {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.checkout-head-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.checkout-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #d8e4f3;
    color: #3d5576;
    font-size: 12px;
    font-weight: 700;
}

.member-dashboard {
    gap: 20px;
}

.member-hero,
.member-panel,
.checkout-form-card,
.checkout-summary-card,
.page-head--checkout {
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(17, 36, 62, 0.08);
}

.member-hero {
    grid-template-columns: minmax(0, 1.5fr) 320px;
    padding: 28px;
    background: linear-gradient(135deg, #0f2245 0%, #1f3f76 100%);
    color: #fff;
}

.member-hero__content {
    display: grid;
    gap: 14px;
}

.member-hero h1 {
    margin-bottom: 0;
    font-size: 34px;
    color: #fff;
}

.member-hero__lead {
    color: rgba(255, 255, 255, 0.84);
}

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

.member-hero__chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.member-hero__meta {
    display: grid;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
}

.member-hero__meta-card {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.member-hero__meta-card:last-child {
    border-bottom: 0;
}

.member-hero__meta-card span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.member-hero__meta-card strong {
    display: block;
    color: #fff;
    font-size: 16px;
}

.member-stats-grid {
    gap: 14px;
}

.member-stat-card {
    border-radius: 16px;
    border: 1px solid #eef2f7;
    box-shadow: 0 14px 32px rgba(17, 36, 62, 0.05);
}

.member-stat-card span {
    color: #6b7788;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.member-stat-card strong {
    margin: 10px 0 8px;
    font-size: 30px;
}

.member-panel {
    padding: 24px;
    border: 1px solid #eef2f7;
}

.member-panel__head {
    margin-bottom: 16px;
}

.member-panel__head h2 {
    margin-bottom: 4px;
}

.member-panel__head span {
    color: #7a8596;
    font-size: 13px;
}

.member-shortcut-card {
    padding: 18px 18px 16px;
    border-radius: 14px;
    border: 1px solid #edf1f6;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 12px 28px rgba(17, 36, 62, 0.05);
}

.member-shortcut-card strong {
    color: #1f2d3d;
}

.member-order-card {
    border-radius: 14px;
    border: 1px solid #edf1f6;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    box-shadow: 0 12px 28px rgba(17, 36, 62, 0.04);
}

.address-summary--member,
.address-summary--checkout {
    margin-bottom: 0;
    border-radius: 14px;
    border-left: 0;
    border: 1px solid #d8e4f3;
    background: linear-gradient(180deg, #f8fbff 0%, #f3f7fd 100%);
}

.checkout-grid {
    align-items: start;
    gap: 18px;
    grid-template-columns: minmax(0, 1.2fr) 420px;
}

.checkout-form-card {
    padding: 26px;
    border: 1px solid #eef2f7;
}

.checkout-summary-card {
    position: sticky;
    top: 18px;
    padding: 24px;
    border: 1px solid #eef2f7;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.checkout-summary-card__head {
    margin-bottom: 14px;
}

.checkout-summary-card__head h2 {
    margin: 6px 0 0;
}

.checkout-summary-pill {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #0f2245;
    color: #fff;
}

.checkout-summary-pill span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.76);
}

.checkout-summary-pill strong {
    font-size: 16px;
}

.checkout-summary-highlight {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #dbe6f4;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f6fd 100%);
}

.checkout-summary-highlight strong,
.checkout-summary-highlight span {
    display: block;
}

.checkout-summary-highlight span {
    margin-top: 6px;
    color: #5c6778;
    line-height: 1.6;
}

.checkout-summary-note {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #eef4fb;
    color: #556273;
    font-size: 13px;
    line-height: 1.6;
}

.checkout-summary-form {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e7edf5;
}

.checkout-summary-form textarea {
    min-height: 108px;
}

.checkout-section + .checkout-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #edf1f6;
}

.checkout-section__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
    margin-bottom: 16px;
}

.checkout-section__head h2 {
    margin: 6px 0 0;
    font-size: 22px;
    color: #1f2d3d;
}

.checkout-section__eyebrow {
    color: #7b8898;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.checkout-section__tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #edf4ff;
    color: #2e77d0;
    font-size: 12px;
    font-weight: 700;
}

.auth-form--checkout {
    gap: 0;
}

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

.checkout-form-grid__wide {
    grid-column: 1 / -1;
}

.auth-form--checkout label > span {
    display: block;
    margin-bottom: 2px;
    color: #596474;
}

.auth-form--checkout input,
.auth-form--checkout textarea,
.auth-form--checkout select {
    border-radius: 12px;
    border-color: #dbe4ee;
    background: #fbfcfe;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.auth-form--checkout input:focus,
.auth-form--checkout textarea:focus,
.auth-form--checkout select:focus {
    outline: none;
    border-color: #2e77d0;
    box-shadow: 0 0 0 4px rgba(46, 119, 208, 0.12);
}

.checkout-shipping-block {
    margin-top: 18px;
}

.checkout-bank-account-block {
    margin-top: 18px;
}

.checkout-shipping-block__head {
    margin-bottom: 12px;
}

.checkout-shipping-block__head strong,
.checkout-shipping-block__head small {
    display: block;
}

.checkout-shipping-block__head small {
    margin-top: 6px;
    color: #738092;
    line-height: 1.5;
}

.checkout-shipping-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.checkout-shipping-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f1f6fd;
    color: #45617f;
    font-size: 12px;
    font-weight: 600;
}

.shipping-option-card {
    grid-template-columns: 24px minmax(0, 1fr) 132px;
    padding: 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #dbe4ee;
    box-shadow: 0 10px 24px rgba(17, 36, 62, 0.04);
}

.shipping-option-card__body {
    min-width: 0;
}

.shipping-option-card__price {
    justify-self: end;
    font-size: 15px;
    font-weight: 700;
    color: #1f2d3d;
}

.payment-option-card.is-selected,
.bank-account-card.is-selected,
.shipping-option-card.is-selected {
    border-color: #2e77d0;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
    box-shadow: 0 12px 28px rgba(46, 119, 208, 0.12);
}

.bank-account-card__title,
.bank-account-card__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.bank-account-card__title strong {
    color: #111827;
}

.bank-account-card__meta strong {
    color: #1d4ed8;
    font-size: 15px;
}

.checkout-items {
    gap: 14px;
}

.checkout-item {
    padding: 14px 0;
    align-items: flex-start;
}

.checkout-item:first-child {
    padding-top: 0;
}

.checkout-item__product {
    min-width: 0;
    max-width: 250px;
}

.checkout-item__product strong {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: 0;
    word-break: break-word;
}

.checkout-item__product small {
    display: block;
    margin-top: 6px;
    color: #7b8694;
}

.checkout-item__subtotal {
    flex: 0 0 auto;
    padding-left: 12px;
    text-align: right;
    font-weight: 500;
    color: #334154;
}

.checkout-total-list {
    margin-top: 18px;
    padding-top: 6px;
    border-top: 1px solid #e7edf5;
}

.checkout-total strong {
    color: #1f2d3d;
}

.checkout-total--grand {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #d9e5f3;
}

.checkout-total--grand span {
    color: #25496f;
    font-weight: 700;
}

.checkout-total--grand strong {
    font-size: 21px;
    color: #0f2245;
}

.checkout-submit-bar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f2245 0%, #17335f 100%);
    color: #fff;
}

.checkout-submit-bar--summary {
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
}

.checkout-submit-bar--summary .search-box__button {
    width: 100%;
}

.checkout-submit-bar strong,
.checkout-submit-bar small {
    display: block;
}

.checkout-submit-bar small {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
}

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

.checkout-trust-card {
    padding: 18px 18px 16px;
    border-radius: 16px;
    border: 1px solid #e6edf7;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    box-shadow: 0 14px 30px rgba(17, 36, 62, 0.05);
}

.checkout-trust-card strong,
.checkout-trust-card span {
    display: block;
}

.checkout-trust-card span {
    margin-top: 8px;
    color: #627083;
    font-size: 13px;
    line-height: 1.65;
}

.member-action-banner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f5f9ff 0%, #edf4ff 100%);
    border: 1px solid #deebfb;
}

.member-action-banner strong,
.member-action-banner p,
.member-action-banner__eyebrow {
    display: block;
}

.member-action-banner__eyebrow {
    color: #2e77d0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-action-banner strong {
    margin-top: 6px;
    font-size: 20px;
    color: #1f2d3d;
}

.member-action-banner p {
    margin: 8px 0 0;
    color: #617082;
    line-height: 1.65;
}

.member-action-banner__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.member-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.member-detail-card {
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #edf1f6;
}

.member-detail-card span,
.member-detail-card strong {
    display: block;
}

.member-detail-card span {
    color: #7b8898;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.member-detail-card strong {
    margin-top: 8px;
    color: #1f2d3d;
    font-size: 16px;
}

.member-profile-card {
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid #e4edf8;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 14px 30px rgba(17, 36, 62, 0.05);
}

.member-profile-card__identity {
    display: flex;
    gap: 16px;
    align-items: center;
}

.member-profile-card__avatar {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f2245 0%, #2e77d0 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.member-profile-card__text strong,
.member-profile-card__text span,
.member-profile-card__text small {
    display: block;
}

.member-profile-card__text strong {
    font-size: 22px;
    color: #1f2d3d;
}

.member-profile-card__text span {
    margin-top: 4px;
    color: #556273;
}

.member-profile-card__text small {
    margin-top: 6px;
    color: #7b8898;
}

.member-profile-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.member-profile-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #edf4ff;
    color: #2e77d0;
    font-size: 12px;
    font-weight: 700;
}

.member-profile-card__footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.member-profile-note {
    padding: 14px 16px;
    border-radius: 14px;
    background: #f2f7fd;
    border: 1px solid #e2ebf6;
}

.member-profile-note span,
.member-profile-note strong {
    display: block;
}

.member-profile-note span {
    color: #7a8596;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.member-profile-note strong {
    margin-top: 8px;
    color: #1f2d3d;
    line-height: 1.5;
}

.member-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.member-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #dce7f5;
    background: #f7faff;
    color: #35506f;
    font-size: 13px;
    font-weight: 600;
}

.member-filter-chip strong {
    color: #0f2245;
}

.member-filter-chip.is-active {
    background: #0f2245;
    border-color: #0f2245;
    color: #fff;
}

.member-filter-chip.is-active strong {
    color: #fff;
}

.member-orders--page {
    gap: 14px;
}

.member-order-card--page,
.member-order-card--detail {
    display: grid;
    gap: 12px;
}

.member-order-card__note {
    color: #6d7a8b;
    font-size: 12px;
}

.order-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 360px;
    gap: 18px;
    align-items: start;
}

.order-detail-main,
.order-detail-side {
    display: grid;
    gap: 18px;
}

.order-detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.order-address-card {
    padding: 18px 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e6edf7;
}

.order-address-card p {
    margin: 0 0 8px;
    line-height: 1.65;
}

.payment-proof-card {
    display: grid;
    gap: 16px;
    padding: 20px;
    margin-bottom: 18px;
    border-radius: 18px;
    border: 1px solid #dfeaf8;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f7fd 100%);
}

.payment-proof-card__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.payment-proof-card__head strong {
    color: #1f2d3d;
}

.payment-proof-card__head span {
    color: #708094;
    font-size: 13px;
}

.member-order-card__main,
.member-order-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.member-order-card__meta {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #edf1f6;
    color: #5e6d80;
    font-size: 13px;
}

.member-status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.member-status-badge--pending {
    background: #fff4da;
    color: #946200;
}

.member-status-badge--paid {
    background: #e6f7ee;
    color: #1f7a45;
}

.member-status-badge--payment-review {
    background: #ebf3ff;
    color: #245cad;
}

.member-status-badge--cancelled,
.member-status-badge--canceled {
    background: #fdebec;
    color: #b63f46;
}

.member-status-badge--processing,
.member-status-badge--shipped,
.member-status-badge--completed {
    background: #ebf4ff;
    color: #2d6bc4;
}

.search-box__button--primary {
    min-width: 170px;
    background: #f2ae13;
    color: #5d3700;
    box-shadow: 0 12px 28px rgba(242, 174, 19, 0.32);
}

@media (max-width: 900px) {
    .product-detail,
    .cart-row,
    .checkout-grid,
    .order-summary-card,
    .member-order-card,
    .address-grid,
    .member-hero,
    .member-content-grid,
    .member-stats-grid,
    .shipping-option-card,
    .page-head__split,
    .checkout-form-grid,
    .checkout-trust-grid,
    .member-detail-grid,
    .order-detail-grid,
    .order-detail-meta-grid,
    .member-profile-card__footer {
        grid-template-columns: 1fr;
    }

    .product-detail {
        justify-items: center;
    }

    .product-detail__media {
        width: min(100%, 360px);
        height: min(100vw - 72px, 360px);
        min-height: 280px;
    }

    .cart-summary,
    .pagination-bar,
    .checkout-submit-bar,
    .member-action-banner,
    .member-order-card__main,
    .member-order-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-checkout-bar {
        align-items: flex-start;
    }

    .payment-proof-card__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .member-profile-card__identity {
        align-items: flex-start;
    }

    .checkout-summary-card {
        position: static;
    }

    .checkout-badge-list {
        justify-content: flex-start;
    }

    .member-summary-strip,
    .member-overview-bar,
    .member-account-shell,
    .member-history-item {
        grid-template-columns: 1fr;
    }

    .member-history-item__side {
        align-items: flex-start;
    }

    .member-summary-strip__item,
    .member-overview-bar__item {
        padding: 16px;
    }

    .member-summary-strip {
        gap: 0;
    }

    .member-summary-strip__item + .member-summary-strip__item {
        border-left: 0;
        border-top: 1px solid #dce7f5;
    }

    .member-summary-strip__value {
        font-size: 24px;
    }

    .checkout-head-side,
    .checkout-head-actions {
        justify-items: start;
        justify-content: flex-start;
    }

    .member-side-stack .member-panel {
        padding: 22px 18px;
    }

    .member-side-stack .member-account-info,
    .member-side-stack .member-address-note,
    .member-side-stack .member-empty-note--tight {
        padding: 18px 16px;
    }

    .cart-table__head {
        display: none;
    }

    .cart-row {
        gap: 14px;
        padding: 18px;
    }

    .cart-table--selectable .cart-row,
    .cart-table--guest .cart-row {
        grid-template-columns: 1fr;
    }

    .cart-row__select {
        justify-content: flex-start;
    }

    .cart-select-box {
        flex-direction: row;
    }

    .cart-row__product {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 12px;
    }

    .cart-row__image {
        min-height: 76px;
    }

    .cart-row__image img {
        max-height: 64px;
    }

    .cart-row__price,
    .cart-row__qty,
    .cart-row__subtotal,
    .cart-row__remove {
        align-items: flex-start;
    }

    .cart-row__meta-label {
        display: block;
    }

    .cart-qty-control {
        padding: 5px;
    }

    .cart-qty-control__button {
        width: 34px;
        height: 34px;
    }
}

.layout-card {
    padding: 0;
    overflow: hidden;
}

.layout-card__image {
    display: block;
    background: #fff;
}

.layout-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.layout-card__body {
    padding: 16px 18px 18px;
}

.layout-card h3,
.footer-card h3 {
    margin: 0 0 6px;
    font-size: 13px;
}

.layout-card p,
.footer-card p {
    margin: 0;
    color: #5d6671;
    font-size: 12px;
    line-height: 1.5;
}

.footer-container {
    margin-top: 24px;
    padding: 30px 0 24px;
    background: #ececec;
    color: #222;
}

.footer-card {
    background: #262626;
}

.footer-card small {
    display: inline-block;
    margin-top: 10px;
    color: #8f98a3;
    font-size: 11px;
    letter-spacing: 0.08em;
}

.copyright {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    font-size: 12px;
    color: #666;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 1.25fr 0.95fr;
    gap: 24px;
    align-items: start;
}

.footer-top-panel {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e7e7e7;
}

.footer-panel h3,
.footer-mini-panel h3,
.newsletter-panel h3 {
    margin: 0 0 16px;
    color: #e62525;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-richtext,
.footer-richtext p,
.footer-richtext li,
.footer-links a,
.newsletter-panel p {
    color: #222;
    font-size: 13px;
    line-height: 1.75;
}

.footer-richtext p {
    margin: 0 0 12px;
}

.footer-richtext img {
    max-width: 100%;
    height: auto;
}

.footer-panel--about .footer-richtext {
    text-align: left;
}

.footer-panel--about .footer-richtext p {
    text-align: left;
}

.footer-panel--about .footer-richtext img {
    display: block;
    margin: 14px 0 0;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 8px;
}

.footer-links a {
    color: #1d4ed8;
    text-decoration: none;
}

.footer-links a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.footer-aside-stack {
    display: grid;
    gap: 18px;
}

.footer-mini-panel + .footer-mini-panel {
    margin-top: 6px;
}

.newsletter-panel {
    margin-top: 26px;
}

.newsletter-panel__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: end;
}

.newsletter-form {
    display: grid;
    gap: 8px;
}

.newsletter-form input {
    height: 38px;
    padding: 0 12px;
    border: 1px solid #d5d5d5;
    background: #fff;
    font-size: 13px;
}

.newsletter-form button {
    height: 38px;
    border: 0;
    background: #f0a000;
    color: #1f1f1f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .catalog-layout,
    .home-bottom-grid,
    .product-grid,
    .layout-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-main__inner {
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 16px;
    }

}

@media (max-width: 640px) {
    .top-notice {
        font-size: 11px;
    }

    .top-notice__inner {
        justify-content: flex-start;
        padding: 8px 0;
    }

    .top-notice__inner span:last-child {
        display: none;
    }

    .utility-grid {
        justify-content: flex-start;
        gap: 10px;
        padding: 8px 0;
        overflow-x: auto;
        white-space: nowrap;
    }

    .utility-chip {
        flex: 0 0 auto;
        padding: 0 0 2px;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .header-main__inner {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px;
        align-items: start;
    }

    .brand {
        gap: 10px;
        min-width: 0;
    }

    .brand__logo {
        width: 54px;
        height: 54px;
    }

    .brand__text strong {
        font-size: 14px;
    }

    .brand__text small {
        font-size: 11px;
        line-height: 1.4;
    }

    .header-main__meta {
        grid-column: 1 / -1;
        width: 100%;
    }

    .search-box {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .search-box__button {
        padding: 0 14px;
        border-radius: 10px;
    }

    .header-actions {
        justify-content: flex-start;
        gap: 8px;
    }

    .header-link,
    .cart-link {
        min-height: 36px;
        padding: 0 12px;
        font-size: 11px;
    }

    #header-bottom {
        position: relative;
    }

    .main-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 0;
        position: fixed;
        top: 112px;
        left: 10px;
        right: 10px;
        z-index: 40;
        max-height: calc(100vh - 132px);
        overflow-y: auto;
        border-radius: 16px;
        background: var(--live-header-bottom-bg, #0d1f45);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    }

    body.mobile-nav-open .main-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 35;
        border: 0;
        background: rgba(11, 18, 32, 0.52);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 160ms ease, visibility 160ms ease;
    }

    body.mobile-nav-open .mobile-nav-backdrop {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .main-menu__item {
        padding: 12px 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-stage__grid,
    .hero-stage__side,
    .catalog-layout,
    .footer-columns,
    .newsletter-panel__inner,
    .home-bottom-grid,
    .blog-teaser-grid,
    .promo-grid,
    .layout-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .catalog-layout--with-sidebar {
        grid-template-columns: 1fr;
    }

    .catalog-mobile-tools {
        display: flex;
        position: sticky;
        top: 8px;
        z-index: 6;
        margin: 0 0 12px;
        padding-bottom: 4px;
    }

    .catalog-layout--with-sidebar .catalog-sidebar {
        position: fixed;
        top: 116px;
        left: 10px;
        z-index: 42;
        width: min(320px, calc(100vw - 20px));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    }

    body.mobile-category-open {
        overflow: hidden;
    }

    body.mobile-category-open .catalog-layout--with-sidebar .catalog-sidebar {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .category-box {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    }

    .category-box__close {
        display: inline-flex;
    }

    .category-box__body {
        max-height: calc(100vh - 188px);
        overflow-y: auto;
    }

    .mobile-category-backdrop {
        position: fixed;
        inset: 0;
        z-index: 41;
        display: block;
        border: 0;
        background: rgba(11, 18, 32, 0.52);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 160ms ease, visibility 160ms ease;
    }

    body.mobile-category-open .mobile-category-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .catalog-tabs {
        padding: 14px;
    }

    .chip-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 0 -14px 14px;
        padding: 0 14px 4px;
        scrollbar-width: thin;
    }

    .chip {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .category-box__toggle {
        display: inline-flex;
    }

    .category-box__list li.has-children > .category-box__sublist {
        display: none;
    }

    .category-box__list li.is-open > .category-box__sublist {
        display: block;
    }

    .catalog-tabs__nav {
        flex-direction: row;
        align-items: stretch;
        margin: 0 -14px 14px;
        padding: 0 14px 4px;
    }

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

    .product-card__media {
        aspect-ratio: 1 / 0.72;
    }

    .product-card__body {
        gap: 4px;
        padding: 6px 5px 7px;
    }

    .product-badges {
        padding: 8px 0 0 8px;
        gap: 5px;
    }

    .product-badge {
        min-height: 20px;
        padding: 0 7px;
        font-size: 9px;
    }

    .product-card__body h3 {
        min-height: 42px;
        font-size: 9px;
        line-height: 1.2;
        -webkit-line-clamp: 4;
    }

    .product-card__stock {
        font-size: 8.5px;
    }

    .product-card__price strong {
        font-size: 10px;
    }

    .product-card__price span {
        font-size: 8px;
    }

    .product-card__price-flag {
        min-height: 16px;
        padding: 0 5px;
        font-size: 8px;
    }

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

    .product-card__actions form {
        display: block;
        width: 100%;
    }

    .product-card__actions--icon {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .product-card__actions--icon form {
        display: flex;
    }

    .product-card__actions--icon .product-card__icon-button {
        width: 32px;
        height: 32px;
    }

    .product-card__actions--icon .product-card__icon-button svg {
        width: 16px;
        height: 16px;
    }

    .product-card__link,
    .product-card__cta {
        width: 100%;
        min-height: 28px;
        padding: 0 8px;
        font-size: 10px;
        border-radius: 6px;
        letter-spacing: 0;
        line-height: 1.1;
    }

    .home-bottom-card__head {
        font-size: 15px;
    }

    .page-head--member .page-head__split {
        grid-template-columns: 1fr;
    }

    .member-history-item {
        gap: 12px;
    }

    .member-history-item__identity {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-loading__box {
        min-width: 0;
        width: 100%;
        padding: 20px;
    }

    .product-more-info-card {
        border-radius: 16px;
    }

    .product-more-info-panel {
        padding: 16px 14px 18px;
    }

    .product-more-info-tab {
        min-height: 32px;
        padding: 0 12px;
        font-size: 11px;
    }

    .product-more-info-tabs {
        padding: 14px 14px 0;
    }

    .product-more-info-summary,
    .product-detail__summary-card {
        padding: 12px 13px;
        font-size: 11px;
        line-height: 1.7;
    }

    .testimonial-box {
        min-height: 0;
    }

    .newsletter-panel__inner,
    .copyright {
        grid-template-columns: 1fr;
    }

    .copyright {
        display: grid;
        gap: 6px;
    }
}

@media (max-width: 420px) {
    .container {
        padding: 0 10px;
    }

    .main-menu {
        top: 104px;
        left: 8px;
        right: 8px;
        max-height: calc(100vh - 118px);
    }

    .catalog-layout--with-sidebar .catalog-sidebar {
        top: 108px;
        left: 8px;
        width: calc(100vw - 16px);
    }

    .search-box {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .product-card__media {
        aspect-ratio: 1 / 0.7;
    }

    .product-card__body h3 {
        min-height: 40px;
        font-size: 9px;
        line-height: 1.2;
        -webkit-line-clamp: 4;
    }

    .product-card__stock {
        font-size: 8px;
    }

    .product-card__link,
    .product-card__cta {
        min-height: 26px;
        padding: 0 6px;
        font-size: 9px;
        line-height: 1.1;
    }

    .product-card__actions--icon .product-card__icon-button {
        width: 30px;
        height: 30px;
    }

    .product-card__actions--icon .product-card__icon-button svg {
        width: 15px;
        height: 15px;
    }


    .search-box__button {
        width: 100%;
    }

    .promo-card,
    .hero-banner,
    .side-banner {
        min-height: 0;
    }

    .hero-banner__fallback {
        min-height: 180px;
        padding: 18px;
    }

    .hero-banner__fallback h2 {
        font-size: 20px;
    }
}
