:root {
  --bg: #fffaf6;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --border: rgba(63, 46, 51, 0.1);
  --text: #2f2528;
  --muted: #7d6a70;
  --primary: #f46e52;
  --primary-deep: #d94f33;
  --secondary: #2f7ea3;
  --accent: #ffd786;
  --shadow: 0 18px 60px rgba(86, 62, 58, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 215, 134, 0.34), transparent 24%),
    radial-gradient(circle at top right, rgba(115, 188, 210, 0.18), transparent 20%),
    linear-gradient(180deg, #fff8f1 0%, #fffdfa 32%, #fff9f5 100%);
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

::selection {
  background: rgba(244, 110, 82, 0.18);
}

.site-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.glass-nav,
.card-shell,
.panel-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.glass-nav {
  border-radius: 0 0 24px 24px;
}

.site-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f46e52, #ffbc76);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(244, 110, 82, 0.3);
  position: relative;
  overflow: hidden;
  font-size: 0;
}

.site-mark::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%23fff7f0'/%3E%3Cstop offset='100%25' stop-color='%23ffe1cf'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M18 18 10 8c-2 7-1 13 2 18' fill='%23fff3eb'/%3E%3Cpath d='M46 18 54 8c2 7 1 13-2 18' fill='%23fff3eb'/%3E%3Cpath d='M32 14c11.8 0 21 9.2 21 21 0 11.5-8.5 20-21 20S11 46.5 11 35c0-11.8 9.2-21 21-21Z' fill='url(%23g)'/%3E%3Ccircle cx='24.5' cy='33' r='2.7' fill='%23383032'/%3E%3Ccircle cx='39.5' cy='33' r='2.7' fill='%23383032'/%3E%3Cpath d='M32 35.2c-2 0-3.8 1.2-4.8 2.7 3.2 2.4 6.5 2.4 9.7 0-1-1.5-2.8-2.7-4.9-2.7Z' fill='%23ff8f7e'/%3E%3Cpath d='M19 39c3 1.2 6.1 1.2 9.2 0M35.8 39c3.1 1.2 6.2 1.2 9.2 0' stroke='%23c38b82' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M28 43.5c2.5 2 5.5 2 8 0' stroke='%23383032' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.nav-link {
  position: relative;
  color: var(--muted);
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #ffb46f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

header nav {
  gap: 16px !important;
  flex-shrink: 0;
}

