@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700&display=swap');

:root {
  --bg: #f5f5f5;
  --bg-card: #ffffff;
  --border: #eeeeee;
  --text: #333333;
  --text-muted: #999999;
  --primary: #ff5000;
  --primary-dark: #e64500;
  --primary-light: #fff4ee;
  --price: #ff5000;
  --tag-hot: #ff5000;
  --tag-new: #00b578;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --container: min(1200px, 96vw);
  --font: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; }

.container { width: var(--container); margin: 0 auto; }

/* ========== 顶栏促销 ========== */
.top-bar {
  background: linear-gradient(90deg, #ff6a00, #ff5000);
  color: #fff;
  font-size: 0.75rem;
}

.top-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 6px 0;
}

/* ========== 商城头部 ========== */
.mall-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.mall-header-main {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff6a00, #ff5000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.logo-text strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text small {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.mall-search {
  flex: 1;
  display: flex;
  max-width: 520px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.mall-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 16px;
  font-size: 0.9rem;
}

.mall-search button {
  border: none;
  background: var(--primary);
  color: #fff;
  padding: 0 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.mall-search button:hover { background: var(--primary-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.header-actions > a:not(.header-cart) {
  color: var(--text-muted);
  white-space: nowrap;
}

.header-actions > a:not(.header-cart):hover { color: var(--primary); }

.header-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  font-weight: 600;
  position: relative;
}

.header-cart:hover { background: #ffe8dc; }

.cart-icon { font-size: 1.1rem; }

.cart-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-badge[hidden] { display: none !important; }

/* 分类导航条 */
.category-bar {
  border-top: 1px solid var(--border);
  background: #fafafa;
}

.category-bar-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
}

.category-bar-inner::-webkit-scrollbar { display: none; }

.cat-home {
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--text);
  border-bottom: 3px solid transparent;
}

.cat-home.is-active,
.cat-home:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: #fff;
}

.category-nav {
  display: flex;
  gap: 0;
}

.category-nav a {
  padding: 12px 18px;
  font-size: 0.875rem;
  white-space: nowrap;
  color: var(--text);
  border-bottom: 3px solid transparent;
}

.category-nav a:hover {
  color: var(--primary);
  background: #fff;
}

