/**
 * Store catalog + product detail — Discord blue accents (#5865F2).
 * Load after css/home-zc.css (uses --discord, --bg, --white, --muted, --hdr-stack).
 */
html { height: 100%; }

body.store-blue-accent {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.store-blue-accent .zc-cart-ic .cart-badge {
  background: var(--accent);
  color: #1a1208;
}

body.store-blue-accent main.store-main {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--hdr-stack) + 1.25rem);
  padding-bottom: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

body.store-blue-accent main.store-catalog {
  max-width: 1500px;
  padding-top: calc(var(--hdr-stack) + 1rem);
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* —— Catalog (products) —— */
body.store-blue-accent .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
body.store-blue-accent .section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-inset) 75%, transparent);
  border: 1px solid color-mix(in srgb, var(--border-ui) 90%, transparent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
body.store-blue-accent .section-pill svg { width: 14px; height: 14px; }
body.store-blue-accent .page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  color: var(--white);
}
body.store-blue-accent .page-desc {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}
body.store-blue-accent .products-by-category {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}
body.store-blue-accent .product-category-block.product-category-empty { display: none; }
body.store-blue-accent .product-category-title {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--border-ui) 85%, transparent);
}
body.store-blue-accent .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  justify-content: start;
}
body.store-blue-accent .product-card {
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-card-deep) 100%);
  border: 1px solid color-mix(in srgb, var(--border-ui) 75%, transparent);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
body.store-blue-accent .product-card:hover {
  border-color: color-mix(in srgb, var(--border-ui) 100%, var(--white) 12%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px color-mix(in srgb, var(--border-ui) 60%, transparent);
}
body.store-blue-accent .product-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}
body.store-blue-accent .product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.store-blue-accent .product-card-body { padding: 0.65rem 0.8rem 0.75rem; }
body.store-blue-accent .product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
  flex-wrap: wrap;
}
body.store-blue-accent .product-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
body.store-blue-accent .product-card .product-card-category {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--white) 70%, var(--muted));
  background: color-mix(in srgb, var(--bg-inset) 65%, transparent);
  border: 1px solid color-mix(in srgb, var(--border-ui) 70%, transparent);
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
body.store-blue-accent .product-card .stock { display: none !important; }
body.store-blue-accent .product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0;
  background: transparent;
  border: none;
  flex-wrap: wrap;
}
body.store-blue-accent .product-card .btn-purchase {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  min-height: 40px;
  background: linear-gradient(145deg, var(--bg-inset) 0%, var(--bg-card-deep) 100%);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid color-mix(in srgb, var(--border-ui) 90%, transparent);
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
body.store-blue-accent .product-card .btn-purchase svg { width: 16px; height: 16px; flex-shrink: 0; }
body.store-blue-accent .product-card .btn-purchase:hover {
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-inset) 100%);
  border-color: color-mix(in srgb, var(--border-ui) 100%, var(--white) 15%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
body.store-blue-accent .product-card .price-section {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-end;
}
body.store-blue-accent .product-card .price-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
}
body.store-blue-accent .product-card .price {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--accent-bright);
  line-height: 1.2;
}

/* —— Product detail —— */
body.store-blue-accent .breadcrumb {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
body.store-blue-accent .breadcrumb a { color: var(--muted); text-decoration: none; }
body.store-blue-accent .breadcrumb a:hover { color: var(--white); }

body.store-blue-accent .product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
body.store-blue-accent .product-gallery {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
body.store-blue-accent .product-gallery img {
  width: 100%;
  border-radius: 14px;
  display: block;
  flex-shrink: 0;
}
body.store-blue-accent .product-gallery .alt-pay-note { margin-top: 1rem; }
body.store-blue-accent .product-info h1 { font-size: 2.35rem; font-weight: 700; margin-bottom: 0.75rem; }
body.store-blue-accent .product-info .status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  color: #4ade80;
  margin-bottom: 1.25rem;
}
body.store-blue-accent .product-info .status::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
}
body.store-blue-accent .product-info .price-main {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-bright);
  margin-bottom: 2rem;
}

