.home-storefront,
.home-storefront * {
  box-sizing: border-box;
}

.home-storefront {
  --home-teal: #2aa08f;
  --home-sage: #75a78b;
  --home-warm: #d6a05a;
  --home-coral: #bf695e;
  --home-ink: #25344a;
  --home-surface: color-mix(in srgb, var(--panel-bg) 92%, var(--home-sage) 8%);
  --home-surface-strong: color-mix(in srgb, var(--panel-bg-strong) 90%, var(--home-sage) 10%);
  --home-surface-soft: color-mix(in srgb, var(--home-sage) 10%, var(--panel-bg));
  --home-border: color-mix(in srgb, var(--line-color) 82%, var(--home-sage));
  --home-border-strong: color-mix(in srgb, var(--home-teal) 36%, var(--line-color));
  --home-text: var(--text-primary);
  --home-muted: var(--text-muted);
  --home-soft: var(--text-soft);
  --home-brand: var(--brand-500);
  --home-brand-hover: color-mix(in srgb, var(--brand-600) 74%, var(--home-teal));
  --home-accent: var(--home-teal);
  --home-success: var(--success);
  --home-warning: var(--warning);
  --home-danger: var(--danger);
  --home-info: var(--info);
  --home-radius-sm: 8px;
  --home-radius-md: 12px;
  --home-radius-lg: 16px;
  --home-shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.18);
  --home-shadow-md: 0 18px 44px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 1.25rem;
}

html[data-theme] body:has(.home-storefront) {
  --page-shell-max-width: 116rem;
}

:root:not([data-theme="light"]) .home-storefront {
  --home-warning: #d6a05a;
  --home-success: #55c7a6;
  --home-info: #7da8d8;
}

html[dir="ltr"] .home-storefront {
  text-align: left;
}

html[dir="rtl"] .home-storefront {
  text-align: right;
}

.home-storefront a {
  text-decoration: none;
}

.home-storefront svg {
  display: block;
  fill: currentColor;
}

.home-hero-showcase {
  outline: none;
}

.home-hero-shell {
  --home-hero-slide-height: 31rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--home-border) 78%, transparent);
  border-radius: calc(var(--home-radius-lg) + 0.18rem);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--home-surface-strong) 38%, transparent), transparent 58%),
    linear-gradient(135deg, color-mix(in srgb, var(--home-sage) 16%, transparent), transparent 46%),
    linear-gradient(225deg, color-mix(in srgb, var(--home-warm) 10%, transparent), transparent 38%),
    linear-gradient(160deg, color-mix(in srgb, var(--home-surface-strong) 90%, var(--home-surface)), var(--home-surface));
  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    inset 0 0 0 1px rgba(255, 255, 255, 0.018);
  padding: 0.82rem;
}

.home-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(229, 231, 235, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 88%);
}

.home-hero-progress {
  display: grid;
  grid-template-columns: repeat(var(--hero-slide-count, 1), minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  padding-inline: 0.2rem;
}

.home-hero-progress-segment {
  display: block;
  height: 0.18rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line-color) 72%, transparent);
  opacity: 0.72;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform-origin: center;
  transition: transform 220ms ease, background-color 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
}

.home-hero-progress-segment.is-active {
  background: linear-gradient(90deg, var(--home-teal), var(--home-warm), var(--home-brand));
  opacity: 1;
  transform: scaleY(1.36);
  box-shadow: 0 0 14px color-mix(in srgb, var(--home-accent) 34%, transparent);
}

.home-hero-carousel {
  display: grid;
  min-height: var(--home-hero-slide-height);
  position: relative;
}

.home-hero-slide {
  --hero-panel: color-mix(in srgb, var(--panel-bg-strong) 82%, transparent);
  --hero-panel-soft: color-mix(in srgb, var(--brand-500) 10%, var(--panel-bg));
  --hero-outline: color-mix(in srgb, var(--brand-400) 22%, var(--line-color));
  --hero-title: var(--text-primary);
  --hero-body: color-mix(in srgb, var(--text-primary) 84%, var(--text-muted));
  --hero-muted: var(--text-muted);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  gap: 0.8rem;
  grid-area: 1 / 1;
  align-items: stretch;
  min-height: var(--home-hero-slide-height);
  height: var(--home-hero-slide-height);
}

.home-hero-slide[hidden] {
  display: none !important;
}

.home-hero-surface-brand {
  --home-accent: var(--home-teal);
  --hero-outline: color-mix(in srgb, var(--home-teal) 34%, var(--line-color));
}

.home-hero-surface-pearl {
  --home-accent: var(--home-warm);
  --hero-outline: color-mix(in srgb, var(--home-warm) 34%, var(--line-color));
}

.home-hero-surface-midnight {
  --home-accent: var(--home-sage);
  --hero-outline: color-mix(in srgb, var(--home-sage) 34%, var(--line-color));
}

.home-hero-slide-copy,
.home-hero-slide-media {
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.home-hero-slide-copy {
  display: flex;
  align-items: stretch;
}

.home-hero-copy-card {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--hero-outline) 54%, transparent);
  border-radius: var(--home-radius-md);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--hero-panel) 84%, transparent), color-mix(in srgb, var(--hero-panel-soft) 72%, transparent));
  padding: 1.55rem;
  box-shadow:
    0 18px 34px rgba(2, 6, 23, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(6px);
}

.home-hero-copy-card::before {
  content: "";
  position: absolute;
  inset-block: 2.2rem;
  inset-inline-start: 0.95rem;
  width: 0.12rem;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--home-accent) 22%, var(--home-brand) 78%, transparent);
  opacity: 0.32;
  box-shadow: 0 0 10px color-mix(in srgb, var(--home-accent) 16%, transparent);
}

.home-hero-copy-card > * {
  position: relative;
  z-index: 1;
}

.home-hero-slide-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.home-hero-slide-eyebrow,
.home-hero-slide-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  border: 1px solid color-mix(in srgb, var(--hero-outline) 72%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-muted) 72%, transparent);
  color: var(--hero-muted);
  line-height: 1.2;
  white-space: nowrap;
}

.home-hero-slide-eyebrow {
  color: var(--home-accent);
  padding: 0.48rem 1.05rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.45;
}

.home-hero-slide-index {
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.home-hero-slide-title {
  max-width: min(100%, 28ch);
  margin: 0;
  color: var(--hero-title);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 1.48vw + 1.28rem, 3.05rem);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
  text-shadow: 0 10px 26px rgba(2, 6, 23, 0.34);
}

.home-hero-slide-title::after {
  content: "";
  display: block;
  width: min(8.5rem, 36%);
  height: 0.18rem;
  margin-block-start: 0.72rem;
  margin-inline-start: 0;
  margin-inline-end: auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-accent), color-mix(in srgb, var(--home-brand) 82%, transparent));
  box-shadow: 0 0 16px color-mix(in srgb, var(--home-accent) 24%, transparent);
  opacity: 0.92;
}

.home-hero-slide-summary {
  max-width: 62ch;
  margin: 1.05rem 0 0;
  color: var(--hero-body);
  font-size: 0.96rem;
  line-height: 1.86;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.home-hero-point-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.home-hero-point-item {
  position: relative;
  min-height: 3.65rem;
  border: 1px solid color-mix(in srgb, var(--hero-outline) 56%, transparent);
  border-radius: var(--home-radius-sm);
  background: color-mix(in srgb, var(--surface-muted) 60%, transparent);
  color: var(--hero-body);
  padding: 0.68rem 0.78rem;
  padding-inline-start: 1.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.58;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.home-hero-point-item::before {
  content: "";
  position: absolute;
  inset-inline-start: 0.72rem;
  top: 0.9rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--home-accent);
  box-shadow: 0 0 0 0.24rem color-mix(in srgb, var(--home-accent) 14%, transparent);
}

.home-hero-action-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9.25rem), 1fr));
  gap: 0.65rem;
  margin-top: 1.1rem;
  max-width: 100%;
}

