:root {
    --store-bg: #f2f2f0;
    --store-panel: #ffffff;
    --store-subtle: #f8f8f6;
    --store-emphasis: #ecece8;
    --store-line: rgba(22, 22, 22, 0.08);
    --store-line-strong: rgba(22, 22, 22, 0.14);
    --store-ink: #171717;
    --store-ink-secondary: #5f5f5f;
    --store-ink-light: #8b8b8b;
    --store-shadow: 0 14px 30px rgba(17, 17, 17, 0.05);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.6), transparent 36%),
        var(--store-bg);
    color: var(--store-ink);
}

body.store-body {
    font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

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

.store-shell {
    min-height: 100vh;
    padding-bottom: 92px;
}

.hero-card__eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--store-emphasis);
    color: var(--store-ink-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.store-header__title {
    margin-top: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.store-header__meta {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    color: var(--store-ink-secondary);
    font-size: 0.86rem;
    line-height: 1.5;
}

.store-header__meta a {
    text-decoration: none;
    border-bottom: 1px solid var(--store-line-strong);
}

.store-main {
    padding: 0 16px 20px;
}

.page-title {
    margin: 4px 0 6px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.page-subtitle {
    margin: 0;
    color: var(--store-ink-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

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

.home-actions .btn-chip {
    width: 100%;
}

.mobile-page {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-block,
.hero-card,
.list-card,
.filter-panel,
.catalog-card,
.order-card,
.checkout-card,
.account-summary-card {
    border-radius: 24px;
    border: 1px solid var(--store-line);
    background: var(--store-panel);
    box-shadow: var(--store-shadow);
}

.card-block,
.hero-card,
.list-card,
.filter-panel,
.order-card,
.checkout-card,
.account-summary-card {
    padding: 18px;
}

.card-block--tight {
    padding: 16px;
}

.hero-card {
    overflow: hidden;
    position: relative;
}

.hero-card--emphasis {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f6 100%);
}

.hero-card--compact {
    padding: 16px;
}

.hero-card__title {
    margin: 12px 0 10px;
    font-size: 1.58rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-card__text {
    margin: 0;
    color: var(--store-ink-secondary);
    line-height: 1.72;
    font-size: 0.94rem;
}

.hero-card__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-chip,
.btn-primary-soft,
.btn-ghost-soft,
.upload-shell__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-chip:hover,
.btn-primary-soft:hover,
.btn-ghost-soft:hover,
.upload-shell__button:hover {
    transform: translateY(-1px);
}

.btn-primary-soft,
.btn-chip--primary {
    background: var(--store-ink);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
}

.btn-ghost-soft,
.btn-chip--ghost,
.btn-chip {
    background: var(--store-subtle);
    color: var(--store-ink);
    border-color: var(--store-line);
}

.btn-chip--danger {
    background: #f8f5f5;
    color: #674848;
    border-color: rgba(103, 72, 72, 0.1);
}

.btn-block-soft {
    width: 100%;
}

.section-heading,
.section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.section-heading h2,
.section-title h2 {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
}

.section-heading p,
.section-title p {
    margin: 6px 0 0;
    color: var(--store-ink-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

.section-heading__link,
.section-title a {
    color: var(--store-ink);
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--store-line-strong);
}

.scroll-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.scroll-row::-webkit-scrollbar {
    display: none;
}

.mini-banner,
.product-card,
.category-chip,
.feature-card,
.account-menu-card {
    text-decoration: none;
}

.mini-banner,
.product-card,
.feature-card,
.account-menu-card {
    display: block;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid var(--store-line);
    background: var(--store-panel);
    box-shadow: var(--store-shadow);
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card__link {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    color: inherit;
    text-decoration: none;
}

.quick-add {
    position: static;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--store-line);
    background: #ffffff url("/images/icons/cart-plus.png") center/20px 20px no-repeat;
    box-shadow: 0 6px 14px rgba(17, 17, 17, 0.08);
    display: block;
    transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.quick-add:active {
    transform: scale(0.92);
    border-color: #1f1f1f;
    background-color: #f5f5f5;
}

.mini-banner__image,
.product-card__image,
.detail-hero__image,
.checkout-media__image,
.hero-media-thumb {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    background: var(--store-emphasis);
}

.mini-banner__image {
    aspect-ratio: 1.7 / 1;
}

.product-card__image,
.detail-hero__image {
    aspect-ratio: 1 / 1;
}

.checkout-media__image {
    width: 88px;
    height: 88px;
}

.hero-media-thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
}

.mini-banner__title,
.product-card__title,
.feature-card__title,
.account-menu-card__title,
.process-step__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.mini-banner__text,
.product-card__summary,
.feature-card__text,
.account-menu-card__text,
.process-step__text,
.muted,
.text-note {
    color: var(--store-ink-secondary);
    font-size: 0.88rem;
    line-height: 1.68;
}

.product-grid,
.feature-grid,
.order-grid,
.process-list,
.notice-list {
    display: grid;
    gap: 14px;
}

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

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

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

.feature-grid,
.order-grid,
.process-list,
.notice-list {
    grid-template-columns: 1fr;
}

.feature-card__head,
.product-card__head,
.account-menu-card__head,
.order-card__head,
.order-card__foot,
.checkout-summary,
.checkout-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.feature-card__foot,
.product-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    color: var(--store-ink-secondary);
    font-size: 0.84rem;
}

.meta-chip-row,
.tag-row,
.filter-chip-row,
.category-chip-row,
.order-status-row,
.hero-media-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-chip,
.tag,
.filter-chip,
.category-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--store-subtle);
    border: 1px solid var(--store-line);
    color: var(--store-ink-secondary);
    font-size: 0.84rem;
    text-decoration: none;
}

.filter-chip.is-active,
.category-chip.is-active {
    background: var(--store-ink);
    border-color: var(--store-ink);
    color: #ffffff;
}

.price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-top: auto;
    padding-top: 12px;
}

.price-row .quick-add {
    margin-left: auto;
    flex: 0 0 auto;
}

.price-row__prefix {
    color: var(--store-ink-light);
    font-size: 0.78rem;
}

.price-row__sale {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.price-row__market {
    color: var(--store-ink-light);
    font-size: 0.84rem;
    text-decoration: line-through;
}

.feature-card--category {
    padding: 16px 12px;
    display: grid;
    place-items: center;
    text-align: center;
}

.feature-card__title {
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.3;
}

.product-card__meta,
.detail-note {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.meta-line,
.checkout-line {
    font-size: 0.88rem;
    line-height: 1.6;
}

.meta-line span:first-child,
.kv-item__label {
    color: var(--store-ink-secondary);
}

.meta-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.stat-grid,
.info-grid,
.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

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

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

.stat-card,
.info-card,
.summary-card {
    padding: 14px;
    border-radius: 18px;
    background: var(--store-subtle);
    border: 1px solid var(--store-line);
}

.summary-tab {
    min-width: 0;
    padding: 10px 12px;
    border-radius: 16px;
    background: var(--store-subtle);
    border: 1px solid var(--store-line);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.summary-tab:hover {
    transform: translateY(-1px);
}

.summary-tab__label {
    color: var(--store-ink-secondary);
    font-size: 0.72rem;
}

.summary-tab__value {
    font-size: 0.96rem;
    font-weight: 700;
}

.summary-tab.is-active {
    background: #ffffff;
    border-color: rgba(20, 20, 20, 0.5);
    color: var(--store-ink);
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.summary-tab.is-active .summary-tab__label {
    color: var(--store-ink);
}

.order-status-row--inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
}

.btn-chip--compact {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.82rem;
    white-space: nowrap;
}

.stat-card__label,
.info-card__label,
.summary-card__label {
    color: var(--store-ink-secondary);
    font-size: 0.78rem;
}

.stat-card__value,
.info-card__value,
.summary-card__value {
    margin-top: 8px;
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.35;
}

.stat-card__note,
.info-card__note,
.summary-card__note {
    margin-top: 6px;
    color: var(--store-ink-light);
    font-size: 0.78rem;
    line-height: 1.5;
}

.entry-card {
    display: block;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid var(--store-line);
    background: var(--store-panel);
    box-shadow: var(--store-shadow);
    text-decoration: none;
}

.entry-card__label {
    color: var(--store-ink-secondary);
    font-size: 0.78rem;
}

.entry-card__value {
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
}

.entry-card__meta {
    margin-top: 8px;
    color: var(--store-ink-secondary);
    font-size: 0.82rem;
    line-height: 1.6;
}

.detail-hero {
    overflow: hidden;
}

.detail-hero__body {
    padding: 18px;
}

.hero-media-strip {
    padding: 0 18px 18px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
}

.hero-media-strip::-webkit-scrollbar {
    display: none;
}

.detail-grid {
    display: grid;
    gap: 16px;
}

.product-highlight-grid {
    display: grid;
    gap: 12px;
}

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

.kv-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--store-line-strong);
    line-height: 1.6;
    font-size: 0.9rem;
}

.kv-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.text-block {
    color: var(--store-ink-secondary);
    line-height: 1.8;
    font-size: 0.92rem;
    white-space: pre-line;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: flex-start;
}

.process-step__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--store-ink);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 700;
}

.notice-item {
    padding: 14px;
    border-radius: 18px;
    background: var(--store-subtle);
    border: 1px solid var(--store-line);
}

.notice-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.94rem;
}

.sticky-action {
    position: sticky;
    bottom: 92px;
    z-index: 10;
}

.filter-section {
    padding: 12px 0;
    border-bottom: 1px dashed var(--store-line-strong);
}

.filter-section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.filter-section__title {
    margin-bottom: 8px;
    color: var(--store-ink-secondary);
    font-size: 0.82rem;
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
    align-items: center;
}

.cart-item__body {
    display: grid;
    gap: 6px;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--store-subtle);
    border: 1px solid var(--store-line);
}