/* ========== 轮播区 ========== */
.mall-banner-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.banner-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
  background: #ddd;
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.banner-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.banner-slide[data-slide="0"] {
  background: linear-gradient(120deg, #ff9a56 0%, #ff6a88 50%, #ff5000 100%);
}

.banner-slide[data-slide="1"] {
  background: linear-gradient(120deg, #4facfe 0%, #00f2fe 100%);
}

.banner-slide[data-slide="2"] {
  background: linear-gradient(120deg, #43e97b 0%, #38f9d7 100%);
}

.banner-text em {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  font-style: normal;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 12px;
}

.banner-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner-cta {
  display: inline-block;
  padding: 10px 28px;
  background: #fff;
  color: var(--primary);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.banner-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
}

.banner-dot.is-active { background: #fff; width: 24px; border-radius: 4px; }

.banner-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-promo {
  flex: 1;
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s;
}

.side-promo:hover { transform: scale(1.02); }

.side-promo strong { font-size: 1.1rem; margin-bottom: 6px; }
.side-promo span { font-size: 0.8rem; opacity: 0.9; }

.side-promo-a { background: linear-gradient(135deg, #f093fb, #f5576c); }
.side-promo-b { background: linear-gradient(135deg, #4facfe, #00f2fe); }

/* ========== 服务保障 ========== */
.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius);
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.si-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.service-item strong { display: block; font-size: 0.85rem; }
.service-item small { font-size: 0.7rem; color: var(--text-muted); }

/* ========== 分类图标 ========== */
.section-block { margin-bottom: 24px; }

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 4px solid var(--primary);
}

.section-title span {
  font-size: 1.25rem;
  font-weight: 700;
}

.section-title small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 8px;
}

.section-more {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.section-more:hover { color: var(--primary); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.category-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid var(--border);
}

.category-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: #ffc9b0;
}

.category-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.category-name { display: block; font-weight: 600; font-size: 0.95rem; }
.category-count { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* ========== 商品网格 ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.product-grid:has(.product-card--compact) {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.3s;
}

.product-card:hover .card-img-wrap img { transform: scale(1.03); }

.card-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  border-radius: 2px;
}

.card-tag.tag-hot { background: var(--tag-hot); }
.card-tag.tag-new { background: var(--tag-new); }

.card-discount {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 2px 6px;
  font-size: 0.65rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 2px;
}

.card-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-cat {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.card-title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 6px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  min-height: 2.8em;
}

.card-title a:hover { color: var(--primary); }

.card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.price-now {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--price);
}

.price-was {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.card-sales {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.card-actions {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

/* ========== 商品区工具栏 ========== */
.shop-section {
  padding-bottom: 48px;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #fff;
  border-radius: var(--radius);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.tab:hover { border-color: var(--primary); color: var(--primary); }

.tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.search-input {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  min-width: 200px;
  outline: none;
}

.search-input:focus { border-color: var(--primary); }

/* ========== 按钮 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  flex: 1;
}

.btn-sm { padding: 6px 10px; font-size: 0.75rem; }

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover { background: var(--primary-dark); }

.btn-outline {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg { padding: 12px 32px; font-size: 1rem; flex: none; }
.btn-block { width: 100%; display: flex; }

.btn-glow {
  background: var(--primary);
  color: #fff;
}

/* ========== 详情页 ========== */
.page-main { padding: 20px 0 48px; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 12px 0;
}

.breadcrumb a:hover { color: var(--primary); }

.detail-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 24px;
  align-items: start;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
}

.detail-visual {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fafafa;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.detail-panel { padding: 8px 0; }

.detail-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  border-radius: 2px;
  margin-bottom: 8px;
}

.detail-tag.tag-hot { background: var(--tag-hot); }
.detail-tag.tag-new { background: var(--tag-new); }

.detail-cat {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.detail-panel h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.detail-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--primary-light);
  border-radius: var(--radius);
}

.detail-price .price-now { font-size: 2rem; }

.detail-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.detail-perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.detail-perks li {
  font-size: 0.8rem;
  padding: 6px 12px;
  background: #f5f5f5;
  border-radius: 4px;
  color: var(--text-muted);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.qty-label { font-size: 0.9rem; margin-right: 8px; }

.qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}

.qty-btn:hover { border-color: var(--primary); color: var(--primary); }

.qty-row input {
  width: 48px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px;
}

.detail-actions {
  display: flex;
  gap: 12px;
}

/* ========== 购物车 ========== */
.page-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 16px;
  align-items: start;
}

.cart-items { display: flex; flex-direction: column; gap: 12px; }

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cart-thumb {
  width: 100px;
  height: 100px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fafafa;
}

.cart-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.cart-name {
  font-weight: 600;
  display: block;
  margin: 4px 0;
  font-size: 0.95rem;
}

.cart-name:hover { color: var(--primary); }

.cart-unit { font-size: 0.85rem; color: var(--price); font-weight: 600; }

.cart-qty { display: flex; align-items: center; gap: 4px; }
.cart-qty .qty-btn { width: 28px; height: 28px; font-size: 0.9rem; }

.cart-qty input {
  width: 40px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px;
}

.cart-sub {
  font-weight: 700;
  color: var(--price);
  min-width: 72px;
  text-align: right;
  font-size: 1rem;
}

.cart-del {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
}

.cart-del:hover { color: var(--primary); }

.cart-checkout {
  position: sticky;
  top: 120px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cart-checkout h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.checkout-total strong {
  font-size: 1.5rem;
  color: var(--price);
}

.checkout-tip {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 12px 0 16px;
  padding: 8px;
  background: #fafafa;
  border-radius: 4px;
}

.cart-checkout .btn { margin-bottom: 8px; }

.btn-link-continue {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-link-continue:hover { color: var(--primary); }

.cart-layout:has(.empty-state) {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}

.empty-state {
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border-radius: var(--radius);
}

.empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h2 { margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 24px; }

.empty-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
  background: #fff;
  border-radius: var(--radius);
}

/* ========== 内容页 ========== */
.content-page {
  padding: 24px 0 48px;
}

.content-page .prose-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  background: #fff;
  border-radius: var(--radius);
}

.content-page h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.prose h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--primary);
}

.prose p {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.prose a { color: var(--primary); }

.contact-card {
  padding: 56px 32px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  max-width: 480px;
  margin: 0 auto;
}

.contact-company {
  font-size: 1.2rem;
  font-weight: 700;
}

/* ========== 页脚 ========== */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}

.footer-mark {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.footer-sub { font-size: 0.8rem; color: var(--text-muted); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  font-size: 0.875rem;
}

.footer-nav a { color: var(--text-muted); }
.footer-nav a:hover { color: var(--primary); }

.footer-legal {
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-icp { display: inline-block; margin-top: 6px; }
.footer-icp:hover { color: var(--primary); }

/* ========== Toast ========== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 200;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========== 子页简化头（无轮播） ========== */
.page-sub .mall-header-main { padding: 12px 0; }

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid:has(.product-card--compact) { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .detail-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar-inner { font-size: 0.65rem; gap: 4px 12px; }

  .mall-header-main {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .mall-search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
  }

  .header-actions > a:not(.header-cart) { display: none; }

  .mall-header-main { position: relative; }

  .mall-banner-row {
    grid-template-columns: 1fr;
  }

  .banner-main { height: 200px; }
  .banner-side { flex-direction: row; }
  .side-promo { min-height: 80px; }

  .service-strip { grid-template-columns: repeat(2, 1fr); }

  .product-grid,
  .product-grid:has(.product-card--compact) {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid { grid-template-columns: repeat(3, 1fr); }

  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }

  .cart-qty, .cart-sub, .cart-del { grid-column: 2; }

  .cart-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-legal { text-align: left; }
}