.search-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(89, 57, 49, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.search-shell input {
  border: 0;
  outline: none;
  flex: 1;
  background: transparent;
  color: var(--text);
}

.primary-btn,
.secondary-btn,
.ghost-btn,
.chip-btn {
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.primary-btn {
  background: linear-gradient(135deg, var(--primary), #ffb46f);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(244, 110, 82, 0.25);
}

.secondary-btn {
  background: linear-gradient(135deg, #2f7ea3, #56b2c0);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(89, 57, 49, 0.12);
  color: var(--text);
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.chip-btn {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(89, 57, 49, 0.1);
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.chip-btn.active,
.sort-chip.active,
.filter-chip.active {
  background: rgba(244, 110, 82, 0.12);
  color: var(--primary-deep);
  border-color: rgba(244, 110, 82, 0.3);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 24px;
}

.hero-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 36px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.5s ease, transform 0.5s ease;
  background-position: center;
  background-size: cover;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(39, 26, 32, 0.78), rgba(52, 37, 43, 0.45) 48%, rgba(52, 37, 43, 0.15));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 52px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.metric-grid,
.feature-grid,
.category-grid,
.post-grid,
.dashboard-grid,
.user-grid,
.detail-grid,
.search-layout {
  display: grid;
  gap: 24px;
}

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

.metric-card,
.feature-card,
.community-card,
.summary-card,
.account-card {
  border-radius: var(--radius-xl);
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(77, 55, 53, 0.08);
}

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

.category-card {
  border-radius: 24px;
  padding: 18px 18px 16px;
  min-height: 168px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card:hover,
.product-card:hover,
.community-card:hover,
.summary-card:hover {
  transform: translateY(-6px);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

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

.category-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 22px;
  font-weight: 800;
}

.category-title {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 800;
}

.category-brief {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.category-subline {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

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

.product-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.compact-card .product-media {
  padding: 14px;
}

.compact-card .product-title {
  font-size: 16px;
}

.compact-card .product-desc {
  min-height: 0;
  margin-bottom: 12px;
}

.product-media {
  display: block;
  position: relative;
  padding: 18px;
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  background: #fff;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image {
  transform: scale(1.03);
}

.product-badges {
  position: absolute;
  top: 28px;
  left: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.badge-hot {
  background: rgba(244, 110, 82, 0.92);
  color: #fff;
}

.product-body {
  padding: 0 20px 20px;
}

.product-meta,
.product-stats,
.stack-row,
.inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-meta {
  font-size: 12px;
  color: var(--muted);
}

.product-title {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.product-desc {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  min-height: 48px;
}

.product-bottom,
.product-actions,
.filter-row,
.topbar-row,
.summary-row,
.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price-line {
  color: var(--primary-deep);
  font-size: 28px;
  font-weight: 800;
}

.origin-line {
  color: #b7a4a9;
  font-size: 13px;
  text-decoration: line-through;
}

.product-stats {
  justify-content: flex-end;
  color: var(--muted);
  font-size: 12px;
}

.product-stats span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-actions {
  margin-top: 14px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}

.section-copy p,
.muted {
  color: var(--muted);
}

.search-layout,
.search-dense-layout {
  grid-template-columns: 280px 1fr;
}

.filter-panel,
.result-panel,
.toolbar-panel {
  border-radius: 28px;
  padding: 24px;
}

.filter-chip,
.sort-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.filter-row {
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(63, 46, 51, 0.1);
}

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

.filter-label {
  width: 92px;
  flex: none;
  color: var(--text);
  font-weight: 700;
}

.filter-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.selected-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.selected-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(244, 110, 82, 0.12);
  color: var(--primary-deep);
  font-size: 14px;
}

.selected-pill button {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.checkbox-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-side {
  display: grid;
  gap: 20px;
}

.floating-card {
  border-radius: 30px;
  padding: 24px;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-cloud span {
  cursor: pointer;
}

.icon-pill,
.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(63, 46, 51, 0.08);
  color: var(--text);
}

.info-badge {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
}

.info-badge.warm {
  background: rgba(255, 241, 234, 0.96);
  color: #cf5a3a;
}

.info-badge.cool {
  background: rgba(239, 248, 255, 0.96);
  color: #2f7ea3;
}

.info-badge.soft {
  background: rgba(242, 255, 242, 0.96);
  color: #43845f;
}

.editorial-grid,
.detail-side-grid,
.profile-utility-grid,
.user-overview-grid,
.mini-cards-grid,
.service-mini-grid {
  display: grid;
  gap: 16px;
}

.editorial-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.editorial-panel,
.sidebar-panel,
.mini-card,
.visual-card,
.dense-card,
.profile-stat-card,
.utility-card,
.search-rail-card,
.detail-assure-card,
.topic-item {
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(77, 55, 53, 0.08);
}

.editorial-panel,
.sidebar-panel,
.dense-card,
.visual-card {
  padding: 22px;
}

.mini-card,
.profile-stat-card,
.utility-card,
.detail-assure-card,
.search-rail-card,
.topic-item {
  padding: 18px;
}

.editorial-lead {
  min-height: 100%;
  background: linear-gradient(135deg, rgba(255, 245, 237, 0.96), rgba(255, 255, 255, 0.78));
}

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

.mini-card strong,
.utility-card strong,
.search-rail-card strong,
.detail-assure-card strong {
  display: block;
  font-size: 16px;
  margin-top: 10px;
}

.mini-card p,
.utility-card p,
.search-rail-card p,
.detail-assure-card p,
.topic-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

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

.topic-item {
  display: flex;
  align-items: start;
  gap: 14px;
}

.topic-rank {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(244, 110, 82, 0.16), rgba(255, 188, 118, 0.26));
  color: #cf5a3a;
  font-weight: 800;
  flex: none;
}

.search-rail-stack,
.utility-stack,
.detail-gallery-grid,
.detail-side-grid {
  display: grid;
  gap: 14px;
}

.search-rail-card:hover,
.mini-card:hover,
.detail-assure-card:hover,
.utility-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 110, 82, 0.18);
  box-shadow: 0 16px 34px rgba(77, 55, 53, 0.1);
}

.filter-panel .summary-card {
  padding: 18px;
}

.detail-grid {
  align-items: stretch;
  grid-template-columns: 1.05fr 1fr;
}

.gallery-stage {
  border-radius: 34px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,244,236,0.86));
  border: 1px solid var(--border);
}

.detail-gallery-grid,
.detail-info-stack {
  align-content: stretch;
}

.detail-info-stack {
  display: grid;
  gap: 20px;
  grid-template-rows: 1fr auto;
}

.detail-purchase-card {
  border-radius: 26px;
  border: 1px solid rgba(193, 111, 65, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 245, 235, 0.98), rgba(255, 255, 255, 0.86)),
    #fff3ea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 18px 42px rgba(141, 83, 51, 0.12);
  padding: 24px;
}

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

.purchase-btn {
  min-height: 58px;
  justify-content: center;
  padding: 17px 24px;
  border-radius: 20px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
}

.detail-main-image {
  width: 100%;
  border-radius: 26px;
  aspect-ratio: 1;
  object-fit: cover;
}

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

.detail-assure-card {
  background: rgba(255, 248, 240, 0.96);
}

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

.spec-item {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--border);
}

.detail-description-card,
.related-card {
  min-height: 520px;
}

.detail-description-card {
  display: flex;
  flex-direction: column;
}

.detail-phrase-list {
  display: grid;
  flex: 1;
  align-content: space-between;
  gap: 14px;
  padding-top: 4px;
}

.detail-phrase {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(116, 82, 66, 0.1);
  color: #3d302b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
  padding: 8px 0 14px;
}

.detail-phrase:last-child {
  border-bottom: 0;
}

.profile-shell {
  display: grid;
  gap: 18px;
}

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

.profile-avatar-art {
  width: 86px;
  height: 86px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 215, 186, 0.96), rgba(255, 244, 230, 0.98));
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
}

.profile-avatar-art::before {
  content: "";
  width: 64px;
  height: 64px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M18 18 10 8c-2 7-1 13 2 18' fill='%23fffaf5'/%3E%3Cpath d='M46 18 54 8c2 7 1 13-2 18' fill='%23fffaf5'/%3E%3Cpath d='M32 14c11.8 0 21 9.2 21 21 0 11.5-8.5 20-21 20S11 46.5 11 35c0-11.8 9.2-21 21-21Z' fill='%23fff2e4'/%3E%3Ccircle cx='24.5' cy='33' r='2.8' fill='%233a3336'/%3E%3Ccircle cx='39.5' cy='33' r='2.8' fill='%233a3336'/%3E%3Cpath d='M32 35c-2 0-4 1.2-5 2.8 3.4 2.4 6.6 2.4 10 0-1-1.6-3-2.8-5-2.8Z' fill='%23ff9a85'/%3E%3Cpath d='M28 43.5c2.5 2 5.5 2 8 0' stroke='%233a3336' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

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

.utility-card {
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

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

.profile-stat-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,248,243,0.92));
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 18px;
}

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