body.store-blue-accent .option-label { font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 1rem; }
body.store-blue-accent .option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
body.store-blue-accent .option-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.26s ease, background 0.26s ease, transform 0.26s cubic-bezier(.22,.61,.36,1), box-shadow 0.28s ease;
}
body.store-blue-accent .option-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
body.store-blue-accent .option-item:hover,
body.store-blue-accent .option-item.selected {
  border-color: color-mix(in srgb, var(--accent-bright) 70%, var(--border-ui));
  background: color-mix(in srgb, var(--accent) 10%, var(--bg-inset));
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34), 0 0 24px color-mix(in srgb, var(--accent) 30%, transparent);
}
body.store-blue-accent .option-item:active {
  transform: translateY(0) scale(0.95);
}
body.store-blue-accent .option-item:active::after {
  opacity: 1;
  animation: zcOptionRipple 0.5s ease-out;
}
body.store-blue-accent .option-item .opt-label { font-weight: 600; color: var(--white); font-size: 1.1rem; }
body.store-blue-accent .option-item .opt-price { font-weight: 700; color: var(--accent-bright); font-size: 1.15rem; }
body.store-blue-accent.accounts-page .option-item.option-item--compact {
  height: 86px;
  padding: 0.95rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.store-blue-accent.accounts-page .option-item.option-item--compact .opt-label {
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.15;
  margin-bottom: 0.25rem;
}
body.store-blue-accent.accounts-page .option-item.option-item--compact .opt-price {
  line-height: 1.1;
}

body.store-blue-accent .alt-pay-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  line-height: 1.55;
  flex-shrink: 0;
}
body.store-blue-accent .alt-pay-note strong { color: var(--accent-bright); }
body.store-blue-accent .alt-pay-note a {
  color: var(--accent-bright);
  font-weight: 600;
  text-decoration: none;
}
body.store-blue-accent .alt-pay-note a:hover { text-decoration: underline; }
body.store-blue-accent .why-choose-inline {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
body.store-blue-accent .why-choose-inline h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
body.store-blue-accent .why-choose-inline p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

body.store-blue-accent .product-description { font-size: 1rem; color: var(--muted); line-height: 1.6; margin-bottom: 2rem; white-space: pre-wrap; }

body.store-blue-accent .action-buttons { display: flex; gap: 1.25rem; flex-wrap: wrap; }
body.store-blue-accent .btn-buy {
  display: inline-flex;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-items: center;
  gap: 0.65rem;
  padding: 1.1rem 2.25rem;
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-card-deep) 100%);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--accent-bright) 55%, var(--border-ui));
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 20px color-mix(in srgb, var(--accent) 25%, transparent);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.3s ease, transform 0.26s cubic-bezier(.22,.61,.36,1);
}
body.store-blue-accent .btn-buy::after,
body.store-blue-accent .btn-cart::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
body.store-blue-accent .btn-buy > *,
body.store-blue-accent .btn-cart > * {
  position: relative;
  z-index: 1;
}
body.store-blue-accent .btn-buy:hover {
  background: color-mix(in srgb, var(--accent) 18%, var(--bg-card));
  border-color: var(--accent-bright);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34), 0 0 28px color-mix(in srgb, var(--accent) 36%, transparent);
  transform: translateY(-4px) scale(1.03);
}
body.store-blue-accent .btn-buy:active {
  transform: translateY(0) scale(0.94);
}
body.store-blue-accent .btn-buy:active::after {
  opacity: 1;
  animation: zcOptionRipple 0.5s ease-out;
}
body.store-blue-accent .btn-cart {
  display: inline-flex;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-items: center;
  gap: 0.65rem;
  padding: 1.1rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.3s ease, transform 0.26s cubic-bezier(.22,.61,.36,1);
}
body.store-blue-accent .btn-cart:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.12);
  transform: translateY(-4px) scale(1.03);
}
body.store-blue-accent .btn-cart:active {
  transform: translateY(0) scale(0.94);
}
body.store-blue-accent .btn-cart:active::after {
  opacity: 1;
  animation: zcOptionRipple 0.5s ease-out;
}
@keyframes zcOptionRipple {
  from { transform: translate(-50%, -50%) scale(0); opacity: 0.34; }
  to { transform: translate(-50%, -50%) scale(18); opacity: 0; }
}