.cart-qty__form {
    margin: 0;
}

.cart-qty__btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--store-line);
    background: #ffffff;
    color: var(--store-ink);
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-qty__value {
    min-width: 28px;
    text-align: center;
    font-weight: 700;
}

.cart-summary {
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
}

.cart-summary strong {
    font-size: 1.2rem;
}

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

.checkout-media {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
}

.checkout-media__body {
    min-width: 0;
}

.checkout-media__title {
    margin-bottom: 6px;
}

.checkout-line {
    padding: 10px 0;
    border-bottom: 1px dashed var(--store-line-strong);
}

.checkout-line:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.summary-panel__total {
    font-size: 1.24rem;
    font-weight: 800;
}

.account-summary-card__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.account-summary-card__name {
    font-size: 1.14rem;
    font-weight: 800;
    line-height: 1.3;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--store-subtle);
    border: 1px solid var(--store-line);
    color: var(--store-ink);
    font-size: 0.8rem;
    font-weight: 700;
}

.status-pill--success {
    background: #f6f7f4;
}

.status-pill--warning {
    background: #f7f7f5;
}

.status-pill--danger {
    background: #faf5f5;
    color: #744d4d;
}

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

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

.form-section:last-child {
    margin-bottom: 0;
}

.form-section__title {
    margin: 0 0 6px;
    font-size: 0.98rem;
    font-weight: 700;
}