.member-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.member-avatar {
  width: 68px;
  height: 68px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffd4b1, #fff1e1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.member-avatar::before {
  content: "";
  width: 54px;
  height: 54px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M18 18 10 8c-2 7-1 13 2 18' fill='%23fffaf5'/%3E%3Cpath d='M46 18 54 8c2 7 1 13-2 18' fill='%23fffaf5'/%3E%3Cpath d='M32 14c11.8 0 21 9.2 21 21 0 11.5-8.5 20-21 20S11 46.5 11 35c0-11.8 9.2-21 21-21Z' fill='%23fff2e4'/%3E%3Ccircle cx='24.5' cy='33' r='2.8' fill='%233a3336'/%3E%3Ccircle cx='39.5' cy='33' r='2.8' fill='%233a3336'/%3E%3Cpath d='M32 35c-2 0-4 1.2-5 2.8 3.4 2.4 6.6 2.4 10 0-1-1.6-3-2.8-5-2.8Z' fill='%23ff9a85'/%3E%3Cpath d='M28 43.5c2.5 2 5.5 2 8 0' stroke='%233a3336' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

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

.member-stat,
.member-link,
.deal-card,
.subscribe-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(77, 55, 53, 0.08);
}

.member-stat {
  padding: 16px 18px;
}

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

.member-link {
  padding: 16px 14px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.member-link:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 110, 82, 0.26);
}

.service-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
}

.subscribe-card {
  padding: 22px;
  background: linear-gradient(135deg, rgba(255, 247, 238, 0.96), rgba(255, 255, 255, 0.84));
}

.deal-card {
  padding: 18px;
}

.deal-grid {
  display: grid;
  gap: 12px;
}

.cart-card,
.order-card,
.detail-box,
.article-card {
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(77, 55, 53, 0.08);
}

.cart-list {
  display: grid;
  gap: 18px;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
}

.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(244, 110, 82, 0.12);
  color: var(--primary-deep);
  cursor: pointer;
  font-size: 18px;
}

.section-subcopy {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.toast-host {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  gap: 10px;
}

.toast {
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(47, 37, 40, 0.92);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.24s ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.footer-shell {
  margin-top: 64px;
  padding: 28px 0 38px;
  color: var(--muted);
}

.hidden {
  display: none !important;
}

@media (max-width: 1080px) {
  .hero-grid,
  .search-layout,
  .search-dense-layout,
  .detail-grid,
  .user-grid {
    grid-template-columns: 1fr;
  }

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

  .category-compact-grid,
  .service-layout,
  .editorial-grid,
  .user-overview-grid,
  .detail-side-grid {
    grid-template-columns: 1fr;
  }

  .detail-info-stack {
    grid-template-rows: auto;
  }

  .filter-row,
  .product-bottom,
  .product-actions,
  .cart-row,
  .summary-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-label {
    width: auto;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding: 0 16px;
  }

  .hero-content {
    padding: 28px;
  }

  .hero-stage {
    min-height: 420px;
  }

  .metric-grid,
  .spec-grid,
  .product-list,
  .category-grid,
  .post-grid,
  .member-stats,
  .member-links,
  .category-compact-grid,
  .profile-utility-grid,
  .mini-cards-grid {
    grid-template-columns: 1fr;
  }

  .search-shell {
    padding-right: 8px;
  }

  .purchase-actions {
    grid-template-columns: 1fr;
  }

  .purchase-btn {
    width: 100%;
  }
}

/* Premium visual refresh */

:root {
  --bg: #f6efe8;
  --surface: rgba(255, 252, 248, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --border: rgba(88, 58, 45, 0.1);
  --text: #2d221d;
  --muted: #74645d;
  --primary: #c96d45;
  --primary-deep: #9e4f2f;
  --secondary: #567b86;
  --accent: #f2c98b;
  --shadow: 0 24px 60px rgba(79, 52, 39, 0.12);
}

body {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 200, 141, 0.28), transparent 0 24%),
    radial-gradient(circle at 86% 14%, rgba(176, 209, 209, 0.24), transparent 0 19%),
    radial-gradient(circle at 82% 72%, rgba(162, 135, 120, 0.14), transparent 0 18%),
    linear-gradient(180deg, #fcf8f3 0%, #f7f0e8 52%, #f5eee7 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.32), transparent 60%);
  opacity: 0.9;
}

body::after {
  inset: 18px;
  border: 1px solid rgba(118, 87, 71, 0.08);
  border-radius: 36px;
}

.glass-nav,
.card-shell,
.panel-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 245, 0.7)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(116, 82, 66, 0.12);
  box-shadow:
    0 28px 70px rgba(79, 52, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(125%);
}

.glass-nav {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}

.glass-nav::before,
.hero-stage::before,
.editorial-lead::before,
.panel-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 35%, transparent 65%, rgba(255, 255, 255, 0.18));
}