body.store-blue-accent .system-requirements { margin-top: 4rem; }
body.store-blue-accent .system-requirements h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--white); }
body.store-blue-accent .req-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.25rem; }
body.store-blue-accent .req-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
body.store-blue-accent .req-card .req-icon { color: #4ade80; margin-bottom: 1rem; }
body.store-blue-accent .req-card .req-icon svg { width: 28px; height: 28px; }
body.store-blue-accent .req-card .req-label { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.5rem; }
body.store-blue-accent .req-card .req-value { font-size: 1.15rem; font-weight: 600; color: var(--white); }
body.store-blue-accent .req-accent { color: var(--accent-bright); font-weight: 600; }

body.store-blue-accent .features-section { margin-top: 4rem; }
body.store-blue-accent .features-section h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--white); }
body.store-blue-accent .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
body.store-blue-accent .feature-panel {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
body.store-blue-accent .feature-panel-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem; }
body.store-blue-accent .feature-panel-header .icon { color: #4ade80; }
body.store-blue-accent .feature-panel-header .icon svg { width: 24px; height: 24px; }
body.store-blue-accent .feature-panel-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); }
body.store-blue-accent .feature-panel ul { list-style: none; }
body.store-blue-accent .feature-panel li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.4;
}
body.store-blue-accent .feature-panel li:last-child { border-bottom: none; }

/* Fortnite product: on-page reviews anchor */
body.store-blue-accent #fortnite-buy { scroll-margin-top: calc(var(--hdr-stack) + 0.75rem); }
body.store-blue-accent #reviews { scroll-margin-top: calc(var(--hdr-stack) + 0.75rem); }

body.store-blue-accent .product-page-testimonials {
  padding-left: 0;
  padding-right: 0;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
body.store-blue-accent .product-page-testimonials .zc-testimonials-box {
  padding: 1.75rem 1.35rem 1.65rem;
}
body.store-blue-accent .product-page-testimonials .testimonials-header {
  margin-bottom: 1.35rem;
}
body.store-blue-accent .product-page-testimonials .testimonials-header h2 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
}
body.store-blue-accent .product-page-testimonials .testimonials-header p {
  font-size: 0.92rem;
}
body.store-blue-accent .product-page-testimonials .testimonials-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
@media (min-width: 900px) {
  body.store-blue-accent .product-page-testimonials .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
}
body.store-blue-accent .product-page-testimonials .testimonial-card {
  padding: 1rem 1rem;
}
body.store-blue-accent .product-page-testimonials .testimonial-stars-text {
  color: var(--accent-bright);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
body.store-blue-accent .product-page-testimonials .testimonial-quote {
  font-size: 0.82rem;
}

/* —— Products catalog: 3 game columns × vertical tiles (products.html only) —— */
body.catalog-rows-layout main.store-catalog {
  max-width: 1320px;
}
body.catalog-rows-layout .catalog-page-header {
  text-align: left;
  margin-bottom: 1.5rem;
}
body.catalog-rows-layout .catalog-page-header .page-title {
  margin-bottom: 0.5rem;
}
body.catalog-rows-layout .catalog-page-header .page-desc {
  margin: 0;
  max-width: 38rem;
}

body.catalog-rows-layout .catalog-search-wrap {
  width: 100%;
  margin: 0 0 1.75rem;
}
body.catalog-rows-layout .catalog-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 48px;
  padding: 0 1rem;
  box-sizing: border-box;
  background: var(--bg-inset);
  border: 1px solid color-mix(in srgb, var(--border-ui) 80%, transparent);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.catalog-rows-layout .catalog-search:focus-within {
  border-color: color-mix(in srgb, var(--pick-gold-mid) 55%, var(--border-ui));
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--pick-gold-glow) 40%, transparent),
    0 4px 28px rgba(0, 0, 0, 0.4);
}
body.catalog-rows-layout .catalog-search-ic-wrap {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  pointer-events: none;
}
body.catalog-rows-layout .catalog-search-ic {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}
body.catalog-rows-layout .catalog-search:focus-within .catalog-search-ic-wrap {
  color: var(--pick-gold-bright);
}
body.catalog-rows-layout .catalog-search-input {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 0.75rem 0;
  outline: none;
}
body.catalog-rows-layout .catalog-search-input::placeholder {
  color: color-mix(in srgb, var(--muted) 80%, transparent);
}
body.catalog-rows-layout .catalog-search-empty {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}

/* Single full-width grid (no per-game column “pager”) */
body.catalog-rows-layout .products-by-category.catalog-single-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}
body.catalog-rows-layout .product-category-block {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
body.catalog-rows-layout .catalog-game-heading {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0;
  padding: 0 0 0.35rem;
  border-bottom: 1px solid color-mix(in srgb, var(--border-ui) 75%, transparent);
}
body.catalog-rows-layout .catalog-game-block--empty {
  display: none !important;
}

/* Flowing catalog grid; consecutive cards (e.g. Temp + Perm spoofer) stay on one row when space allows */
body.catalog-rows-layout .catalog-rows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(236px, 1fr));
  gap: 1.2rem;
  min-width: 0;
}