.home-hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  min-height: 2.9rem;
  border: 1px solid transparent;
  border-radius: var(--home-radius-sm);
  padding: 0.68rem 1rem;
  color: var(--home-text);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: break-word;
  word-break: normal;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.home-hero-action:hover,
.home-hero-action:focus-visible {
  transform: translateY(-1px);
}

.home-hero-action-primary {
  border-color: color-mix(in srgb, var(--home-brand) 72%, var(--home-teal));
  background: linear-gradient(135deg, color-mix(in srgb, var(--home-brand) 72%, var(--home-teal)), var(--home-brand));
  color: #f9fafb;
  box-shadow: 0 12px 26px rgba(26, 79, 216, 0.22);
}

.home-hero-action-primary:hover,
.home-hero-action-primary:focus-visible {
  border-color: var(--home-brand-hover);
  background: linear-gradient(135deg, var(--home-brand-hover), var(--home-brand));
}

.home-hero-action-secondary {
  border-color: color-mix(in srgb, var(--home-brand) 34%, var(--line-color));
  background: color-mix(in srgb, var(--home-brand) 10%, var(--surface-muted));
  color: var(--home-accent);
}

.home-hero-action-ghost {
  border-color: color-mix(in srgb, var(--line-color) 88%, var(--home-brand));
  background: color-mix(in srgb, var(--surface-muted) 84%, transparent);
  color: var(--home-muted);
}

.home-hero-slide-media {
  display: flex;
  align-items: stretch;
}

.home-hero-media-frame {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--hero-outline) 58%, transparent);
  border-radius: var(--home-radius-md);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand-500) 12%, var(--surface-muted)), transparent 52%),
    var(--surface-muted);
  box-shadow:
    0 16px 30px rgba(2, 6, 23, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.home-hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(11, 13, 16, 0.4));
}

.home-hero-media-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-hero-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1);
}

.home-hero-media-caption {
  position: absolute;
  inset-inline: 0.9rem;
  bottom: 0.9rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border: 1px solid rgba(229, 231, 235, 0.12);
  border-radius: var(--home-radius-sm);
  background: rgba(11, 13, 16, 0.56);
  color: #e5e7eb;
  padding: 0.72rem 0.82rem;
  backdrop-filter: blur(14px);
}

.home-hero-media-caption span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(229, 231, 235, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.home-hero-media-caption strong {
  flex-shrink: 0;
  color: var(--home-accent);
  font-size: 1rem;
  font-weight: 900;
}

.home-hero-media-abstract {
  align-items: end;
  padding: 1rem;
}

.home-hero-abstract-grid {
  position: absolute;
  inset: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0.7rem;
}

.home-hero-abstract-grid span {
  border: 1px solid color-mix(in srgb, var(--brand-500) 18%, var(--line-color));
  border-radius: var(--home-radius-sm);
  background: linear-gradient(160deg, color-mix(in srgb, var(--brand-500) 12%, transparent), color-mix(in srgb, var(--surface-muted) 84%, transparent));
}

.home-hero-story-card {
  position: relative;
  z-index: 1;
  width: min(100%, 24rem);
  border: 1px solid color-mix(in srgb, var(--brand-400) 20%, var(--line-color));
  border-radius: var(--home-radius-md);
  background: color-mix(in srgb, var(--panel-bg-strong) 88%, transparent);
  padding: 1rem;
}

.home-hero-story-kicker {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--home-accent);
  font-size: 0.75rem;
  font-weight: 900;
}

.home-hero-story-title {
  display: block;
  color: var(--home-text);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.65;
}

.home-hero-story-summary {
  margin: 0.55rem 0 0;
  color: var(--home-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.home-hero-bottom-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.55rem;
}

.home-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.home-hero-metric-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  min-width: 0;
  min-height: 2.55rem;
  border: 1px solid color-mix(in srgb, var(--home-border) 82%, transparent);
  border-radius: var(--home-radius-sm);
  background: color-mix(in srgb, var(--surface-muted) 72%, transparent);
  padding: 0.52rem 0.75rem;
}

.home-hero-metric-card strong,
.home-hero-metric-card span {
  display: inline;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-hero-metric-card strong {
  flex: 0 0 auto;
  color: var(--home-text);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
}

.home-hero-metric-card span {
  flex: 1 1 auto;
  margin-top: 0;
  color: var(--home-muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.home-hero-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.home-hero-dot-nav,
.home-hero-arrow-group {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.home-hero-icon-button,
.home-hero-dot {
  border: 1px solid var(--home-border);
  background: color-mix(in srgb, var(--surface-muted) 84%, transparent);
  color: var(--home-muted);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.home-hero-icon-button:hover,
.home-hero-icon-button:focus-visible,
.home-hero-dot:hover,
.home-hero-dot:focus-visible {
  border-color: var(--home-border-strong);
  background: color-mix(in srgb, var(--home-brand) 10%, var(--surface-muted));
  color: var(--home-accent);
  transform: translateY(-1px);
}

.home-hero-arrow,
.home-hero-mobile-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--home-radius-sm);
  padding: 0;
}

.home-hero-arrow svg,
.home-hero-mobile-nav-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

html[dir="rtl"] .home-hero-arrow svg,
html[dir="rtl"] .home-hero-mobile-nav-button svg {
  transform: scaleX(-1);
}

.home-hero-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  padding: 0;
}

.home-hero-dot.is-active {
  width: 2rem;
  border-color: color-mix(in srgb, var(--home-accent) 72%, var(--home-brand));
  background: linear-gradient(90deg, var(--home-accent), var(--home-warm));
}

.home-hero-mobile-nav {
  display: none;
}

.home-hero-slide-transition-enter,
.home-hero-slide-transition-leave {
  transition: opacity 360ms ease, transform 360ms ease, filter 360ms ease;
}

.home-hero-slide-transition-enter-start {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(1rem, 0, 0);
}

.home-hero-slide-transition-enter-end,
.home-hero-slide-transition-leave-start {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.home-hero-slide-transition-leave-end {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(-0.75rem, 0, 0);
}

.storefront-service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.storefront-service-card,
.storefront-category-card,
.storefront-brand-card,
.storefront-compact-product,
.storefront-product-card,
.storefront-process-card,
.storefront-trust-card,
.storefront-sales-path-card,
.storefront-recommend-card,
.storefront-rfq-product-row,
.storefront-procurement-panel,
.storefront-rfq-panel {
  min-width: 0;
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-lg);
  background: var(--home-surface);
  box-shadow: var(--home-shadow-sm);
}

.storefront-service-card,
.storefront-category-card,
.storefront-brand-card,
.storefront-compact-product,
.storefront-sales-mini-product,
.storefront-recommend-card,
.storefront-rfq-product-row {
  color: var(--home-text);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.storefront-service-card:hover,
.storefront-service-card:focus-visible,
.storefront-category-card:hover,
.storefront-category-card:focus-visible,
.storefront-brand-card:hover,
.storefront-brand-card:focus-visible,
.storefront-compact-product:hover,
.storefront-compact-product:focus-visible,
.storefront-sales-mini-product:hover,
.storefront-sales-mini-product:focus-visible,
.storefront-recommend-card:hover,
.storefront-recommend-card:focus-within,
.storefront-rfq-product-row:hover,
.storefront-rfq-product-row:focus-visible {
  border-color: var(--home-border-strong);
  background: var(--home-surface-soft);
  box-shadow: var(--home-shadow-md);
  transform: translateY(-2px);
}

.storefront-service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem;
}

.storefront-service-card strong,
.storefront-service-card small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.storefront-service-card strong {
  color: var(--home-text);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.45;
}

.storefront-service-card small {
  margin-top: 0.18rem;
  color: var(--home-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.storefront-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--home-radius-sm);
  border: 1px solid color-mix(in srgb, currentColor 22%, transparent);
  background: color-mix(in srgb, currentColor 10%, transparent);
}

.storefront-service-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.storefront-service-card-primary .storefront-service-icon {
  color: var(--home-brand);
}

.storefront-service-card-warning .storefront-service-icon {
  color: var(--home-warning);
}

.storefront-service-card-success .storefront-service-icon {
  color: var(--home-success);
}

.storefront-service-card-info .storefront-service-icon {
  color: var(--home-info);
}

.storefront-section {
  display: grid;
  gap: 1rem;
  padding-block: 0.15rem;
}

.storefront-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.storefront-section-header > div {
  min-width: 0;
}

.storefront-section-header h2,
.storefront-rfq-panel h2 {
  margin: 0;
  color: var(--home-text);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.storefront-section-header-tight {
  align-items: flex-start;
}

.storefront-eyebrow {
  margin: 0 0 0.25rem;
  color: var(--home-accent);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.5;
}

.storefront-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--home-brand) 28%, var(--line-color));
  border-radius: var(--home-radius-sm);
  background: color-mix(in srgb, var(--home-brand) 8%, var(--surface-muted));
  color: var(--home-brand);
  padding: 0.58rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.storefront-link:hover,
.storefront-link:focus-visible {
  border-color: var(--home-brand);
  background: color-mix(in srgb, var(--home-brand) 12%, var(--surface-muted));
  transform: translateY(-1px);
}

.storefront-sales-path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 0.85rem;
}