.site-mark {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.86), transparent 0 32%),
    linear-gradient(145deg, #8d3e1f 0%, #ca6f38 38%, #f7c36b 100%);
  border: 1px solid rgba(119, 63, 37, 0.24);
  box-shadow:
    0 16px 34px rgba(176, 101, 54, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.site-mark::before {
  width: 48px;
  height: 48px;
  background-image: url("./logo-small.png");
  filter: drop-shadow(0 5px 10px rgba(54, 24, 9, 0.18));
}

.nav-link {
  font-weight: 600;
}

.search-shell {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(101, 72, 60, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 14px 34px rgba(104, 76, 59, 0.08);
}

.primary-btn {
  background: linear-gradient(135deg, #bb643d, #df9964 52%, #f0c07f 100%);
  box-shadow: 0 16px 34px rgba(187, 100, 61, 0.22);
}

.ghost-btn,
.chip-btn,
.badge,
.member-link,
.member-stat,
.deal-card,
.subscribe-card,
.summary-card,
.account-card,
.profile-stat-card,
.utility-card,
.community-card,
.mini-card,
.topic-item,
.article-card,
.order-card {
  box-shadow:
    0 18px 40px rgba(77, 55, 53, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.hero-stage {
  border: 1px solid rgba(110, 76, 59, 0.12);
  box-shadow:
    0 28px 70px rgba(77, 55, 53, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-overlay {
  background:
    linear-gradient(108deg, rgba(36, 24, 22, 0.82) 0%, rgba(58, 40, 37, 0.56) 44%, rgba(87, 58, 42, 0.16) 100%),
    radial-gradient(circle at 78% 20%, rgba(255, 204, 141, 0.2), transparent 0 22%);
}

.floating-card,
.editorial-panel,
.sidebar-panel,
.cart-card,
.detail-box {
  position: relative;
  overflow: hidden;
}

.category-card {
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--card-c, #fff4ea) 72%, white) 0%, var(--card-c, #fff4ea) 100%);
  color: #fff7f1;
  border: 1px solid rgba(121, 82, 67, 0.1);
  box-shadow:
    0 24px 44px rgba(85, 58, 47, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.category-card::before {
  inset: -16% -12% auto auto;
  width: 180px;
  height: 180px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.06) 48%, transparent 70%);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(160deg, var(--card-a, #b96b43), var(--card-b, #f0bf7b));
  mix-blend-mode: multiply;
  opacity: 0.95;
  z-index: 0;
}

.category-card > div {
  position: relative;
  z-index: 1;
}

.category-kicker {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.category-title {
  letter-spacing: 0.01em;
}

.category-brief,
.category-subline {
  color: rgba(255, 247, 239, 0.9);
}

.editorial-lead {
  background:
    radial-gradient(circle at top right, rgba(242, 198, 143, 0.2), transparent 0 26%),
    linear-gradient(135deg, rgba(255, 249, 243, 0.98), rgba(251, 244, 237, 0.84));
}

.profile-hero,
.member-head {
  align-items: center;
}

.avatar-frame {
  position: relative;
  overflow: hidden;
  flex: none;
}

.media-avatar {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.avatar-fallback::before {
  content: "";
  position: absolute;
  inset: 14%;
  background-image: url("./logo-small.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: saturate(0.85) drop-shadow(0 6px 12px rgba(91, 51, 24, 0.18));
}

.profile-avatar-art,
.member-avatar {
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.86), transparent 0 28%),
    linear-gradient(145deg, rgba(255, 220, 183, 0.95), rgba(255, 246, 230, 0.98));
  border: 1px solid rgba(128, 91, 66, 0.14);
  box-shadow:
    0 18px 34px rgba(102, 67, 49, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.profile-avatar-art {
  width: 92px;
  height: 92px;
  border-radius: 32px;
}

.member-avatar {
  width: 72px;
  height: 72px;
  border-radius: 26px;
}

.profile-avatar-art::before,
.member-avatar::before {
  inset: 14%;
}

.profile-shell,
.member-mini {
  position: relative;
  z-index: 1;
}

.product-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 243, 0.88));
  border: 1px solid rgba(117, 84, 68, 0.1);
  box-shadow:
    0 22px 44px rgba(87, 58, 45, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.product-image {
  border-radius: 28px;
  box-shadow: 0 14px 32px rgba(80, 54, 43, 0.12);
}

.footer-shell {
  margin-top: 72px;
  padding-bottom: 46px;
}

@media (max-width: 1080px) {
  body::after {
    inset: 12px;
    border-radius: 26px;
  }
}

@media (max-width: 720px) {
  body::after {
    inset: 8px;
    border-radius: 22px;
  }

  .glass-nav {
    border-radius: 22px;
  }

  .site-mark {
    width: 52px;
    height: 52px;
  }
}

/* Home page refinements from review */

.site-header-row {
  gap: 18px;
}

.site-header-row .text-xl {
  font-size: 1.1rem;
  line-height: 1.2;
}

.site-header-row .text-sm,
.nav-link,
.site-search-input,
.header-mini-link {
  font-size: 0.92rem;
}

.header-search-wrap {
  max-width: 560px;
}

.header-quick-links {
  align-items: center;
  gap: 10px;
}

.header-mini-link {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(117, 84, 68, 0.1);
  color: #6d5e59;
  transition: all 0.24s ease;
}

.header-mini-link:hover {
  color: var(--primary-deep);
  border-color: rgba(201, 109, 69, 0.18);
  transform: translateY(-1px);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.54fr);
  gap: 18px;
}

.hero-stage {
  min-height: 400px;
}

.hero-content {
  max-width: 470px;
  padding: 36px;
}

.hero-content h1 {
  font-size: clamp(2.45rem, 4vw, 3.55rem);
  line-height: 1.08;
}

.hero-content p {
  max-width: 430px;
}

.hero-copy-stack {
  min-height: 328px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-copy-text {
  display: grid;
  align-content: start;
}

.hero-headline {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1.08;
  font-weight: 900;
  white-space: nowrap;
  letter-spacing: -0.03em;
}

.hero-description-lines {
  display: grid;
  gap: 8px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-description-lines span {
  display: block;
}

.hero-copy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-side {
  gap: 16px;
}

.member-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 0 22%),
    linear-gradient(180deg, rgba(255, 239, 243, 0.92), rgba(255, 246, 247, 0.82));
}

.member-head {
  align-items: flex-start;
}

.member-head-copy {
  flex: 1;
}

.member-tier-badge {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(223, 158, 170, 0.26);
  color: #c66a7f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

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

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

.category-compact-grid {
  gap: 10px;
}

.category-card-brief {
  min-height: 74px;
  padding: 12px 14px;
  border-radius: 20px;
}

.category-compact-grid .category-card:nth-child(1) {
  --card-a: #b86a43;
  --card-b: #e0a56d;
  --card-c: #fff4e7;
}

.category-compact-grid .category-card:nth-child(2) {
  --card-a: #c4646c;
  --card-b: #df8f75;
  --card-c: #fff1ef;
}

.category-compact-grid .category-card:nth-child(3) {
  --card-a: #518082;
  --card-b: #89b7ab;
  --card-c: #eef9f4;
}

.category-compact-grid .category-card:nth-child(4) {
  --card-a: #646593;
  --card-b: #99a8d3;
  --card-c: #f1f1fb;
}

.category-compact-grid .category-card:nth-child(5) {
  --card-a: #68774d;
  --card-b: #a3ba72;
  --card-c: #f5faea;
}

.category-brief-row {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.category-card-brief .category-kicker {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 20px;
  flex: none;
}

.category-card-brief .category-copy {
  min-width: 0;
}

.category-card-brief .category-brief {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.category-card-brief .category-subline {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.4;
  opacity: 0.88;
}

.service-hero-title {
  font-size: 2.1rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.service-hero-title span {
  display: inline-block;
  padding: 0.06em 0.32em;
  margin-left: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244, 210, 160, 0.76), rgba(255, 240, 220, 0.96));
  color: #9f5737;
  box-shadow: 0 12px 26px rgba(211, 145, 83, 0.18);
}

.subscribe-card {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 230, 187, 0.22), transparent 0 26%),
    linear-gradient(145deg, rgba(255, 248, 242, 0.98), rgba(255, 253, 250, 0.9));
}

.subscribe-card .member-link {
  background: rgba(255, 249, 244, 0.92);
}

.deal-card .text-xl {
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.community-panel {
  background:
    linear-gradient(180deg, rgba(249, 255, 249, 0.86), rgba(246, 255, 245, 0.78)),
    rgba(255, 255, 255, 0.58);
}

.service-panel {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.86), rgba(255, 247, 239, 0.76)),
    rgba(255, 255, 255, 0.58);
}

.community-card {
  background: linear-gradient(180deg, rgba(239, 249, 238, 0.98), rgba(248, 255, 246, 0.94));
  border-color: rgba(121, 172, 126, 0.18);
}

@media (max-width: 1080px) {
  .header-search-wrap {
    max-width: none;
  }

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

  .member-links-compact,
  .category-compact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-stage {
    min-height: 360px;
  }

  .hero-content {
    padding: 28px;
  }

  .hero-copy-stack {
    min-height: 280px;
  }

  .hero-headline {
    white-space: normal;
    font-size: clamp(1.8rem, 7vw, 2.35rem);
  }

  .member-links-compact {
    grid-template-columns: 1fr;
  }
}

/* Search page redesign */

.search-dense-layout {
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.search-layout-expanded {
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
}

.search-mega-browser {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(109, 84, 71, 0.1);
}

.search-mega-nav {
  display: grid;
  background: linear-gradient(180deg, rgba(250, 247, 243, 0.94), rgba(246, 241, 236, 0.9));
}

.mega-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(109, 84, 71, 0.08);
  cursor: pointer;
  transition: all 0.22s ease;
}

.mega-nav-item:last-child {
  border-bottom: 0;
}

.mega-nav-item.active,
.mega-nav-item:hover {
  background: rgba(255, 255, 255, 0.72);
  border-left-color: #76b84e;
}

.mega-nav-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  flex: 1;
  text-align: left;
  font-weight: 600;
  color: #3f342e;
}

.mega-nav-arrow {
  color: #bcaea7;
  font-size: 20px;
}

.search-mega-detail {
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.84);
  min-height: 100%;
}

.mega-detail-head h3 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
}

.mega-detail-groups {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.mega-section {
  display: grid;
  gap: 10px;
}

.mega-row-title {
  width: fit-content;
  border: 0;
  background: transparent;
  padding: 0;
  color: #6fb043;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}

.mega-row-products {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.mega-product-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: #4c3f39;
  font-size: 0.93rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.18s ease;
}

.mega-product-link:hover,
.mega-row-title:hover {
  color: #c96d45;
}

.attribute-toolbar {
  background:
    radial-gradient(circle at top right, rgba(249, 228, 191, 0.18), transparent 0 22%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(255, 248, 241, 0.84));
}

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

.filter-group-card {
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  margin: 0;
  border: 1px solid rgba(109, 84, 71, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
}

.filter-group-card .filter-label {
  width: auto;
  font-size: 0.95rem;
}

.feature-toggle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-toggle {
  border: 1px solid rgba(109, 84, 71, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: #665752;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.22s ease;
}

.feature-toggle:hover,
.feature-toggle.active {
  background: rgba(201, 109, 69, 0.12);
  color: var(--primary-deep);
  border-color: rgba(201, 109, 69, 0.22);
}

.result-panel-wide {
  overflow: hidden;
}

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

@media (max-width: 1080px) {
  .search-dense-layout {
    grid-template-columns: 1fr;
  }

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

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

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

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.auth-copy,
.auth-panel {
  border-radius: 32px;
  padding: 32px;
}

.auth-copy {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255, 246, 235, 0.94), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 88% 18%, rgba(47, 126, 163, 0.18), transparent 28%);
}

.auth-copy h1 {
  margin: 24px 0 14px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  font-weight: 900;
}

.auth-copy p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.8;
}

.demo-account-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.demo-account-card div,
.notice-card {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
}

.demo-account-card span,
.checkout-form-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.demo-account-card strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.auth-tabs,
.order-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.auth-tab,
.order-tab {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px 18px;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
  transition: 0.2s ease;
}

.auth-tab.active,
.order-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ffb46f);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(244, 110, 82, 0.22);
}

.order-tab span {
  margin-left: 8px;
  opacity: 0.8;
}

.auth-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.auth-form label,
.checkout-form-grid label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.auth-form input,
.checkout-form-grid input,
.checkout-form-grid select {
  width: 100%;
  border: 1px solid rgba(89, 57, 49, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 13px 15px;
  outline: none;
}

.auth-form input:focus,
.checkout-form-grid input:focus,
.checkout-form-grid select:focus {
  border-color: rgba(244, 110, 82, 0.45);
  box-shadow: 0 0 0 4px rgba(244, 110, 82, 0.1);
}

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

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

.checkout-summary {
  position: sticky;
  top: 112px;
}

.summary-lines {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.summary-lines div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.summary-lines strong {
  color: var(--text);
}

.summary-lines .total {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-size: 18px;
}

.summary-lines .total strong {
  color: var(--primary-deep);
  font-size: 26px;
}

.notice-card {
  margin-bottom: 16px;
}

.notice-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.disabled-btn,
button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff1ea;
  color: var(--primary-deep);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}

.status-pill.big {
  padding: 10px 16px;
  font-size: 15px;
}

.mini-product-pill {
  display: inline-flex;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  padding: 7px 11px;
  color: var(--muted);
  font-size: 13px;
}

.timeline-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.timeline-item {
  position: relative;
  padding-left: 24px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(244, 110, 82, 0.12);
}

.timeline-item strong,
.timeline-item span,
.timeline-item p {
  display: block;
}

.timeline-item span,
.timeline-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.order-action-btn {
  min-height: 40px;
  padding: 10px 16px;
}

/* Review page */

.review-hero-card,
.review-section {
  border-radius: 32px;
  padding: 26px;
}

.review-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 215, 134, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 238, 0.9));
}

.review-hero-card h1 {
  margin: 18px 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 1000;
}

.review-hero-card p {
  color: var(--muted);
  line-height: 1.8;
}

.logistics-rating-grid,
.review-product-list {
  display: grid;
  gap: 16px;
}

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

.logistics-rating-item {
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
}

.logistics-rating-item strong {
  display: block;
  margin-bottom: 12px;
  font-size: 17px;
}

.star-rating {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.star-button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(89, 57, 49, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  color: #d7c5bd;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.star-button:hover,
.star-button.active {
  color: #f6a73f;
  border-color: rgba(246, 167, 63, 0.35);
  background: rgba(255, 247, 228, 0.96);
  transform: translateY(-1px);
}

.review-product-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: start;
  border-radius: 26px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(77, 55, 53, 0.07);
}

.review-product-info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.review-product-image {
  width: 86px;
  height: 86px;
  flex: none;
  border-radius: 20px;
  object-fit: cover;
  background: #fff;
  padding: 6px;
  border: 1px solid rgba(89, 57, 49, 0.08);
}

.review-product-info h3 {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.review-product-info p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.review-product-inputs {
  display: grid;
  gap: 16px;
}

.review-product-inputs label {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
}

.review-product-inputs label > span {
  font-size: 15px;
}

.review-product-inputs textarea {
  width: 100%;
  min-height: 136px;
  resize: vertical;
  border: 1px solid rgba(89, 57, 49, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  line-height: 1.7;
}

.review-product-inputs textarea:focus {
  border-color: rgba(244, 110, 82, 0.42);
  box-shadow: 0 0 0 4px rgba(244, 110, 82, 0.1);
}

.anonymous-review-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  border-radius: 18px;
  padding: 13px 16px;
  background: rgba(255, 246, 239, 0.9);
  border: 1px solid rgba(244, 110, 82, 0.14);
  cursor: pointer;
  font-weight: 900;
}

.anonymous-review-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.review-submit-row {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 900px) {
  .logistics-rating-grid,
  .review-product-card {
    grid-template-columns: 1fr;
  }

  .review-hero-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1080px) {
  .auth-layout,
  .checkout-grid,
  .order-detail-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .auth-copy,
  .auth-panel {
    padding: 24px;
  }

  .checkout-form-grid,
  .demo-account-card {
    grid-template-columns: 1fr;
  }
}

/* Anniversary campaign */

.anniversary-panel {
  position: relative;
  border-radius: 34px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 221, 120, 0.42), transparent 30%),
    radial-gradient(circle at 8% 84%, rgba(255, 94, 73, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(255, 243, 232, 0.98), rgba(255, 228, 221, 0.9) 46%, rgba(255, 248, 238, 0.92));
  border-color: rgba(187, 33, 32, 0.18);
}

.anniversary-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}

.anniversary-eyebrow,
.detail-campaign-eyebrow {
  background: rgba(181, 27, 31, 0.12);
  color: #9f1d21;
}

.anniversary-title {
  margin: 18px 0 12px;
  max-width: 760px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.02;
  font-weight: 900;
  color: #581a18;
  text-shadow: 0 10px 26px rgba(168, 33, 28, 0.12);
}

.anniversary-summary {
  max-width: 680px;
  color: #6d342d;
  line-height: 1.8;
}

.anniversary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.campaign-ribbon-banner {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 11px 34px;
  color: #ffe29a;
  background: linear-gradient(135deg, #8f1319, #c91f27 48%, #f04e35 100%);
  border: 1px solid rgba(255, 219, 137, 0.48);
  box-shadow:
    0 16px 34px rgba(168, 32, 29, 0.22),
    inset 0 1px 0 rgba(255, 234, 165, 0.38);
  transform: skewX(-10deg);
}

.campaign-ribbon-banner::before,
.campaign-ribbon-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 32px;
  background: #7d1016;
  transform: translateY(-50%) skewX(10deg);
  z-index: -1;
}

.campaign-ribbon-banner::before {
  left: -12px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.campaign-ribbon-banner::after {
  right: -12px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.campaign-ribbon-banner span {
  display: block;
  transform: skewX(10deg);
  font-size: clamp(1.1rem, 2.1vw, 1.75rem);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0;
  text-shadow:
    0 2px 0 #711015,
    0 10px 22px rgba(83, 14, 16, 0.36),
    0 0 12px rgba(255, 229, 151, 0.36);
  -webkit-text-stroke: 0.4px rgba(255, 247, 209, 0.34);
}

.anniversary-panel .primary-btn,
.anniversary-panel .secondary-btn,
.detail-campaign-card ~ .detail-purchase-card .primary-btn,
.detail-campaign-card ~ .detail-purchase-card .secondary-btn {
  background: linear-gradient(135deg, #7f1117, #b71921 58%, #d72e2c 100%);
  box-shadow: 0 16px 32px rgba(127, 17, 23, 0.28);
}

.anniversary-panel .ghost-btn {
  border-color: rgba(157, 26, 29, 0.2);
  color: #8f1b20;
  background: rgba(255, 248, 238, 0.9);
}

.anniversary-management {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: end;
  align-items: flex-end;
  gap: 12px 26px;
  padding-top: 58px;
}

.management-card {
  display: inline-flex;
  align-items: baseline;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.management-card span,
.management-list span {
  color: var(--muted);
  font-size: 13px;
}

.management-card strong {
  color: #ffd25f;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 1000;
  white-space: nowrap;
  text-shadow:
    0 3px 0 rgba(123, 29, 22, 0.28),
    0 12px 22px rgba(184, 38, 28, 0.22),
    0 0 10px rgba(255, 218, 107, 0.38);
}

.management-card.is-warning {
  border: 0;
  background: transparent;
}

.anniversary-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  margin-top: 24px;
}

.anniversary-rule-card,
.detail-campaign-card,
.detail-rule-item {
  border: 1px solid rgba(181, 27, 31, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.92), rgba(255, 242, 234, 0.86));
  box-shadow:
    0 18px 40px rgba(137, 35, 30, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.anniversary-rule-card {
  border-radius: 26px;
  padding: 22px;
}

.anniversary-rule-card h3 {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 900;
  color: #651d19;
}

.rule-list,
.management-list {
  display: grid;
  gap: 12px;
}

.rule-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.rule-item span,
.detail-rule-item span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background: rgba(181, 27, 31, 0.12);
  color: #9f1d21;
  font-weight: 900;
}

.rule-item p,
.detail-rule-item p {
  margin: 0;
  color: #594b46;
  line-height: 1.7;
}

.management-list div {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(117, 84, 68, 0.12);
}

.management-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.red-packet-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(190px, 0.72fr);
  gap: 18px;
  align-items: center;
  min-height: 286px;
  padding: 22px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(181, 27, 31, 0.2);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 223, 156, 0.5), transparent 28%),
    linear-gradient(135deg, rgba(255, 247, 235, 0.98), rgba(255, 224, 216, 0.96));
  box-shadow:
    0 24px 52px rgba(136, 58, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.red-packet-copy {
  position: relative;
  z-index: 1;
}

.red-packet-copy span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(199, 57, 42, 0.1);
  color: #b2382b;
  font-size: 13px;
  font-weight: 900;
}

.red-packet-copy strong {
  display: block;
  margin-top: 14px;
  color: #4a2722;
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  line-height: 1.08;
  font-weight: 900;
}

.red-packet-copy p {
  margin: 12px 0 0;
  max-width: 260px;
  color: #7a5a51;
  line-height: 1.75;
}

.red-packet-art {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 228px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #e64a35 0%, #c82626 62%, #a7191f 100%);
  border: 1px solid rgba(122, 17, 20, 0.18);
  box-shadow:
    0 22px 42px rgba(169, 32, 28, 0.26),
    inset 0 1px 0 rgba(255, 239, 181, 0.44);
  overflow: hidden;
}

.red-packet-art::before,
.red-packet-art::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 150%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translateX(-50%);
}

.red-packet-art::before {
  top: -54%;
  background: linear-gradient(180deg, rgba(255, 215, 132, 0.88), rgba(235, 145, 52, 0.22));
}

.red-packet-art::after {
  bottom: -86%;
  background: rgba(111, 13, 19, 0.22);
}

.red-packet-lid {
  position: absolute;
  inset: 0 0 auto;
  height: 86px;
  background:
    linear-gradient(135deg, transparent 49%, rgba(255, 224, 147, 0.34) 50%),
    linear-gradient(225deg, transparent 49%, rgba(255, 224, 147, 0.34) 50%);
  opacity: 0.82;
}

.red-packet-seal {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe4a3, #f3b653);
  color: #9b1d1f;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(98, 22, 19, 0.2);
}

.red-packet-amount {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  color: #ffe39a;
  font-size: clamp(3.4rem, 6vw, 5.7rem);
  line-height: 0.98;
  font-weight: 1000;
  letter-spacing: 0;
  text-shadow:
    0 4px 0 #7d1719,
    0 10px 24px rgba(72, 12, 14, 0.38),
    0 0 18px rgba(255, 232, 151, 0.42);
  -webkit-text-stroke: 1px rgba(125, 23, 25, 0.22);
}

.red-packet-ribbon {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 238, 179, 0.92);
  color: #941b1d;
  font-size: 14px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.red-packet-button {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  justify-self: start;
  background: linear-gradient(135deg, #7f1117, #b71921 58%, #d72e2c 100%);
}

.anniversary-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.detail-campaign-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 215, 99, 0.3), transparent 26%),
    linear-gradient(135deg, rgba(255, 239, 231, 0.98), rgba(255, 218, 210, 0.92));
  border-color: rgba(181, 27, 31, 0.18);
}

.detail-ribbon-banner {
  grid-column: 1 / -1;
  margin-bottom: 0;
  padding: 9px 24px;
}

.detail-ribbon-banner span,
.detail-rules-ribbon span {
  font-size: 1.05rem;
}

.detail-campaign-card h2 {
  margin: 12px 0 8px;
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 900;
  color: #651d19;
}

.detail-campaign-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.campaign-save-box {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 120px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff8e8, #fff);
  border: 1px solid rgba(181, 27, 31, 0.18);
}

.campaign-save-box span {
  color: var(--muted);
  font-size: 13px;
}

.campaign-save-box strong {
  color: #b71921;
  font-size: 1.45rem;
}

.detail-campaign-rules {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 210, 95, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(255, 247, 239, 0.92), rgba(255, 226, 218, 0.86));
  border-color: rgba(181, 27, 31, 0.16);
}

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

.detail-rule-item {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 164px;
  border-radius: 22px;
  padding: 18px;
}

@media (max-width: 1080px) {
  .anniversary-hero,
  .anniversary-content,
  .red-packet-card,
  .detail-campaign-card {
    grid-template-columns: 1fr;
  }

  .anniversary-products,
  .detail-rule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .anniversary-panel {
    padding: 20px;
    border-radius: 28px;
  }

  .anniversary-management,
  .anniversary-products,
  .detail-rule-grid {
    grid-template-columns: 1fr;
  }

  .red-packet-button {
    justify-self: stretch;
  }

  .anniversary-title {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }
}

/* Direct cart jump modules */

.cart-jump-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-radius: 28px;
  padding: 18px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 215, 134, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 242, 234, 0.9));
  border: 1px solid rgba(244, 110, 82, 0.16);
  box-shadow: 0 16px 38px rgba(92, 64, 54, 0.1);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.cart-jump-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 110, 82, 0.34);
  box-shadow: 0 22px 46px rgba(92, 64, 54, 0.14);
}

.cart-jump-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #ffb46f);
  color: #fff;
  box-shadow: 0 12px 26px rgba(244, 110, 82, 0.24);
}

.cart-jump-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.cart-jump-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.cart-jump-action {
  grid-column: 1 / -1;
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  background: rgba(244, 110, 82, 0.12);
  color: var(--primary-deep);
  font-weight: 900;
}

.cart-jump-card-wide {
  grid-template-columns: 58px minmax(0, 1fr) auto;
}

.cart-jump-card-wide .cart-jump-action {
  grid-column: auto;
  min-width: 128px;
  padding: 0 18px;
}

@media (max-width: 720px) {
  .cart-jump-card,
  .cart-jump-card-wide {
    grid-template-columns: 1fr;
  }

  .cart-jump-card-wide .cart-jump-action {
    grid-column: 1;
    width: 100%;
  }
}