.form-section__desc {
    margin: 0 0 12px;
    color: var(--store-ink-secondary);
    font-size: 0.86rem;
    line-height: 1.65;
}

.auth-card .form-group {
    margin-bottom: 16px;
}

.auth-card label {
    margin-bottom: 8px;
    color: var(--store-ink-secondary);
    font-size: 0.86rem;
    font-weight: 600;
}

.form-control,
.custom-select {
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid var(--store-line-strong);
    background: #fbfbfa;
    box-shadow: none;
    color: var(--store-ink);
}

.form-control:focus,
.custom-select:focus {
    border-color: #bdbdb8;
    box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.04);
}

textarea.form-control {
    min-height: 124px;
    padding-top: 14px;
    resize: vertical;
}

.form-check {
    padding-left: 1.5rem;
}

.form-check-label {
    font-size: 0.86rem;
}

.help-block,
.invalid-feedback {
    display: block;
    margin-top: 6px;
    color: #875858;
    font-size: 0.78rem;
    line-height: 1.5;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.detail-action-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.inline-link {
    color: var(--store-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--store-line-strong);
}

.auth-links {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--store-ink-secondary);
    font-size: 0.86rem;
    line-height: 1.6;
}

.auth-links a {
    text-decoration: none;
    border-bottom: 1px solid var(--store-line-strong);
}

.upload-shell {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: -2px;
    margin-bottom: 6px;
}

.upload-shell__input {
    flex: 1 1 200px;
}

.upload-shell__button {
    background: var(--store-subtle);
    color: var(--store-ink);
    border-color: var(--store-line);
}

.upload-shell__preview a {
    color: var(--store-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--store-line-strong);
}

.upload-shell__hint,
.upload-shell__message {
    color: var(--store-ink-secondary);
    font-size: 0.82rem;
    line-height: 1.6;
}

.captcha-shell {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 12px;
    align-items: center;
}

.captcha-shell__image img {
    width: 100%;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--store-line);
}