.storefront-sales-path-card {
  --path-tone: var(--home-brand);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0.82rem;
  overflow: hidden;
  border-color: color-mix(in srgb, var(--path-tone) 24%, var(--home-border));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--path-tone) 8%, transparent), transparent 38%),
    var(--home-surface);
  padding: 0.95rem;
}

.storefront-sales-path-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-start: 0;
  z-index: -1;
  height: 0.2rem;
  background: var(--path-tone);
}

.storefront-sales-path-card-success {
  --path-tone: var(--home-success);
}

.storefront-sales-path-card-warning {
  --path-tone: var(--home-warning);
}

.storefront-sales-path-card-info {
  --path-tone: var(--home-info);
}

.storefront-sales-path-copy,
.storefront-recommend-body,
.storefront-procurement-panel > div {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
}

.storefront-sales-path-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 1.75rem;
  border: 1px solid color-mix(in srgb, var(--path-tone) 34%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--path-tone) 13%, var(--surface-muted));
  color: var(--path-tone);
  padding: 0.22rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
}

.storefront-sales-path-card h3,
.storefront-recommend-body h3 {
  margin: 0;
  color: var(--home-text);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.storefront-sales-path-card p,
.storefront-recommend-body p,
.storefront-procurement-panel p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.78;
}

.storefront-sales-mini-list,
.storefront-sales-path-points,
.storefront-procurement-panel ul {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.storefront-sales-mini-product {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.58rem;
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--home-border) 82%, transparent);
  border-radius: var(--home-radius-sm);
  background: color-mix(in srgb, var(--surface-muted) 72%, transparent);
  padding: 0.5rem;
}

.storefront-sales-mini-media,
.storefront-rfq-product-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-sm);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--media-a, var(--home-brand)) 24%, transparent), transparent 48%),
    linear-gradient(160deg, color-mix(in srgb, var(--media-b, var(--home-accent)) 20%, var(--panel-bg-strong)), var(--panel-bg));
  color: #f9fafb;
  font-weight: 950;
}

.storefront-sales-mini-media {
  width: 2.72rem;
  height: 2.72rem;
}

.storefront-sales-mini-media img,
.storefront-rfq-product-media img,
.storefront-recommend-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.storefront-sales-mini-copy,
.storefront-rfq-product-main {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.storefront-sales-mini-copy strong,
.storefront-rfq-product-main strong,
.storefront-procurement-panel strong {
  min-width: 0;
  overflow: hidden;
  color: var(--home-text);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.storefront-sales-mini-copy small,
.storefront-rfq-product-main small,
.storefront-rfq-product-state small {
  min-width: 0;
  overflow: hidden;
  color: var(--home-muted);
  font-size: 0.7rem;
  font-weight: 760;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.storefront-sales-path-points li,
.storefront-procurement-panel li {
  position: relative;
  color: var(--home-muted);
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1.65;
  padding-inline-start: 1.2rem;
}

.storefront-sales-path-points li::before,
.storefront-procurement-panel li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--path-tone, var(--home-brand));
}

.storefront-sales-path-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.storefront-sales-path-footer > span,
.storefront-sales-path-count {
  color: color-mix(in srgb, var(--path-tone) 64%, var(--home-muted));
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.3;
  white-space: nowrap;
}

.storefront-recommended-section {
  overflow: hidden;
}

.storefront-recommend-carousel {
  position: relative;
  min-width: 0;
  padding-block-start: 2.65rem;
  padding-inline: 0;
}

.storefront-recommend-carousel::before,
.storefront-recommend-carousel::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 2;
  pointer-events: none;
  width: 1.15rem;
  opacity: 0.72;
}

.storefront-recommend-carousel::before {
  inset-inline-start: 0;
  background: linear-gradient(to right, var(--panel-bg) 8%, transparent);
}

.storefront-recommend-carousel::after {
  inset-inline-end: 0;
  background: linear-gradient(to left, var(--panel-bg) 8%, transparent);
}

html[dir="rtl"] .storefront-recommend-carousel::before {
  background: linear-gradient(to left, var(--panel-bg) 8%, transparent);
}

html[dir="rtl"] .storefront-recommend-carousel::after {
  background: linear-gradient(to right, var(--panel-bg) 8%, transparent);
}

.storefront-recommend-viewport {
  min-width: 0;
  overflow: hidden;
  margin-block-end: -1rem;
  padding-block-end: 1rem;
}

.storefront-recommend-rail {
  display: flex;
  gap: 0.95rem;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  margin-block-end: -1rem;
  padding-block: 0.15rem 1.4rem;
  scroll-behavior: smooth;
  scroll-padding-inline: 0.4rem;
  scroll-snap-type: inline mandatory;
  scrollbar-color: transparent transparent;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.storefront-recommend-rail::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

html[data-theme] body .home-storefront .storefront-recommend-rail {
  scrollbar-color: transparent transparent !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

html[data-theme] body .home-storefront .storefront-recommend-rail::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

html[data-theme] body .home-storefront .storefront-recommend-rail::-webkit-scrollbar-track,
html[data-theme] body .home-storefront .storefront-recommend-rail::-webkit-scrollbar-thumb {
  border: 0 !important;
  background: transparent !important;
}

.storefront-recommend-card {
  flex: 0 0 clamp(18rem, 25vw, 21.5rem);
  display: grid;
  grid-template-rows: 10.75rem minmax(0, 1fr);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.storefront-recommend-nav {
  position: absolute;
  inset-block-start: 0.12rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.24rem;
  height: 2.24rem;
  border: 1px solid color-mix(in srgb, var(--home-brand) 30%, var(--home-border));
  border-radius: 0.72rem;
  background: color-mix(in srgb, var(--panel-bg) 84%, transparent);
  color: var(--home-brand);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transform: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.storefront-recommend-nav-prev {
  inset-inline-start: auto;
  inset-inline-end: 2.75rem;
}

.storefront-recommend-nav-next {
  inset-inline-end: 0.2rem;
}

.storefront-recommend-nav:hover,
.storefront-recommend-nav:focus-visible {
  border-color: var(--home-border-strong);
  background: color-mix(in srgb, var(--home-brand) 12%, var(--panel-bg));
  color: var(--home-brand-hover);
  transform: translateY(-1px);
}

.storefront-recommend-nav:disabled {
  cursor: default;
  opacity: 0.36;
  transform: none;
}

.storefront-recommend-carousel[data-scrollable="false"] .storefront-recommend-nav {
  display: none;
}

.storefront-recommend-nav svg {
  width: 1.2rem;
  height: 1.2rem;
}

html[dir="rtl"] .storefront-recommend-nav svg {
  transform: scaleX(-1);
}

.storefront-recommend-media {
  --media-a: var(--home-info);
  --media-b: var(--home-brand);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10.75rem;
  overflow: hidden;
  border-bottom: 1px solid var(--home-border);
  background:
    linear-gradient(rgba(229, 231, 235, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.065) 1px, transparent 1px),
    linear-gradient(135deg, color-mix(in srgb, var(--media-a) 24%, transparent), transparent 48%),
    linear-gradient(160deg, color-mix(in srgb, var(--media-b) 22%, var(--panel-bg-strong)), var(--panel-bg));
  background-size: 30px 30px, 30px 30px, auto, auto;
  color: #f9fafb;
  font-size: 2rem;
  font-weight: 950;
}

.storefront-recommend-media img {
  padding: 1.2rem;
}

.storefront-recommend-body {
  padding: 0.95rem;
}

.storefront-recommend-body .storefront-price-row {
  margin-top: 0.2rem;
}

.storefront-recommend-body .storefront-card-action {
  min-height: 2.2rem;
  padding-inline: 0.7rem;
}

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

.storefront-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0.5rem;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.storefront-product-card.has-database-product {
  background: color-mix(in srgb, var(--home-surface-strong) 72%, var(--home-surface));
}

.storefront-product-card:hover,
.storefront-product-card:focus-within {
  background: color-mix(in srgb, var(--home-surface-strong) 86%, var(--home-surface-soft));
  border-color: var(--home-border-strong);
}

.storefront-product-media {
  --media-a: var(--home-brand);
  --media-b: var(--home-accent);
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 11.35rem;
  overflow: hidden;
  border-bottom: 1px solid var(--home-border);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--home-text) 6%, transparent) 1px, transparent 1px),
    linear-gradient(180deg, color-mix(in srgb, var(--home-text) 6%, transparent) 1px, transparent 1px),
    color-mix(in srgb, var(--panel-bg-strong) 86%, var(--media-a));
  background-size: 32px 32px, 32px 32px, auto;
  color: #e5e7eb;
  padding: 0.8rem;
}

.storefront-product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229, 231, 235, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.065) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.62;
}