body.catalog-rows-layout .catalog-row-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-width: 0;
  padding: 0.75rem 0.8rem 0.85rem;
  background: var(--bg-inset);
  border: 1px solid color-mix(in srgb, var(--border-ui) 85%, transparent);
  border-radius: 14px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.32);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: color-mix(in srgb, var(--accent-bright) 25%, transparent);
}
body.catalog-rows-layout .catalog-row-card:hover {
  border-color: color-mix(in srgb, var(--accent-bright) 45%, var(--border-ui));
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.38);
}
body.catalog-rows-layout .catalog-row-card:hover .catalog-row-thumb {
  border-color: color-mix(in srgb, var(--accent-bright) 55%, var(--accent));
  box-shadow: 0 0 22px color-mix(in srgb, var(--accent) 28%, transparent);
}
body.catalog-rows-layout .catalog-row-card:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}
body.catalog-rows-layout .catalog-row-card--hidden {
  display: none !important;
}

body.catalog-rows-layout .catalog-row-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 158px;
  flex-shrink: 0;
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 0 14px color-mix(in srgb, var(--accent) 18%, transparent);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.catalog-rows-layout .catalog-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

body.catalog-rows-layout .catalog-row-body {
  flex: 0 0 auto;
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.62rem 0.1rem 0.15rem;
}
body.catalog-rows-layout .catalog-row-title {
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
body.catalog-rows-layout .catalog-row-sub {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}

@media (max-width: 1024px) {
  body.catalog-rows-layout .catalog-rows-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  }
}
@media (max-width: 640px) {
  body.catalog-rows-layout .catalog-rows-grid {
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
    gap: 0.9rem;
  }
  body.catalog-rows-layout .catalog-row-card {
    padding: 0.7rem 0.75rem 0.8rem;
  }
  body.catalog-rows-layout .catalog-row-thumb {
    max-height: 138px;
  }
  body.catalog-rows-layout .catalog-row-title {
    font-size: 0.88rem;
  }
}

/* product (dynamic page) */
body.store-blue-accent .product-not-found { text-align: center; padding: 4rem 2rem; }
body.store-blue-accent .product-not-found h1 { font-size: 1.75rem; margin-bottom: 1rem; color: var(--white); }
body.store-blue-accent .product-not-found p { color: var(--muted); margin-bottom: 1.5rem; }
body.store-blue-accent .product-not-found a { color: var(--accent-bright); font-weight: 600; text-decoration: none; }
body.store-blue-accent .product-not-found a:hover { text-decoration: underline; }

/* Spoofer pages: 3-col req grid */
body.store-blue-accent .req-grid.req-grid--three { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  body.store-blue-accent .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.85rem;
  }
  body.store-blue-accent .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body.store-blue-accent .product-detail { grid-template-columns: 1fr; gap: 2rem; }
  body.store-blue-accent main.store-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 3rem;
  }
  body.store-blue-accent .product-info h1 { font-size: 1.75rem; }
  body.store-blue-accent .product-info .price-main { font-size: 1.5rem; margin-bottom: 1.25rem; }
  body.store-blue-accent .option-grid { grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
  body.store-blue-accent .option-item { padding: 1rem; }
  body.store-blue-accent .action-buttons { flex-direction: column; gap: 0.75rem; }
  body.store-blue-accent .action-buttons .btn-buy,
  body.store-blue-accent .action-buttons .btn-cart { width: 100%; justify-content: center; padding: 1rem 1.5rem; font-size: 1.05rem; }
  body.store-blue-accent .product-gallery .alt-pay-note { flex: 0 0 auto; display: block; }
  body.store-blue-accent .alt-pay-note { font-size: 0.95rem; padding: 1rem 1.15rem; margin-top: 1rem; }
  body.store-blue-accent .breadcrumb { font-size: 0.9rem; margin-bottom: 1.25rem; word-break: break-word; }
  body.store-blue-accent .req-grid,
  body.store-blue-accent .req-grid.req-grid--three { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  body.store-blue-accent .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 0.7rem;
  }
}
@media (max-width: 480px) {
  body.store-blue-accent main.store-main {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: calc(var(--hdr-stack) + 0.75rem);
  }
  body.store-blue-accent .product-info h1 { font-size: 1.5rem; }
  body.store-blue-accent .product-info .price-main { font-size: 1.35rem; }
  body.store-blue-accent .option-label { font-size: 1rem; }
  body.store-blue-accent .product-gallery img { border-radius: 10px; }
}