.empty-state {
    padding: 18px;
    border-radius: 20px;
    background: var(--store-panel);
    border: 1px dashed var(--store-line-strong);
    color: var(--store-ink-secondary);
    text-align: center;
    line-height: 1.7;
}

.empty-state--compact {
    padding: 10px 0 0;
    background: transparent;
    border: 0;
    text-align: left;
}

.error-panel__message {
    color: var(--store-ink);
    line-height: 1.75;
    font-size: 0.92rem;
}

.error-panel__note {
    margin-top: 12px;
    color: var(--store-ink-secondary);
    font-size: 0.84rem;
    line-height: 1.68;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-compact {
    margin-top: 14px;
}

.no-margin-top {
    margin-top: 0;
}

.text-right {
    text-align: right;
}

.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--store-line);
    background: rgba(248, 248, 246, 0.96);
    backdrop-filter: blur(14px);
}

.bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 16px;
    color: var(--store-ink-light);
    font-size: 0.78rem;
    text-decoration: none;
    gap: 4px;
    transition: transform 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.bottom-nav__item.is-active {
    background: #ffffff;
    color: var(--store-ink);
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
}

.bottom-nav__icon {
    width: 22px;
    height: 22px;
    display: block;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.bottom-nav__item:active {
    transform: scale(0.96);
}

.bottom-nav__item.is-active .bottom-nav__icon {
    filter: none;
}

.bottom-nav__icon.icon-home {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239B9B9B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3 11.5L12 4l9 7.5'/><path d='M6.5 10.5V20h11V10.5'/></svg>");
}

.bottom-nav__icon.icon-category {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239B9B9B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='4' width='6' height='6' rx='1.5'/><rect x='14' y='4' width='6' height='6' rx='1.5'/><rect x='4' y='14' width='6' height='6' rx='1.5'/><rect x='14' y='14' width='6' height='6' rx='1.5'/></svg>");
}

.bottom-nav__icon.icon-quote {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239B9B9B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M6 4h9l3 3v13H6z'/><path d='M9 11h6'/><path d='M9 15h6'/></svg>");
}

.bottom-nav__icon.icon-cart {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239B9B9B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M6 6h13l-2 8H8z'/><path d='M6 6l-1-2H3'/><circle cx='9' cy='18' r='1.6'/><circle cx='16' cy='18' r='1.6'/></svg>");
}

.bottom-nav__icon.icon-user {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239B9B9B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='8' r='3.2'/><path d='M5.5 20c1.6-3 11.4-3 13 0'/></svg>");
}

.bottom-nav__item.is-active .bottom-nav__icon.icon-home {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F1F1F' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3 11.5L12 4l9 7.5'/><path d='M6.5 10.5V20h11V10.5'/></svg>");
}

.bottom-nav__item.is-active .bottom-nav__icon.icon-category {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F1F1F' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='4' width='6' height='6' rx='1.5'/><rect x='14' y='4' width='6' height='6' rx='1.5'/><rect x='4' y='14' width='6' height='6' rx='1.5'/><rect x='14' y='14' width='6' height='6' rx='1.5'/></svg>");
}

.bottom-nav__item.is-active .bottom-nav__icon.icon-quote {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F1F1F' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M6 4h9l3 3v13H6z'/><path d='M9 11h6'/><path d='M9 15h6'/></svg>");
}

.bottom-nav__item.is-active .bottom-nav__icon.icon-cart {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F1F1F' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M6 6h13l-2 8H8z'/><path d='M6 6l-1-2H3'/><circle cx='9' cy='18' r='1.6'/><circle cx='16' cy='18' r='1.6'/></svg>");
}

.bottom-nav__item.is-active .bottom-nav__icon.icon-user {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F1F1F' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='8' r='3.2'/><path d='M5.5 20c1.6-3 11.4-3 13 0'/></svg>");
}

.alert {
    margin-bottom: 16px;
    border-radius: 20px;
    border: 1px solid var(--store-line);
    box-shadow: none;
}

.alert-success {
    background: #f8f8f6;
    color: #2c2c2c;
}

.alert-danger,
.alert-error {
    background: #fbf7f7;
    color: #714d4d;
}

@media (max-width: 390px) {
    .product-grid,
    .account-menu-grid,
    .stat-grid,
    .info-grid,
    .summary-grid,
    .entry-grid {
        grid-template-columns: 1fr;
    }

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

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

    .scroll-row {
        grid-auto-columns: 88%;
    }

    .captcha-shell {
        grid-template-columns: 1fr;
    }
}