.storefront-product-media-automation {
  --media-a: var(--home-brand);
  --media-b: var(--home-accent);
}

.storefront-product-media-measurement {
  --media-a: var(--home-info);
  --media-b: var(--home-accent);
}

.storefront-product-media-power {
  --media-a: var(--home-warning);
  --media-b: var(--home-brand);
}

.storefront-product-media-safety {
  --media-a: var(--home-success);
  --media-b: var(--home-danger);
}

.storefront-product-category,
.storefront-product-brand,
.storefront-product-device {
  position: relative;
  z-index: 1;
}

.storefront-product-category,
.storefront-product-brand {
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.16);
  border-radius: 0.45rem;
  background: rgba(11, 13, 16, 0.34);
  color: rgba(229, 231, 235, 0.88);
  font-family: var(--font-body, var(--font-sans, inherit));
  padding: 0.28rem 0.58rem;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.storefront-product-brand {
  justify-self: end;
  color: #e5e7eb;
}

.storefront-product-device {
  align-self: center;
  justify-self: center;
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 0.4rem;
  width: 7rem;
  height: 5.4rem;
  transform: rotate(-5deg);
}

html[dir="rtl"] .storefront-product-device {
  transform: rotate(5deg);
}

.storefront-product-device span {
  display: block;
  border: 1px solid rgba(229, 231, 235, 0.24);
  background: rgba(229, 231, 235, 0.1);
  box-shadow: inset 0 1px 0 rgba(229, 231, 235, 0.16);
}

.storefront-product-device span:first-child {
  grid-row: 1 / span 2;
  border-radius: var(--home-radius-md);
}

.storefront-product-device span:nth-child(2),
.storefront-product-device span:nth-child(3) {
  border-radius: var(--home-radius-sm);
}

.storefront-product-body {
  display: grid;
  flex: 1;
  font-family: var(--font-body, var(--font-sans, inherit));
  gap: 0.72rem;
  padding: 0.88rem;
}

.storefront-product-meta,
.storefront-spec-row,
.storefront-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.storefront-product-copy {
  display: grid;
  gap: 0.28rem;
  text-align: start;
}

.storefront-product-copy h3 {
  display: -webkit-box;
  margin: 0;
  color: var(--home-text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0;
  text-align: start;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.storefront-product-copy p {
  display: -webkit-box;
  margin: 0;
  color: color-mix(in srgb, var(--home-text) 58%, var(--home-muted));
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: start;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.storefront-pill,
.storefront-spec-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.6rem;
  border: 1px solid var(--home-border);
  border-radius: 0.45rem;
  background: color-mix(in srgb, var(--surface-muted) 78%, transparent);
  color: var(--home-muted);
  font-family: inherit;
  padding: 0.22rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.storefront-pill-success {
  border-color: color-mix(in srgb, var(--home-success) 28%, transparent);
  background: color-mix(in srgb, var(--home-success) 10%, var(--surface-muted));
  color: var(--home-success);
}

.storefront-pill-warning {
  border-color: color-mix(in srgb, var(--home-warning) 28%, transparent);
  background: color-mix(in srgb, var(--home-warning) 10%, var(--surface-muted));
  color: var(--home-warning);
}

.storefront-pill-info {
  border-color: color-mix(in srgb, var(--home-info) 28%, transparent);
  background: color-mix(in srgb, var(--home-info) 10%, var(--surface-muted));
  color: var(--home-info);
}

.storefront-offer-help {
  position: relative;
  cursor: help;
}

.storefront-offer-help:focus {
  outline: 2px solid color-mix(in srgb, var(--home-info) 55%, transparent);
  outline-offset: 3px;
}

.storefront-offer-help__bubble {
  position: absolute;
  z-index: 45;
  inset-block-end: calc(100% + 0.55rem);
  inset-inline-start: 0;
  width: min(17rem, calc(100vw - 2rem));
  border: 1px solid color-mix(in srgb, var(--home-info) 35%, var(--home-border));
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--surface-muted) 92%, #020617);
  box-shadow: 0 1rem 2rem rgba(2, 6, 23, 0.32);
  color: var(--home-text);
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.75;
  opacity: 0;
  padding: 0.62rem 0.72rem;
  pointer-events: none;
  text-align: right;
  transform: translateY(0.2rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
  white-space: normal;
  overflow-wrap: anywhere;
}

.storefront-offer-help__bubble::after {
  position: absolute;
  inset-block-start: 100%;
  inset-inline-start: 1rem;
  width: 0.65rem;
  height: 0.65rem;
  border-inline-end: 1px solid color-mix(in srgb, var(--home-info) 35%, var(--home-border));
  border-block-end: 1px solid color-mix(in srgb, var(--home-info) 35%, var(--home-border));
  background: inherit;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.storefront-offer-help:hover .storefront-offer-help__bubble,
.storefront-offer-help:focus .storefront-offer-help__bubble,
.storefront-offer-help:focus-within .storefront-offer-help__bubble {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.storefront-spec-row {
  min-height: 1.6rem;
}

.storefront-spec-row span {
  max-width: 100%;
  color: color-mix(in srgb, var(--home-text) 50%, var(--home-muted));
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
}

.storefront-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: initial;
  margin-top: auto;
  border-top: 1px solid color-mix(in srgb, var(--home-border) 78%, transparent);
  padding-top: 0.65rem;
}

.storefront-price-row div {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.storefront-price-row strong {
  color: var(--home-text);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  white-space: normal;
}

.storefront-price-row del {
  color: var(--home-soft);
  font-size: 0.78rem;
  line-height: 1.25;
}

.storefront-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  flex-shrink: 0;
  border: 1px solid var(--home-brand);
  border-radius: 0.45rem;
  background: var(--home-brand);
  color: #f9fafb;
  font-family: inherit;
  padding: 0.46rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.storefront-card-action:hover,
.storefront-card-action:focus-visible {
  border-color: var(--home-brand-hover);
  background: var(--home-brand-hover);
  transform: translateY(-1px);
}

.storefront-category-grid,
.storefront-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.storefront-category-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
  padding: 0.95rem;
}

.storefront-category-card .storefront-pill {
  grid-column: 2;
  justify-self: start;
}

.storefront-category-index,
.storefront-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid color-mix(in srgb, var(--home-brand) 28%, var(--line-color));
  border-radius: var(--home-radius-sm);
  background: color-mix(in srgb, var(--home-brand) 12%, var(--surface-muted));
  color: var(--home-accent);
  font-weight: 950;
}

.storefront-category-card strong,
.storefront-brand-card strong,
.storefront-compact-copy strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--home-text);
  font-weight: 900;
  line-height: 1.55;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.storefront-category-card small,
.storefront-brand-card small,
.storefront-compact-copy small {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--home-muted);
  font-size: 0.8rem;
  line-height: 1.6;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.storefront-process-card,
.storefront-trust-card {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
}

.storefront-process-line {
  display: block;
  width: 3.2rem;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-brand), var(--home-accent));
}

.storefront-process-card strong,
.storefront-trust-card strong {
  color: var(--home-text);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.55;
}

.storefront-process-card p,
.storefront-trust-card p,
.storefront-rfq-panel p,
.storefront-rfq-panel li {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.88rem;
  line-height: 1.85;
}

.storefront-section-split {
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  align-items: start;
  gap: 1rem;
}

.storefront-latest-column,
.storefront-brand-column,
.storefront-trust-stack {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.storefront-compact-product-list,
.storefront-brand-list {
  display: grid;
  gap: 0.75rem;
}

.storefront-latest-sentinel {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 4.75rem;
  border: 1px dashed color-mix(in srgb, var(--home-brand) 28%, var(--home-border));
  border-radius: var(--home-radius-lg);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--home-brand) 9%, transparent), transparent 56%),
    color-mix(in srgb, var(--home-surface) 88%, transparent);
  color: var(--home-muted);
  padding: 0.9rem;
  text-align: center;
}

.storefront-latest-sentinel strong {
  color: color-mix(in srgb, var(--home-text) 74%, var(--home-brand));
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.7;
}

.storefront-latest-sentinel-done {
  min-height: 3.75rem;
  background: color-mix(in srgb, var(--home-surface) 72%, transparent);
}

.storefront-latest-spinner {
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  border: 2px solid color-mix(in srgb, var(--home-brand) 16%, var(--home-border));
  border-top-color: color-mix(in srgb, var(--home-brand) 74%, #ffffff);
  border-radius: 999px;
  animation: storefrontBrandRailSpin 820ms linear infinite;
}

.storefront-latest-fallback-link {
  color: var(--home-brand);
  font-size: 0.82rem;
  font-weight: 900;
}

.storefront-compact-product,
.storefront-brand-card {
  display: grid;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
}

.storefront-compact-product {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.storefront-brand-card {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.storefront-compact-media {
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-sm);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--media-a, var(--home-brand)) 28%, transparent), transparent 48%),
    linear-gradient(160deg, color-mix(in srgb, var(--media-b, var(--home-accent)) 22%, var(--panel-bg-strong)), var(--panel-bg));
}

.storefront-compact-copy {
  min-width: 0;
}

.storefront-compact-price {
  flex-shrink: 0;
  color: var(--home-text);
  font-size: 0.9rem;
  font-weight: 950;
}

.storefront-brand-mark {
  color: #f9fafb;
  background: linear-gradient(135deg, var(--home-brand), var(--home-accent));
}

.storefront-brand-showcase {
  overflow: hidden;
}

.storefront-brand-rail-shell {
  position: relative;
  display: block;
  align-items: center;
  min-width: 0;
  padding-inline: 0;
}

.storefront-brand-rail {
  display: flex;
  gap: 0.75rem;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.1rem 0 0.55rem;
  scroll-padding-inline: 0;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.storefront-brand-rail::-webkit-scrollbar {
  display: none;
}

.storefront-brand-rail-sentinel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: min(72vw, 13rem);
  border-style: dashed;
  color: var(--home-muted);
}

.storefront-brand-rail-sentinel-content {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem;
  text-align: center;
}

.storefront-brand-rail-sentinel-content strong {
  font-size: 0.82rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--home-ink) 72%, var(--home-brand));
}

.storefront-brand-rail-spinner {
  width: 2rem;
  height: 2rem;
  border: 2px solid color-mix(in srgb, var(--home-brand) 16%, var(--home-border));
  border-top-color: color-mix(in srgb, var(--home-brand) 72%, #ffffff);
  border-radius: 999px;
  animation: storefrontBrandRailSpin 820ms linear infinite;
}

@keyframes storefrontBrandRailSpin {
  to {
    transform: rotate(360deg);
  }
}

.storefront-brand-slide {
  position: relative;
  isolation: isolate;
  flex: 0 0 min(76vw, 17.5rem);
  min-height: 11.75rem;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-lg);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--home-brand) 22%, transparent), transparent 48%),
    linear-gradient(160deg, color-mix(in srgb, var(--home-accent) 20%, var(--panel-bg-strong)), var(--panel-bg));
  color: #f9fafb;
  box-shadow: var(--home-shadow-sm);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.storefront-brand-rail-sentinel {
  flex: 0 0 min(72vw, 13rem);
}

.storefront-brand-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0) 28%, rgba(7, 10, 16, 0.2) 54%, rgba(7, 10, 16, 0.88)),
    linear-gradient(90deg, rgba(7, 10, 16, 0.58), rgba(7, 10, 16, 0.04) 48%, rgba(7, 10, 16, 0.46));
}

.storefront-brand-slide:hover,
.storefront-brand-slide:focus-visible {
  border-color: var(--home-border-strong);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--home-brand) 28%, transparent), transparent 48%),
    linear-gradient(160deg, color-mix(in srgb, var(--home-accent) 24%, var(--panel-bg-strong)), var(--panel-bg));
  box-shadow: var(--home-shadow-md);
  transform: translateY(-2px);
}

.storefront-brand-slide:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--home-brand) 80%, #ffffff);
  outline-offset: 0.18rem;
}

.storefront-brand-slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(rgba(229, 231, 235, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.065) 1px, transparent 1px),
    linear-gradient(135deg, color-mix(in srgb, var(--home-brand) 24%, transparent), transparent 48%),
    linear-gradient(160deg, color-mix(in srgb, var(--home-accent) 22%, var(--panel-bg-strong)), var(--panel-bg));
  background-size: 30px 30px, 30px 30px, auto, auto;
  color: rgba(249, 250, 251, 0.92);
}

.storefront-brand-slide-media.has-logo {
  background:
    radial-gradient(circle at 50% 44%, color-mix(in srgb, var(--home-brand) 18%, transparent), transparent 58%),
    linear-gradient(rgba(229, 231, 235, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.055) 1px, transparent 1px),
    linear-gradient(160deg, color-mix(in srgb, var(--panel-bg-strong) 92%, var(--home-brand)), var(--panel-bg));
  background-size: auto, 30px 30px, 30px 30px, auto;
}

.storefront-brand-slide-media img {
  --brand-logo-fit-scale: 1;
  --brand-logo-fit-x: 0%;
  --brand-logo-fit-y: 0%;
  width: auto;
  height: clamp(2.85rem, 29%, 4.35rem);
  max-width: min(72%, 12rem);
  max-height: 38%;
  object-fit: contain;
  padding: 0;
  filter: drop-shadow(0 20px 34px rgba(15, 23, 42, 0.14));
  transform: translate(var(--brand-logo-fit-x), var(--brand-logo-fit-y)) scale(var(--brand-logo-fit-scale));
  transform-origin: center;
  transition: transform 180ms ease, filter 180ms ease;
}

.storefront-brand-slide:hover .storefront-brand-slide-media img,
.storefront-brand-slide:focus-visible .storefront-brand-slide-media img {
  filter: drop-shadow(0 24px 42px rgba(15, 23, 42, 0.2));
  transform: translate(var(--brand-logo-fit-x), var(--brand-logo-fit-y)) scale(calc(var(--brand-logo-fit-scale) * 1.04));
}

.storefront-brand-slide-letter {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(42%, 6.5rem);
  aspect-ratio: 1;
  border: 1px solid rgba(249, 250, 251, 0.18);
  border-radius: calc(var(--home-radius-lg) + 0.2rem);
  background: rgba(249, 250, 251, 0.1);
  box-shadow: inset 0 1px 0 rgba(249, 250, 251, 0.14), 0 22px 56px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  font-size: 2.55rem;
  font-weight: 950;
  line-height: 1;
}

.storefront-brand-slide-count {
  position: absolute;
  inset-block-start: 0.65rem;
  inset-inline-start: 0.65rem;
  z-index: 2;
  max-width: calc(100% - 1.8rem);
  min-height: auto;
  border: 0;
  border-color: transparent !important;
  border-radius: 0;
  background: transparent !important;
  color: rgba(249, 250, 251, 0.9) !important;
  padding: 0;
  box-shadow: none !important;
  backdrop-filter: none;
}

.storefront-brand-slide-copy {
  position: absolute;
  inset-inline: 0.8rem;
  inset-block-end: 0.8rem;
  z-index: 2;
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.storefront-brand-slide-copy strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.45;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.storefront-brand-slide-copy small {
  display: -webkit-box;
  min-height: 0;
  overflow: hidden;
  color: rgba(249, 250, 251, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.65;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.storefront-brand-nav {
  position: absolute;
  inset-block-start: 50%;
  z-index: 4;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(249, 250, 251, 0.18);
  border-radius: var(--home-radius-sm);
  background: rgba(7, 10, 16, 0.28);
  color: rgba(249, 250, 251, 0.9);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(249, 250, 251, 0.12);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.storefront-brand-nav-prev {
  inset-inline-start: 0.75rem;
}

.storefront-brand-nav-next {
  inset-inline-end: 0.75rem;
}

.storefront-brand-nav:hover,
.storefront-brand-nav:focus-visible {
  border-color: rgba(96, 165, 250, 0.58);
  background: rgba(26, 79, 216, 0.34);
  color: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.storefront-brand-nav svg {
  width: 1.05rem;
  height: 1.05rem;
}

html[dir="rtl"] .storefront-brand-nav svg {
  transform: rotate(180deg);
}

@media (min-width: 48rem) {
  .storefront-brand-rail {
    gap: 0.85rem;
    padding-block: 0.15rem 0.65rem;
  }

  .storefront-brand-slide {
    flex-basis: clamp(15.5rem, 29vw, 18.5rem);
    min-height: 12.5rem;
  }

  .storefront-brand-slide-letter {
    font-size: 3.1rem;
  }

  .storefront-brand-slide-count {
    inset-block-start: 0.8rem;
    inset-inline-start: 0.8rem;
  }

  .storefront-brand-slide-copy {
    inset-inline: 0.9rem;
    inset-block-end: 0.9rem;
  }

  .storefront-brand-slide-copy strong {
    font-size: 1.08rem;
  }

  .storefront-brand-nav {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (min-width: 78rem) {
  .storefront-brand-rail {
    gap: 0.95rem;
    padding-block-end: 0.75rem;
  }

  .storefront-brand-slide {
    flex-basis: clamp(16.25rem, 18vw, 19.25rem);
    min-height: 13.25rem;
  }

  .storefront-brand-slide-letter {
    font-size: 3.6rem;
  }

  .storefront-brand-slide-copy strong {
    font-size: 1.18rem;
  }

  .storefront-brand-nav {
    width: 2.65rem;
    height: 2.65rem;
  }
}

.storefront-latest-wide .storefront-compact-product-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.storefront-rfq-product-list {
  display: grid;
  gap: 0.7rem;
}

.storefront-rfq-product-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1.15fr) minmax(10rem, 0.8fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem;
}

.storefront-rfq-product-media {
  width: 3.75rem;
  height: 3.75rem;
}

.storefront-rfq-product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  min-width: 0;
}

.storefront-rfq-product-specs span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-muted) 72%, transparent);
  color: var(--home-muted);
  padding: 0.22rem 0.58rem;
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.storefront-rfq-product-state {
  display: grid;
  justify-items: end;
  gap: 0.16rem;
  min-width: 0;
}

.storefront-rfq-product-state b {
  color: var(--home-warning);
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1.35;
  white-space: nowrap;
}

.storefront-procurement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.storefront-procurement-panel {
  --path-tone: var(--home-brand);
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1rem;
}

.storefront-procurement-panel-info {
  --path-tone: var(--home-info);
}

.storefront-procurement-panel-success {
  --path-tone: var(--home-success);
}

.storefront-procurement-panel-warning {
  --path-tone: var(--home-warning);
}

.storefront-procurement-panel strong {
  display: block;
  font-size: 1rem;
}

.storefront-procurement-panel ul {
  border-top: 1px solid var(--home-border);
  padding-top: 0.75rem;
}

.storefront-trust-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  align-items: stretch;
  gap: 1rem;
}

.storefront-rfq-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: start;
  overflow: hidden;
  padding: 1.15rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--home-brand) 14%, transparent), transparent 50%),
    var(--home-surface);
}

.storefront-rfq-panel h2 {
  margin-bottom: 0.55rem;
}

.storefront-rfq-panel ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.storefront-rfq-panel li {
  position: relative;
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-sm);
  background: color-mix(in srgb, var(--surface-muted) 72%, transparent);
  padding: 0.75rem 0.85rem;
  padding-inline-start: 2.1rem;
}

.storefront-rfq-panel li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0.8rem;
  top: 1.16rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--home-warning);
}

.storefront-trust-stack {
  align-content: start;
}

.storefront-trust-card {
  border-radius: var(--home-radius-md);
}

:root[data-theme="light"] .home-storefront {
  --home-surface: color-mix(in srgb, #ffffff 94%, #eef5f0 6%);
  --home-surface-strong: #fbfaf7;
  --home-surface-soft: color-mix(in srgb, var(--home-sage) 8%, #ffffff);
  --home-border: color-mix(in srgb, var(--line-color) 82%, var(--home-sage));
  --home-border-strong: color-mix(in srgb, var(--home-teal) 32%, var(--line-color));
  --home-muted: #4b5563;
  --home-soft: #64748b;
  --home-shadow-sm: 0 8px 22px rgba(16, 24, 40, 0.06);
  --home-shadow-md: 0 16px 36px rgba(16, 24, 40, 0.1);
}

:root[data-theme="light"] .home-hero-shell {
  border-color: color-mix(in srgb, #cbd5e1 74%, var(--home-sage));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 56%),
    linear-gradient(135deg, color-mix(in srgb, var(--home-sage) 10%, transparent), transparent 46%),
    linear-gradient(225deg, color-mix(in srgb, var(--home-warm) 9%, transparent), transparent 38%),
    linear-gradient(160deg, #ffffff, #fbfaf7);
  box-shadow:
    0 18px 38px rgba(16, 24, 40, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

:root[data-theme="light"] .home-hero-shell::before {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
}

:root[data-theme="light"] .home-hero-slide {
  --hero-panel: color-mix(in srgb, #ffffff 92%, transparent);
  --hero-panel-soft: color-mix(in srgb, var(--brand-500) 6%, #f9fafb);
  --hero-title: #0f172a;
  --hero-body: color-mix(in srgb, #0f172a 76%, #6b7280);
  --hero-muted: #6b7280;
}

:root[data-theme="light"] .home-hero-copy-card {
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

:root:not([data-theme="light"]) .home-hero-copy-card {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(10, 17, 30, 0.76)),
    linear-gradient(180deg, color-mix(in srgb, var(--hero-panel) 82%, transparent), color-mix(in srgb, var(--hero-panel-soft) 62%, transparent)) !important;
}

:root[data-theme="light"] .home-hero-slide-title {
  text-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

:root[data-theme="light"] .home-hero-media-frame::after {
  background: linear-gradient(180deg, transparent 48%, rgba(15, 23, 42, 0.12));
}

:root[data-theme="light"] .home-hero-media-caption {
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(249, 250, 251, 0.78);
  color: #0f172a;
}

:root[data-theme="light"] .home-hero-media-caption span {
  color: color-mix(in srgb, #0f172a 72%, #6b7280);
}

:root[data-theme="light"] .home-hero-point-item,
:root[data-theme="light"] .home-hero-metric-card,
:root[data-theme="light"] .home-hero-icon-button,
:root[data-theme="light"] .home-hero-dot,
:root[data-theme="light"] .storefront-pill,
:root[data-theme="light"] .storefront-spec-row span,
:root[data-theme="light"] .storefront-sales-mini-product,
:root[data-theme="light"] .storefront-rfq-product-specs span,
:root[data-theme="light"] .storefront-rfq-panel li {
  background: color-mix(in srgb, #ffffff 82%, transparent);
}

:root[data-theme="light"] .storefront-product-media {
  color: #f9fafb;
}

:root[data-theme="light"] .storefront-product-card.has-database-product {
  border-color: color-mix(in srgb, #cbd5e1 82%, var(--home-brand));
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .storefront-product-copy p {
  color: #475569;
}

:root[data-theme="light"] .storefront-spec-row span {
  border-color: #cbd8e8;
  background: #ffffff;
  color: #64748b;
}

:root[data-theme="light"] .storefront-price-row strong {
  color: #0f172a;
}

:root[data-theme="light"] .storefront-product-category,
:root[data-theme="light"] .storefront-product-brand {
  border-color: rgba(249, 250, 251, 0.24);
  background: rgba(15, 23, 42, 0.34);
}

:root[data-theme="light"] .storefront-brand-showcase {
  --brand-showcase-panel: #ffffff;
  --brand-showcase-panel-raised: #f8fbff;
  --brand-showcase-line: #cbd7e4;
  --brand-showcase-line-strong: #8fb0d4;
  --brand-showcase-grid: rgba(71, 85, 105, 0.075);
  --brand-showcase-text: #0f172a;
  --brand-showcase-muted: #53657a;
}

:root[data-theme="light"] .storefront-brand-slide {
  border-color: var(--brand-showcase-line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--home-brand) 9%, transparent), transparent 48%),
    linear-gradient(160deg, color-mix(in srgb, var(--home-accent) 7%, var(--brand-showcase-panel-raised)), var(--brand-showcase-panel));
  color: var(--brand-showcase-text);
  box-shadow: var(--home-shadow-sm);
}

:root[data-theme="light"] .storefront-brand-slide::before,
:root[data-theme="light"] .storefront-brand-slide-copy::before,
:root[data-theme="light"] .storefront-brand-slide-media.has-logo::before,
:root[data-theme="light"] .storefront-brand-slide-media.has-logo::after {
  content: none;
}

:root[data-theme="light"] .storefront-brand-slide::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.42) 64%, rgba(255, 255, 255, 0.74)),
    linear-gradient(90deg, rgba(226, 232, 240, 0.28), rgba(255, 255, 255, 0.02) 48%, rgba(226, 232, 240, 0.24));
  background-size: auto;
}

:root[data-theme="light"] .storefront-brand-slide:hover,
:root[data-theme="light"] .storefront-brand-slide:focus-visible {
  border-color: var(--brand-showcase-line-strong);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--home-brand) 12%, transparent), transparent 48%),
    linear-gradient(160deg, color-mix(in srgb, var(--home-accent) 9%, var(--brand-showcase-panel-raised)), var(--brand-showcase-panel));
  box-shadow: var(--home-shadow-md);
  transform: translateY(-2px);
}

:root[data-theme="light"] .storefront-brand-slide-media,
:root[data-theme="light"] .storefront-brand-slide-media.has-logo {
  inset: 0;
  width: 100%;
  height: 100%;
  isolation: isolate;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(var(--brand-showcase-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--brand-showcase-grid) 1px, transparent 1px),
    radial-gradient(circle at 50% 44%, color-mix(in srgb, var(--home-brand) 10%, transparent), transparent 58%),
    linear-gradient(160deg, color-mix(in srgb, var(--brand-showcase-panel-raised) 96%, var(--home-brand)), var(--brand-showcase-panel));
  background-size: 30px 30px, 30px 30px, auto, auto;
  color: var(--brand-showcase-text);
}

:root[data-theme="light"] .storefront-brand-slide-media img {
  position: relative;
  z-index: 1;
  padding: 0;
  filter: drop-shadow(0 20px 34px rgba(15, 23, 42, 0.14));
}

:root[data-theme="light"] .storefront-brand-slide-letter {
  border-color: rgba(148, 163, 184, 0.34);
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand-showcase-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 18px 42px rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .storefront-brand-slide:hover .storefront-brand-slide-media img,
:root[data-theme="light"] .storefront-brand-slide:focus-visible .storefront-brand-slide-media img {
  filter: drop-shadow(0 24px 42px rgba(15, 23, 42, 0.2));
}

html[data-theme="light"] body .home-storefront .storefront-brand-showcase .storefront-brand-slide-count {
  z-index: 2;
  max-width: calc(100% - 1.8rem);
  min-height: auto;
  border: 1px solid var(--brand-showcase-line) !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86) !important;
  color: var(--brand-showcase-muted) !important;
  padding: 0.22rem 0.52rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08) !important;
  backdrop-filter: blur(10px);
}

:root[data-theme="light"] .storefront-brand-slide-copy {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

:root[data-theme="light"] .storefront-brand-slide-copy strong {
  color: var(--brand-showcase-text);
  text-shadow: none;
}

:root[data-theme="light"] .storefront-brand-slide-copy small {
  color: var(--brand-showcase-muted);
  text-shadow: none;
}

:root[data-theme="light"] .storefront-brand-nav {
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.82);
  color: #334155;
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

:root[data-theme="light"] .storefront-brand-nav:hover,
:root[data-theme="light"] .storefront-brand-nav:focus-visible {
  border-color: rgba(37, 99, 235, 0.38);
  background: rgba(239, 246, 255, 0.94);
  color: #225aa4;
}

html[data-theme] body .home-storefront .storefront-product-media.has-product-image,
html[data-theme] body .home-storefront .storefront-recommend-media.has-product-image,
html[data-theme] body .home-storefront .storefront-sales-mini-media.has-product-image,
html[data-theme] body .home-storefront .storefront-rfq-product-media.has-product-image,
html[data-theme] body .home-storefront .storefront-compact-media.has-product-image {
  background: transparent !important;
  background-image: none !important;
  background-size: auto !important;
  color: var(--home-text) !important;
}

html[data-theme] body .home-storefront .storefront-product-media.has-product-image::before {
  display: none !important;
}

html[data-theme] body .home-storefront .storefront-product-media.has-product-image .storefront-product-image {
  background: transparent !important;
}

html[data-theme] body .home-storefront .storefront-sales-mini-media.has-product-image img,
html[data-theme] body .home-storefront .storefront-rfq-product-media.has-product-image img,
html[data-theme] body .home-storefront .storefront-compact-media.has-product-image img {
  display: block;
  padding: 0.18rem;
  border-radius: inherit;
}

@media (max-width: 90rem) {
  .storefront-category-grid,
  .storefront-sales-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 78rem) {
  .home-hero-slide {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) 16rem;
    height: auto;
    min-height: var(--home-hero-slide-height);
  }

  .home-hero-copy-card {
    min-height: 100%;
  }

  .home-hero-point-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .storefront-section-split,
  .storefront-trust-layout,
  .storefront-rfq-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .storefront-latest-wide .storefront-compact-product-list {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .storefront-rfq-product-row {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .storefront-rfq-product-specs,
  .storefront-rfq-product-state {
    grid-column: 2;
    justify-items: start;
  }
}

@media (max-width: 64rem) {
  .home-storefront {
    gap: 1rem;
  }

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

  .home-hero-shell {
    --home-hero-slide-height: 34rem;
    padding: 0.55rem;
  }

  .home-hero-progress {
    position: absolute;
    inset-inline: 0.8rem;
    top: 0.8rem;
    z-index: 5;
    margin: 0;
  }

  .home-hero-slide {
    position: relative;
    display: grid;
    overflow: hidden;
    border-radius: var(--home-radius-md);
    grid-template-rows: minmax(0, 1fr);
    min-height: var(--home-hero-slide-height);
  }

  .home-hero-slide-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .home-hero-media-frame {
    border-radius: var(--home-radius-md);
  }

  .home-hero-media-frame::after {
    background: linear-gradient(180deg, rgba(11, 13, 16, 0.08), rgba(11, 13, 16, 0.18) 36%, rgba(11, 13, 16, 0.86));
  }

  :root[data-theme="light"] .home-hero-media-frame::after {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.08) 36%, rgba(236, 239, 243, 0.86));
  }

  .home-hero-slide-copy {
    position: relative;
    z-index: 1;
    align-items: end;
    padding: 0.75rem;
  }

  .home-hero-copy-card {
    min-height: 0;
    justify-content: flex-end;
    padding: 1.05rem;
    backdrop-filter: blur(16px);
  }

  .home-hero-copy-card::before {
    inset-block: 1.6rem;
    inset-inline-start: 0.75rem;
    opacity: 0.22;
  }

  .home-hero-slide-title {
    max-width: 100%;
    font-size: 2rem;
    line-height: 1.24;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .home-hero-slide-title::after {
    display: none;
  }

  .home-hero-slide-summary {
    font-size: 0.9rem;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .home-hero-point-list {
    gap: 0.45rem;
    margin-top: 0.8rem;
  }

  .home-hero-point-item {
    min-height: 0;
    padding-block: 0.62rem;
    font-size: 0.76rem;
  }

  .home-hero-action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .home-hero-action:first-child {
    grid-column: 1 / -1;
  }

  .home-hero-action {
    width: 100%;
    min-height: 2.72rem;
    padding-inline: 0.75rem;
    font-size: 0.82rem;
  }

  .home-hero-media-caption,
  .home-hero-arrow-group {
    display: none;
  }

  .home-hero-mobile-nav {
    position: absolute;
    inset-inline: 0.75rem;
    top: 42%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .home-hero-mobile-nav-button {
    pointer-events: auto;
    background: rgba(11, 13, 16, 0.52);
    color: #e5e7eb;
    backdrop-filter: blur(14px);
  }

  .home-hero-bottom-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero-controls {
    order: 1;
    align-items: center;
  }

  .home-hero-metrics {
    order: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .home-hero-metric-card {
    min-width: 0;
    padding-inline: 0.65rem;
  }

  .home-hero-metric-card strong {
    font-size: 0.92rem;
  }

  .home-hero-metric-card span {
    font-size: 0.72rem;
  }

  .storefront-section-header {
    align-items: flex-start;
  }

  .storefront-section-header h2,
  .storefront-rfq-panel h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 48rem) {
  .home-hero-shell {
    --home-hero-slide-height: auto;
    border-radius: var(--home-radius-md);
  }

  .home-hero-carousel {
    min-height: 0;
  }

  .home-hero-slide {
    height: auto;
    min-height: 0;
    grid-template-rows: auto auto;
    gap: 0.55rem;
  }

  .home-hero-slide-copy,
  .home-hero-slide-media {
    height: auto;
  }

  .home-hero-slide-media {
    position: relative;
    inset: auto;
    order: -1;
    min-height: 12rem;
    height: clamp(12rem, 48vw, 16rem);
  }

  .home-hero-media-frame::after {
    background: linear-gradient(180deg, rgba(11, 13, 16, 0.05), rgba(11, 13, 16, 0.16) 54%, rgba(11, 13, 16, 0.52));
  }

  :root[data-theme="light"] .home-hero-media-frame::after {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.08) 54%, rgba(15, 23, 42, 0.18));
  }

  .home-hero-slide-copy {
    padding: 0;
  }

  .home-hero-copy-card {
    padding: 0.9rem;
    justify-content: flex-start;
  }

  .home-hero-copy-card::before {
    inset-block: 1.35rem;
    inset-inline-start: 0.65rem;
    width: 0.1rem;
  }

  .home-hero-slide-topline {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
  }

  .home-hero-slide-eyebrow,
  .home-hero-slide-index {
    min-height: 1.75rem;
    font-size: 0.68rem;
    padding-inline: 0.62rem;
  }

  .home-hero-slide-title {
    font-size: 1.5rem;
  }

  .home-hero-slide-summary {
    margin-top: 0.62rem;
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
  }

  .home-hero-point-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero-point-item:nth-child(n + 3) {
    display: none;
  }

  .home-hero-action-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero-action:first-child {
    grid-column: auto;
  }

  .home-hero-mobile-nav {
    top: 50%;
    inset-inline: 0.65rem;
  }

  .home-hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .home-hero-metric-card {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 3.05rem;
    gap: 0.18rem;
    padding: 0.58rem 0.68rem;
  }

  .home-hero-metric-card strong,
  .home-hero-metric-card span {
    display: block;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .home-hero-metric-card strong {
    font-size: 0.88rem;
  }

  .home-hero-metric-card span {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .home-hero-metric-card:last-child {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
  }

  .storefront-service-strip,
  .storefront-product-grid,
  .storefront-category-grid,
  .storefront-process-grid,
  .storefront-sales-path-grid,
  .storefront-procurement-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .storefront-brand-rail-shell {
    padding-inline: 0;
  }

  .storefront-brand-rail {
    gap: 0.75rem;
    padding-inline: 0;
  }

  .storefront-brand-slide {
    flex-basis: min(76vw, 17.5rem);
    min-height: 11.75rem;
  }

  .storefront-brand-nav {
    display: none;
  }

  .storefront-section-header {
    display: grid;
  }

  .storefront-link {
    width: fit-content;
  }

  .storefront-product-media {
    min-height: 12rem;
  }

  .storefront-price-row {
    align-items: stretch;
  }

  .storefront-card-action {
    width: 100%;
  }

  .storefront-sales-path-footer {
    display: grid;
    justify-items: stretch;
  }

  .storefront-sales-path-footer > span {
    justify-self: start;
  }

  .storefront-recommend-carousel {
    padding-inline: 0;
  }

  .storefront-recommend-carousel::before,
  .storefront-recommend-carousel::after,
  .storefront-recommend-nav {
    display: none;
  }

  .storefront-recommend-viewport {
    overflow: visible;
    margin-block-end: 0;
    padding-block-end: 0;
  }

  .storefront-recommend-rail {
    gap: 0.75rem;
    margin-block-end: 0;
    padding-block: 0.15rem 0.4rem;
    padding-inline: 0.15rem;
    scroll-padding-inline: 0.15rem;
  }

  .storefront-recommend-card {
    flex-basis: min(84vw, 18.5rem);
  }

  .storefront-rfq-product-row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.65rem;
  }

  .storefront-rfq-product-specs,
  .storefront-rfq-product-state {
    grid-column: 1 / -1;
  }

  .storefront-rfq-product-state {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .storefront-compact-product,
  .storefront-brand-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .storefront-compact-price,
  .storefront-brand-card .storefront-pill {
    grid-column: 2;
    justify-self: start;
  }

  .storefront-rfq-panel {
    padding: 1rem;
  }
}

@media (max-width: 23rem) {
  .home-hero-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero-metric-card:last-child {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-slide-transition-enter,
  .home-hero-slide-transition-leave,
  .home-hero-progress-segment,
  .home-hero-icon-button,
  .home-hero-dot,
  .home-hero-action,
  .storefront-service-card,
  .storefront-category-card,
  .storefront-brand-card,
  .storefront-brand-nav,
  .storefront-brand-slide,
  .storefront-compact-product,
  .storefront-sales-mini-product,
  .storefront-recommend-card,
  .storefront-rfq-product-row,
  .storefront-product-card,
  .storefront-card-action,
  .storefront-link {
    transition: none;
  }

  .storefront-latest-spinner {
    animation: none;
  }
}
