@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap");

:root {

  --bg: #f5f5f5;
  --bg-accent: #e6eef8;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-muted: #f5f5f5;
  --border: #ebebeb;
  --text: #333333;
  --text-soft: #4d4d4d;
  --heading: #333333;
  --primary: #0055b8;
  --primary-deep: #006fba;
  --accent: #006fba;
  --accent-soft: #e6eef8;
  --danger: #ff6b6b;
  --success: #008a00;
  --warning: #ffc107;
  --shadow: 0 14px 30px rgba(0, 85, 184, 0.08);
  --shadow-lg: 0 22px 50px rgba(0, 85, 184, 0.12);
  --shadow-sm: 0 8px 18px rgba(0, 85, 184, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --font-body: "Inter", sans-serif;
  --font-heading: "Bebas Neue", sans-serif;
  --font-ui: "Inter", sans-serif;
  --font-home-hero: "Bebas Neue", sans-serif;
  --font-home-accent: "Inter", sans-serif;
  --gradient-gold: linear-gradient(135deg, #ffc107 0%, #efa040 100%);
  --gradient-accent: linear-gradient(135deg, #0055b8 0%, #006fba 100%);
  --gradient-dark: linear-gradient(135deg, #0055b8 0%, #01408f 100%);
}



*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0, 85, 184, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.12) 0%, transparent 42%);
  min-height: 100vh;
  overflow-x: hidden;
}

.site-cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 193, 7, 0.22) 0%, rgba(0, 85, 184, 0.12) 34%, transparent 68%);
  transform: translate3d(calc(var(--cursor-x, -500px) - 50%), calc(var(--cursor-y, -500px) - 50%), 0);
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: 2;
}

body.has-cursor-glow .site-cursor-glow {
  opacity: 1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #ebebeb;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: #ebebeb;
  box-shadow: var(--shadow-sm);
}

.nav-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
  position: relative;
  z-index: 51;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--heading);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-copy small {
  font-family: var(--font-ui);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav-toggle {
  display: inline-flex;
  border: 0;
  background: #f5f5f5;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 0.7rem 1rem;
  justify-self: end;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: all 220ms ease;
  align-items: center;
  gap: 0.6rem;
}

.nav-toggle:hover {
  background: #e6eef8;
  border-color: #006fba;
  transform: translateY(-1px);
}

.nav-toggle i {
  font-size: 1.2rem;
}

.site-nav {
  position: fixed;
  top: 72px;
  left: 1rem;
  right: 1rem;
  max-width: calc(100% - 2rem);
  padding: 1rem 0;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #ebebeb;
  box-shadow: 0 20px 44px rgba(0, 85, 184, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  z-index: 49;
  animation: dropdownClose 220ms ease forwards;
}

.site-nav.is-open {
  display: flex;
  animation: dropdownOpen 220ms ease forwards;
}

.nav-link,
.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  border-radius: 0;
  font-weight: 700;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  color: var(--text-soft);
  transition: background 180ms ease, color 180ms ease;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  margin: 0;
}

.nav-pill-toggle {
  border-bottom: 1px solid #ebebeb;
  border-radius: 0;
  margin-bottom: 0.5rem;
  background: #f5f5f5;
}

.nav-link:hover,
.nav-pill:hover,
.nav-link.is-active {
  background: #e6eef8;
  color: var(--primary);
  transform: none;
}

.nav-link.is-active,
.nav-pill.is-active {
  background: #e6eef8;
  box-shadow: none;
}

.nav-link i,
.nav-pill i {
  font-size: 0.92rem;
  width: 1rem;
  text-align: center;
  transition: transform 180ms ease, color 180ms ease;
}

.nav-link:hover i,
.nav-pill:hover i,
.nav-link.is-active i,
.nav-pill.is-active i {
  transform: scale(1.08);
  color: var(--primary);
}

.nav-pill [data-cart-count] {
  min-width: 1.55rem;
  height: 1.55rem;
  display: inline-grid;
  place-items: center;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--gradient-gold);
  color: #333333;
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(255, 193, 7, 0.24);
}

.site-nav .nav-link:first-of-type {
  border-top: 1px solid #ebebeb;
}

.nav-pill[data-cart-count],
.nav-pill[data-login-link],
.nav-pill[data-register-link],
.nav-pill[data-logout-button] {
  border-radius: 12px;
  margin: 0.5rem 1rem;
  width: auto;
}

.page-hero,
.hero {
  padding: 4.5rem 0 2.5rem;
}

.hero-grid,
.detail-layout,
.checkout-grid,
.split-layout {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #e6eef8;
  color: var(--primary);
  font-weight: 800;
  font-family: var(--font-ui);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-size: 0.65rem;
}

.eyebrow i {
  color: currentColor;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.panel h2,
.panel h3,
.detail-copy h1,
.cta-card h2 {
  font-family: var(--font-heading);
  color: var(--heading);
  letter-spacing: -0.02em;
  margin: 0;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.05;
  max-width: 14ch;
  margin-top: 0.75rem;
}

.hero p,
.page-hero p,
.section-copy,
.muted {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  font-weight: 800;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  background: var(--gradient-gold);
  color: #333333;
  box-shadow: 0 14px 28px rgba(255, 193, 7, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 193, 7, 0.28);
}

.button i {
  font-size: 0.95rem;
}

.button-secondary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 85, 184, 0.2);
}

.button-secondary:hover {
  box-shadow: 0 18px 34px rgba(0, 85, 184, 0.26);
}

.button-ghost {
  background: #e6eef8;
  color: var(--primary);
  box-shadow: none;
}

.button-ghost:hover {
  background: #d7e7fb;
}

.button-danger {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
  box-shadow: none;
}

.button-danger:hover {
  background: rgba(255, 107, 107, 0.25);
}

.button-full {
  width: 100%;
}

.hero-card,
.panel,
.stat-card,
.product-card,
.feature-card,
.order-card,
.installation-card,
.office-card,
.cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.6rem;
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
  overflow: hidden;
}

.hero-card::after,
.cta-card::after,
.product-card::after,
.feature-card::after,
.office-card::after,
.stat-card::after,
.footer-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
      rgba(255, 255, 255, 0.28),
      transparent 42%);
}

.solar-visual {
  position: relative;
  min-height: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
  background: linear-gradient(135deg, #0055b8 0%, #006fba 100%);
  padding: 2rem;
  color: #fff;
}

.solar-visual .badge {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.solar-visual::before,
.solar-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.5;
}

.solar-visual::before {
  width: 120px;
  height: 120px;
  top: -20px;
  right: -10px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
}

.solar-visual::after {
  inset: auto 10% -18% auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 66%);
}

.solar-visual h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 0 0 0.8rem;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.solar-visual>p {
  color: rgba(255, 255, 255, 0.9);
}

.visual-pillars {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.visual-pillars div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.visual-pillars i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #0055b8;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.visual-pillars strong,
.visual-pillars p {
  grid-column: 2;
}

.visual-pillars strong {
  color: #fff;
}

.visual-pillars p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.hero-stats,
.stats-row,
.dashboard-grid,
.feature-grid,
.product-grid,
.office-grid,
.admin-grid {
  display: grid;
  gap: 1rem;
}

.hero-stats,
.stats-row,
.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
  padding: 1.25rem;
}

.stat-card span {
  display: block;
  color: var(--text-soft);
  font-weight: 700;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: -0.01em;
}

.stat-card strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: var(--heading);
}

.stat-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-card-head i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: linear-gradient(135deg, #e6eef8, #f5f5f5);
}

.section {
  padding: 2.5rem 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.product-media {
  position: relative;
  min-height: 180px;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.22), transparent 35%),
    linear-gradient(140deg, #ffffff, #f5f5f5);
  color: white;
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.product-media .fallback-mark {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  z-index: 1;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-media.is-fallback .fallback-mark,
.product-media:not(.has-image) .fallback-mark {
  opacity: 1;
  transform: none;
}

.product-card-body {
  display: grid;
  flex: 1;
  gap: 0.65rem;
  padding: 1rem;
  grid-template-rows: auto auto 1fr auto;
}

.chip-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip,
.badge,
.stock-pill,
.status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-ui);
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.chip,
.badge {
  background: #e6eef8;
  color: var(--primary);
}

.stock-pill {
  background: #fef7e4;
  color: var(--accent);
}

.status-badge[data-status="confirmed"],
.status-badge[data-status="completed"],
.status-badge[data-status="assigned"] {
  background: rgba(81, 207, 102, 0.12);
  color: var(--success);
}

.status-badge[data-status="pending"] {
  background: #e6eef8;
  color: var(--accent);
}

.status-badge[data-status="cancelled"] {
  background: rgba(255, 107, 107, 0.12);
  color: var(--danger);
}

.product-card h3,
.panel h2,
.panel h3,
.order-card h3,
.installation-card h3 {
  font-size: 1.2rem;
}

.product-summary,
.product-meta,
.panel-copy,
.meta-list,
.list-reset {
  color: var(--text-soft);
}

.product-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.price {
  font-family: var(--font-heading);
  color: var(--heading);
  font-size: 1.12rem;
  overflow-wrap: anywhere;
}

.product-card-link {
  width: auto;
  justify-self: start;
  white-space: nowrap;
}

.feature-card,
.panel,
.office-card,
.order-card,
.installation-card,
.cta-card {
  padding: 1.4rem;
}

.feature-card h3,
.office-card h3 {
  margin: 0.6rem 0;
  font-family: var(--font-heading);
}

.panel h3 i {
  color: var(--accent);
}

.icon-burst {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--primary);
  background: linear-gradient(135deg, #e6eef8, #f5f5f5);
  box-shadow: inset 0 0 0 1px #ebebeb;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.detail-layout,
.split-layout,
.checkout-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
}

.catalog-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 120px;
}

.catalog-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.catalog-sidebar-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.filter-group {
  display: grid;
  gap: 0.6rem;
}

.catalog-main {
  display: grid;
  gap: 1.2rem;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
}

.results-count {
  font-weight: 700;
  font-family: var(--font-ui);
  color: var(--text-soft);
}

.chip-button {
  border: 0;
  background: #e6eef8;
  color: var(--primary);
  cursor: pointer;
}

.chip-button.is-active {
  background: #d7e7fb;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px #b3cde9;
}

.detail-copy,
.detail-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-card .product-media {
  min-height: 360px;
  border-radius: calc(var(--radius-lg) - 8px);
}

.product-detail-layout {
  align-items: start;
}

.product-detail-media-card {
  padding: 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.18), transparent 28%),
    linear-gradient(155deg, #ffffff, #f7fbff);
}

.detail-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.detail-category-badge,
.detail-sku {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  font-family: var(--font-ui);
}

.detail-category-badge {
  background: #e6eef8;
  color: var(--primary);
}

.detail-sku {
  background: #f5f5f5;
  color: var(--text-soft);
  border: 1px solid #ebebeb;
}

.detail-product-media {
  min-height: 420px;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(0, 85, 184, 0.12), transparent 35%),
    radial-gradient(circle at bottom left, rgba(255, 193, 7, 0.18), transparent 30%),
    linear-gradient(160deg, #f5f5f5, #ffffff);
  border: 1px solid #ebebeb;
  overflow: hidden;
}

.detail-product-media img {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
  padding: 1rem;
}

.detail-product-media .fallback-mark {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(135deg, #e6eef8, #f5f5f5);
  border-color: #b3cde9;
  color: var(--primary);
}

.detail-card-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.detail-fact-card,
.detail-meta-item {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: #f5f5f5;
  border: 1px solid #ebebeb;
}

.detail-fact-card span,
.detail-label,
.detail-meta-item span {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  font-family: var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.detail-fact-card strong,
.detail-meta-item strong {
  font-family: var(--font-heading);
  color: var(--heading);
  font-size: 1rem;
}

.detail-summary-card {
  display: grid;
  gap: 1.1rem;
  background: linear-gradient(160deg, #ffffff, #f8fbff);
}

.detail-heading-stack {
  display: grid;
  gap: 0.75rem;
}

.detail-lead {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.detail-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.detail-price {
  display: block;
  font-family: var(--font-heading);
  color: var(--heading);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: -0.03em;
}

.detail-availability {
  display: grid;
  gap: 0.25rem;
  min-width: 220px;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid #ebebeb;
  background: #f5f5f5;
}

.detail-availability span {
  font-size: 0.82rem;
  font-weight: 800;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.detail-availability strong {
  font-family: var(--font-heading);
  color: var(--heading);
}

.detail-availability.is-in-stock {
  background: #eef9f2;
  border-color: #cdecd8;
  color: #0f7c38;
}

.detail-availability.is-backorder {
  background: #fff7e6;
  border-color: #f0dfb6;
  color: #b86d07;
}

.detail-summary-meta {
  gap: 0.6rem;
}

.detail-action-grid,
.detail-info-grid,
.detail-meta-grid {
  display: grid;
  gap: 0.9rem;
}

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

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

.detail-support-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  color: var(--text-soft);
}

.detail-support-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
}

.detail-support-strip i,
.detail-highlight-list i {
  color: var(--primary);
}

.detail-panel {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.detail-panel h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.detail-highlight-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.detail-highlight-list li i {
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e6eef8;
  margin-top: 0.05rem;
}

.detail-highlight-list li span {
  color: var(--text);
  font-weight: 700;
  line-height: 1.65;
}

.step-grid,
.trust-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.step-card,
.trust-card,
.testimonial-card {
  display: grid;
  gap: 0.85rem;
}

.step-card .icon-burst {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  font-size: 1.35rem;
}

.trust-card h3,
.testimonial-card strong {
  font-family: var(--font-heading);
  margin: 0;
}

.trust-card h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

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

.testimonial-card p {
  margin: 0.2rem 0 0.6rem;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.quote-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #e6eef8;
  color: var(--primary);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.testimonial-meta strong {
  color: var(--heading);
}

.list-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-reset li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #ebebeb;
}

.list-reset li:last-child {
  border-bottom: 0;
}

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

.auth-card,
.auth-side-card {
  align-content: start;
}

.auth-side-card {
  display: grid;
  gap: 1rem;
}

.auth-side-list {
  display: grid;
  gap: 0.85rem;
}

.auth-side-list div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.8rem;
  align-items: start;
}

.auth-side-list i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: linear-gradient(135deg, #e6eef8, #f5f5f5);
}

.auth-switch {
  margin: 0;
}

.auth-switch a {
  color: var(--primary);
  font-weight: 800;
}

.profile-completion-card {
  margin-bottom: 1.25rem;
}

.profile-completion-card h2 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.profile-completion-actions {
  align-self: end;
}

.profile-completion-actions .btn {
  width: 100%;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.image-input-stack {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 800;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: -0.01em;
  color: var(--heading);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ebebeb;
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: #ffffff;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #006fba;
  box-shadow: 0 0 0 4px rgba(0, 85, 184, 0.12);
  background: #ffffff;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #b3cde9;
  background: #ffffff;
}

.image-preview-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px dashed #b3cde9;
  border-radius: 22px;
  background: #f5f5f5;
}

.image-preview-frame {
  min-height: 220px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.22), transparent 30%),
    linear-gradient(140deg, #ffffff, #e6eef8);
}

.image-preview-frame img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.image-preview-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  gap: 0.7rem;
  padding: 1.4rem;
  text-align: center;
  color: #4d4d4d;
}

.image-preview-placeholder i {
  font-size: 2rem;
  color: #0055b8;
}

.upload-hint {
  display: flex;
  gap: 0.7rem;
  align-items: start;
  margin: 0;
}

.upload-hint i {
  margin-top: 0.18rem;
  color: var(--primary);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

th,
td {
  padding: 0.95rem 0.7rem;
  text-align: left;
  border-bottom: 1px solid #ebebeb;
  vertical-align: top;
}

tbody tr {
  transition: background 180ms ease, transform 180ms ease;
}

tbody tr:hover {
  background: #f5f5f5;
}

th {
  font-size: 0.72rem;
  color: var(--text-soft);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.admin-product-cell {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.85rem;
  align-items: center;
}

.admin-product-media {
  width: 64px;
  min-height: 64px;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
}

.admin-product-media .fallback-mark {
  width: 100%;
  height: 64px;
  border-radius: 0;
  font-size: 1rem;
}

.summary-list,
.cart-list {
  display: grid;
  gap: 0.9rem;
}

.summary-row,
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid #ebebeb;
}

.summary-row:last-child,
.cart-row:last-child {
  border-bottom: 0;
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cart-thumb {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #0055b8, #006fba);
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: #e6eef8;
}

.quantity-control button {
  border: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--primary);
  font-size: 1.1rem;
}

.empty-state {
  padding: 2rem;
  text-align: center;
  border: 1px dashed #b3cde9;
  border-radius: var(--radius-lg);
  color: var(--text-soft);
  background: #f5f5f5;
}


.about-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.about-points {
  display: grid;
  gap: 1rem;
}

.about-points div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.about-points i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--primary);
  background: linear-gradient(135deg, #e6eef8, #f5f5f5);
}

.about-checklist li strong {
  color: var(--heading);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.faq-card {
  display: grid;
  gap: 0.85rem;
}

.faq-card h3 {
  line-height: 1.35;
}

.faq-card[open] {
  border-color: #b3cde9;
}

.faq-toggle {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-heading);
  color: var(--heading);
  font-weight: 700;
}

.faq-toggle::-webkit-details-marker {
  display: none;
}

.faq-toggle i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--primary);
  background: #e6eef8;
  transition: transform 220ms ease, background 220ms ease;
}

.faq-card[open] .faq-toggle i {
  transform: rotate(45deg);
  background: #d7e7fb;
  color: var(--accent);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  margin: 0.9rem 0 0;
}


.footer {
  padding: 3rem 0 2rem;
  margin-top: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.12), transparent 28%),
    linear-gradient(180deg, #e6eef8, #f5f5f5);
  border-top: 1px solid #ebebeb;
}

.footer-grid,
.office-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.footer-grid-wide {
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(220px, 1fr));
}

.footer-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.footer-panel h3 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--heading);
}

.footer-stack {
  display: grid;
  gap: 0.85rem;
}

.footer-item strong,
.footer-link strong {
  color: var(--heading);
}

.footer-item p {
  margin: 0.25rem 0 0;
}

.footer-link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: #f5f5f5;
  border: 1px solid #ebebeb;
  font-family: var(--font-ui);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-button {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: #f5f5f5;
  border: 1px solid #ebebeb;
  font-family: var(--font-ui);
  font-weight: 700;
  text-align: left;
  color: var(--heading);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-link:hover {
  transform: translateY(-1px);
  background: #e6eef8;
  border-color: #b3cde9;
}

.footer-button:hover {
  transform: translateY(-1px);
  background: #e6eef8;
  border-color: #b3cde9;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #e6eef8;
  border: 1px solid #b3cde9;
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-ui);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-link i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient-gold);
}

.social-link.is-disabled {
  opacity: 0.58;
  pointer-events: none;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 10000;
  display: grid;
  place-items: center;
  animation: cookieSlideUp 400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-card {
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius-lg) - 6px);
  background: #ffffff;
  border: 1px solid #ebebeb;
  box-shadow: 0 26px 60px rgba(0, 85, 184, 0.14);
  backdrop-filter: blur(14px);
}

.cookie-card h3 {
  margin: 0.6rem 0 0.4rem;
  font-family: var(--font-heading);
}

.cookie-actions {
  display: grid;
  gap: 0.7rem;
  align-content: center;
  justify-items: stretch;
}

.trust-compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.trust-compliance-card {
  display: grid;
  gap: 0.85rem;
}

.trust-compliance-card h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-family: var(--font-heading);
}

.footer-note {
  margin-top: 1.2rem;
  color: var(--text-soft);
}

.toast-root {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: grid;
  gap: 0.75rem;
}

.toast {
  min-width: 280px;
  max-width: 380px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  color: white;
  box-shadow: var(--shadow-lg);
  animation: toast-in 220ms ease;
}

.toast.info {
  background: var(--primary);
}

.toast.success {
  background: var(--success);
}

.toast.error {
  background: var(--danger);
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: 0.85rem;
  align-items: end;
  margin-bottom: 1rem;
}

.search-row .field {
  min-width: 0;
}

.auth-grid,
.dashboard-grid,
.admin-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background: var(--gradient-gold);
  color: #333333;
}

.cta-card p,
.cta-card h2 {
  color: #333333;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 480ms ease var(--reveal-delay, 0ms),
    transform 480ms ease var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.interactive-card {
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.interactive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 85, 184, 0.13);
  border-color: rgba(0, 85, 184, 0.22);
}

.interactive-card:hover::after {
  opacity: 1;
}

.interactive-card:hover .icon-burst {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 30px rgba(0, 85, 184, 0.14), inset 0 0 0 1px rgba(0, 85, 184, 0.08);
}

.interactive-card:hover .chip,
.interactive-card:hover .badge,
.interactive-card:hover .stock-pill,
.interactive-card:hover .status-badge {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 85, 184, 0.08);
}

.interactive-card:hover .product-media img {
  transform: scale(1.06);
  filter: saturate(1.04);
}

.social-link:not(.is-disabled):hover,
.footer-link:hover {
  box-shadow: 0 18px 28px rgba(0, 85, 184, 0.08);
}

.mini-meta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropdownOpen {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropdownClose {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
  }
}

@media (max-width: 980px) {
  .nav-row {
    grid-template-columns: auto auto;
    min-height: 72px;
  }

  .nav-toggle {
    gap: 0.6rem;
    padding: 0.65rem 1rem;
  }

  .site-nav {
    left: 1rem;
    right: 1rem;
    max-width: calc(100% - 2rem);
    top: 72px;
  }

  .nav-link,
  .nav-pill {
    font-size: 0.95rem;
  }

  .section-heading,
  .hero-grid,
  .detail-layout,
  .split-layout,
  .checkout-grid,
  .step-grid,
  .trust-grid,
  .testimonial-grid,
  .trust-compliance-grid {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }

  .cookie-card {
    grid-template-columns: 1fr;
  }

  .footer-grid-wide {
    grid-template-columns: 1fr;
  }

  .search-row,
  .cta-card {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 981px) {
  .site-nav {
    right: 0;
    left: auto;
    max-width: 380px;
    border-radius: 16px 0 16px 16px;
    top: 70px;
  }

  .nav-link,
  .nav-pill {
    padding: 0.9rem 1.2rem;
    font-size: 0.92rem;
  }

  .nav-pill[data-cart-count],
  .nav-pill[data-login-link],
  .nav-pill[data-register-link],
  .nav-pill[data-logout-button] {
    margin: 0.6rem 1rem;
  }
}

@media (max-width: 760px) {

  .hero,
  .page-hero,
  .section {
    padding: 2.6rem 0 1.6rem;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
  }

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

  .cart-row,
  .summary-row,
  .cart-item {
    flex-direction: column;
    align-items: start;
  }

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

  .product-media {
    min-height: 150px;
  }

  .product-card-body {
    padding: 0.85rem;
  }

  .button {
    padding: 0.85rem 1.1rem;
    font-size: 0.92rem;
  }

  .hero-stats,
  .step-grid,
  .trust-grid,
  .testimonial-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 0.75rem 0;
  }

  .nav-row {
    gap: 0.5rem;
    min-height: 72px;
  }

  .brand {
    gap: 0.6rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.72rem;
  }

  .nav-toggle {
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
  }

  .site-nav {
    left: 0.75rem;
    right: 0.75rem;
    max-width: calc(100% - 1.5rem);
    top: 70px;
    border-radius: 16px;
  }

  .nav-link,
  .nav-pill {
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
  }

  .nav-pill-toggle {
    padding: 0.85rem 1.2rem;
  }

  .hero,
  .page-hero {
    padding: 2rem 0 1.2rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
  }

  .hero p,
  .page-hero p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    padding: 0.9rem 1rem;
  }

  .section {
    padding: 2rem 0 1.2rem;
  }

  .container {
    width: calc(100% - 1.5rem);
  }

  .eyebrow {
    font-size: 0.68rem;
    padding: 0.45rem 0.65rem;
  }

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

  .product-card-body {
    padding: 0.75rem;
  }

  .product-media {
    min-height: 200px;
  }

  .hero-card {
    padding: 1.2rem;
  }

  .panel,
  .stat-card,
  .feature-card,
  .order-card,
  .installation-card,
  .cta-card {
    padding: 1.2rem;
  }

  .footer-grid,
  .footer-grid-wide {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cookie-card {
    padding: 1rem;
    gap: 1rem;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .auth-grid,
  .dashboard-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .detail-layout,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

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

  .search-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  input,
  select,
  textarea,
  .button {
    border-radius: 16px;
  }

  label {
    font-size: 0.95rem;
  }

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

  .mini-meta {
    font-size: 0.88rem;
  }
}

/* Bebas Neue — tighten default tracking */
h1,
h2,
h3,
h4,
h5,
h6,
.button,
.nav-link,
.nav-pill,
.eyebrow,
.chip,
.badge,
.stat-card strong,
.price,
label,
th {
  letter-spacing: -0.02em;
}

/* Dancing Script — slight tighten for readability */
body,
p,
.muted,
.section-copy,
.product-summary,
.panel-copy {
  letter-spacing: -0.01em;
}

/* Text selection color premium feel */
::selection {
  background-color: rgba(0, 85, 184, 0.22);
  color: var(--text);
}

::-moz-selection {
  background-color: rgba(0, 85, 184, 0.22);
  color: var(--text);
}

/* Custom scrollbar for premium look */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 85, 184, 0.3);
  border-radius: 999px;
  transition: background 220ms ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 85, 184, 0.5);
}

/* Focus visible for better accessibility */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Premium backdrop effects */
.site-header {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Improved button states */
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.button:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 193, 7, 0.12) 0%, transparent 40%),
    linear-gradient(225deg, rgba(0, 85, 184, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 700px;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--heading);
}

.hero-copy p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 1.25rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
  background: linear-gradient(180deg, transparent, rgba(230, 238, 248, 0.8));
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 220ms ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: #b3cde9;
  box-shadow: 0 12px 30px rgba(0, 85, 184, 0.1);
  background: linear-gradient(135deg, #f5f5f5, #e6eef8);
}

.category-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #e6eef8, #f5f5f5);
  font-size: 1.5rem;
  color: var(--primary);
}

.category-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0;
}

.category-card p {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin: 0;
}

/* ===== QUALITY SECTION ===== */
.quality-section {
  background: linear-gradient(180deg, rgba(230, 238, 248, 0.7), rgba(245, 245, 245, 0.9));
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  color: var(--heading);
}

.section-heading p {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.55;
  max-width: 520px;
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 220ms ease;
}

.trust-stat:hover {
  transform: translateY(-3px);
  border-color: #b3cde9;
  box-shadow: var(--shadow-sm);
}

.trust-stat-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 16px;
  background: linear-gradient(135deg, #e6eef8, #f5f5f5);
  font-size: 1.75rem;
  color: var(--primary);
}

.trust-stat h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0;
}

.trust-stat p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.5;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #b3cde9;
  box-shadow: var(--shadow);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #e6eef8, #f5f5f5);
  font-size: 2rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0;
}

.service-card p {
  font-size: 0.98rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap 220ms ease, color 220ms ease;
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--accent);
}

/* ===== DIFFERENCES SECTION ===== */
.differences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.difference-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 220ms ease;
}

.difference-card:hover {
  transform: translateY(-3px);
  border-color: #b3cde9;
  box-shadow: var(--shadow-sm);
}

.difference-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #e6eef8, #f5f5f5);
  font-size: 1.5rem;
  color: var(--primary);
}

.difference-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0;
}

.difference-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.5;
}

/* ===== BRANDS SECTION ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
}

.brand-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 220ms ease;
  font-size: 1.25rem;
  color: var(--primary);
}

.brand-badge:hover {
  transform: translateY(-3px);
  border-color: #b3cde9;
  box-shadow: var(--shadow-sm);
}

.brand-badge strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--heading);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: linear-gradient(180deg, transparent, rgba(230, 238, 248, 0.8));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 220ms ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: #b3cde9;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--primary);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--heading);
  display: block;
  margin-top: 0.5rem;
}

.testimonial-location {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(180deg, rgba(230, 238, 248, 0.7), transparent);
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--gradient-gold);
  border-radius: var(--radius-lg);
  color: #333333;
  box-shadow: var(--shadow);
  border: none;
}

.cta-card h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  color: #333333;
}

.cta-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(51, 51, 51, 0.88);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-actions .button {
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.5);
  color: #333333;
  border: 2px solid rgba(51, 51, 51, 0.4);
}

.cta-actions .button:hover {
  background: rgba(255, 255, 255, 0.72);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: linear-gradient(135deg, rgba(230, 238, 248, 0.9), rgba(245, 245, 245, 0.9));
}

.newsletter-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.newsletter-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--heading);
}

.newsletter-content p {
  font-size: 1rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.newsletter-form input {
  min-width: 200px;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f5f5f5;
  color: var(--text);
}

.newsletter-form input::placeholder {
  color: var(--text-soft);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
}

.newsletter-form .button {
  white-space: nowrap;
  padding: 0.9rem 1.5rem;
}

/* ===== RADWELL-INSPIRED CATALOG ===== */
.catalog-utility-bar {
  background: linear-gradient(90deg, #0055b8, #006fba);
  color: #fff;
}

.catalog-utility-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0.75rem 0;
}

.catalog-utility-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.catalog-utility-item i {
  color: #ffc107;
}

.catalog-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, #0055b8, #006fba),
    linear-gradient(180deg, rgba(255, 193, 7, 0.08), transparent);
}

.catalog-hero>.container {
  position: relative;
  z-index: 2;
}

.catalog-hero-video-wrap,
.catalog-hero-video-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.catalog-hero-video-wrap {
  z-index: 0;
  background: #032349;
}

.catalog-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.95) contrast(1.05);
}

.catalog-hero-video-tint {
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(0, 39, 84, 0.9), rgba(0, 96, 150, 0.76)),
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.18), transparent 40%);
}

.catalog-hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.catalog-hero h1,
.catalog-hero p {
  max-width: none;
  color: #fff;
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
}

.catalog-hero-copy {
  display: grid;
  gap: 1rem;
}

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

.catalog-hero-stat {
  display: grid;
  gap: 0.18rem;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.catalog-hero-stat strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 0.9vw + 1rem, 1.9rem);
}

.catalog-hero-stat span {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-ui);
  font-size: var(--type-label);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-hero-search {
  padding: 1.2rem;
  background: #ffffff;
  border: 1px solid #ebebeb;
  box-shadow: 0 18px 40px rgba(0, 85, 184, 0.16);
}

.catalog-search-form {
  display: grid;
  gap: 0.85rem;
}

.catalog-search-input {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  border: 2px solid #ebebeb;
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.catalog-search-input:focus-within {
  border-color: rgba(0, 85, 184, 0.3);
  box-shadow: 0 0 0 4px rgba(0, 85, 184, 0.08);
}

.catalog-search-input i {
  color: #0055b8;
  font-size: 1rem;
}

.catalog-search-input input {
  border: 0;
  outline: none;
  background: transparent;
  min-width: 0;
  color: #333333;
  font-weight: 600;
}

.catalog-search-clear {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #eef4fb;
  color: #0055b8;
}

.catalog-search-clear:disabled {
  opacity: 0.55;
  cursor: default;
}

.catalog-search-input .button {
  padding-inline: 1.2rem;
  background: #ffc107;
  color: #333333;
  box-shadow: none;
}

.catalog-search-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  color: #4d4d4d;
  font-size: 0.92rem;
}

.catalog-link-chip {
  border: 1px solid #ebebeb;
  background: #f5f5f5;
  color: #0055b8;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 700;
}

.catalog-search-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.catalog-filter-toggle {
  display: none;
}

.search-suggestions {
  display: grid;
  gap: 0.45rem;
  padding: 0.55rem;
  border-radius: 18px;
  border: 1px solid #ebebeb;
  background: #f5f5f5;
}

.search-suggestion-item {
  display: grid;
  gap: 0.2rem;
  width: 100%;
  text-align: left;
  border: 0;
  border-radius: 14px;
  padding: 0.8rem 0.85rem;
  background: #ffffff;
  color: #333333;
}

.search-suggestion-item:hover {
  background: #e6eef8;
}

.search-suggestion-title {
  font-weight: 800;
}

.search-suggestion-meta {
  color: #4d4d4d;
  font-size: 0.88rem;
}

.catalog-shell-section {
  background:
    linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
  color: #333333;
}

.catalog-shell-section .panel,
.catalog-shell-section .product-card,
.catalog-result-card,
.catalog-toolbar {
  background: #ffffff;
  border-color: #ebebeb;
  box-shadow: 0 12px 28px rgba(0, 85, 184, 0.08);
}

.catalog-shell-section .muted,
.catalog-shell-section .product-summary,
.catalog-shell-section .panel-copy,
.catalog-shell-section .results-count,
.catalog-results-summary {
  color: #4d4d4d;
}

.catalog-layout {
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.catalog-sidebar-backdrop {
  display: none;
}

.catalog-sidebar {
  position: sticky;
  top: 104px;
  gap: 0;
  overflow: hidden;
}

.catalog-sidebar-mobile-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #ebebeb;
}

.catalog-sidebar-mobile-head strong {
  color: #333333;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.catalog-sidebar-block {
  padding: 1.15rem 1.2rem;
  border-bottom: 1px solid #ebebeb;
}

.catalog-sidebar-block:last-of-type {
  border-bottom: 0;
}

.catalog-sidebar-head {
  align-items: center;
}

.catalog-sidebar-head .button {
  padding: 0.65rem 0.95rem;
}

.catalog-sidebar-head h2,
.catalog-shell-section .panel h2,
.catalog-shell-section .panel h3,
.catalog-result-card h2 {
  color: #333333;
}

.catalog-sidebar-label {
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d4d4d;
}

.catalog-toggle-group {
  margin-top: 0.3rem;
}

.catalog-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  background: #f7f9fc;
  border: 1px solid #ebebeb;
  color: #333333;
  font-weight: 600;
}

.catalog-toggle input {
  width: 1rem;
  height: 1rem;
  accent-color: #0055b8;
}

.catalog-filter-chips {
  gap: 0.6rem;
}

.catalog-filter-chips .chip-button {
  background: #f5f5f5;
  color: #0055b8;
  border: 1px solid #ebebeb;
}

.catalog-filter-chips .chip-button.is-active {
  background: #0055b8;
  color: #fff;
  box-shadow: none;
}

.catalog-help-list li {
  color: #4d4d4d;
  border-bottom-color: #ebebeb;
}

.catalog-support-note {
  padding: 1.15rem 1.2rem 1.25rem;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
}

.catalog-toolbar-copy {
  display: grid;
  gap: 0.25rem;
}

.catalog-toolbar-side {
  display: grid;
  justify-items: end;
  gap: 0.8rem;
}

.catalog-toolbar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.catalog-toolbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: #e6eef8;
  color: #0055b8;
  font-size: 0.84rem;
  font-weight: 800;
}

.catalog-results-summary {
  margin: 0;
}

.catalog-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.catalog-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin: 1rem 0 1.05rem;
}

.catalog-active-label {
  color: #4d4d4d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-active-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(0, 85, 184, 0.08);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  background: #ffffff;
  color: #0055b8;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 85, 184, 0.05);
}

.catalog-results-list {
  display: grid;
  gap: 1rem;
}

.catalog-result-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  gap: 1rem;
  padding: 1rem;
  border-radius: 22px;
}

.catalog-result-media {
  display: flex;
  align-items: stretch;
}

.catalog-result-image {
  width: 100%;
  min-height: 220px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, #f5f5f5, #ffffff),
    radial-gradient(circle at top right, rgba(0, 85, 184, 0.12), transparent 45%);
}

.catalog-result-image img {
  object-fit: contain;
  padding: 1rem;
}

.catalog-result-body {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 0.2rem 0;
}

.catalog-result-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.catalog-result-highlight {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  background: #f5f8fc;
  color: #0055b8;
  font-size: 0.82rem;
  font-weight: 700;
}

.catalog-result-meta,
.catalog-result-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.catalog-result-tag,
.catalog-result-stock {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.catalog-result-tag {
  background: #e6eef8;
  color: #0055b8;
}

.catalog-result-tag.is-featured {
  background: #fef4d5;
  color: #9d6b00;
}

.catalog-result-stock.is-in-stock {
  background: #eaf8ef;
  color: #008a00;
}

.catalog-result-stock.is-backorder {
  background: #fef7e4;
  color: #d67906;
}

.catalog-result-card h2 {
  margin: 0;
  font-size: 1.45rem;
}

.catalog-result-card h2 a:hover {
  color: #0055b8;
}

.catalog-result-summary {
  margin: 0;
  color: #4d4d4d;
  line-height: 1.65;
}

.catalog-result-details {
  color: #4d4d4d;
  font-size: 0.94rem;
}

.catalog-result-actions {
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.catalog-result-price-block {
  display: grid;
  gap: 0.12rem;
}

.catalog-result-price-label {
  color: #4d4d4d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-result-button-stack {
  display: grid;
  gap: 0.65rem;
}

.catalog-result-button-stack .button {
  width: 100%;
}

.catalog-result-price {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: #333333;
}

.catalog-empty-state {
  text-align: center;
  padding: 2.25rem;
}

.catalog-empty-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.catalog-empty-state h3 {
  margin: 0 0 0.4rem;
  color: #333333;
}

.catalog-shell-section mark,
.search-suggestion-item mark {
  background: rgba(255, 193, 7, 0.45);
  color: inherit;
  padding: 0 0.12rem;
  border-radius: 0.2rem;
}

body[data-page="products"] .catalog-utility-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.42rem 0;
}

body[data-page="products"] .catalog-utility-item {
  gap: 0.5rem;
  font-size: 0.76rem;
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

body[data-page="products"] .catalog-hero {
  padding: 1.5rem 0 0.55rem;
}

body[data-page="products"] .catalog-hero-video {
  opacity: 0.34;
}

body[data-page="products"] .catalog-hero-grid {
  gap: 0.85rem;
  align-items: start;
}

body[data-page="products"] .catalog-hero h1 {
  font-size: clamp(1.75rem, 1.8vw + 1rem, 2.45rem);
  line-height: 0.98;
}

body[data-page="products"] .catalog-hero p {
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 34rem;
}

body[data-page="products"] .catalog-hero-copy {
  gap: 0.6rem;
}

body[data-page="products"] .catalog-hero-stats {
  gap: 0.45rem;
}

body[data-page="products"] .catalog-hero-stat {
  padding: 0.52rem 0.62rem;
  border-radius: 14px;
}

body[data-page="products"] .catalog-hero-stat strong {
  font-size: clamp(0.95rem, 0.45vw + 0.9rem, 1.18rem);
}

body[data-page="products"] .catalog-hero-stat span {
  font-size: 0.58rem;
}

body[data-page="products"] .catalog-hero-search {
  padding: 0.78rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(0, 35, 78, 0.12);
  backdrop-filter: blur(14px);
}

body[data-page="products"] .catalog-search-form {
  gap: 0.55rem;
}

body[data-page="products"] .catalog-search-input {
  gap: 0.55rem;
  padding: 0.62rem 0.72rem;
  border-radius: 14px;
}

body[data-page="products"] .catalog-search-input input,
body[data-page="products"] .catalog-search-links,
body[data-page="products"] .catalog-search-actions .button,
body[data-page="products"] .catalog-results-summary,
body[data-page="products"] .catalog-result-summary,
body[data-page="products"] .catalog-result-details,
body[data-page="products"] .catalog-support-note,
body[data-page="products"] .catalog-help-list {
  font-size: 0.88rem;
  line-height: 1.5;
}

body[data-page="products"] .catalog-search-input .button {
  padding-inline: 0.8rem;
}

body[data-page="products"] .catalog-search-clear {
  width: 1.85rem;
  height: 1.85rem;
}

body[data-page="products"] .catalog-link-chip,
body[data-page="products"] .catalog-toolbar-badge,
body[data-page="products"] .catalog-result-tag,
body[data-page="products"] .catalog-result-stock,
body[data-page="products"] .catalog-result-highlight,
body[data-page="products"] .catalog-active-label,
body[data-page="products"] .catalog-active-pill,
body[data-page="products"] .catalog-sidebar-label,
body[data-page="products"] .results-count {
  font-size: 0.68rem;
}

body[data-page="products"] .catalog-shell-section {
  padding: 0.55rem 0 1.45rem;
}

body[data-page="products"] .catalog-layout {
  grid-template-columns: 1fr;
  gap: 0.72rem;
}

body[data-page="products"] .catalog-sidebar {
  position: static;
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

body[data-page="products"] .catalog-sidebar-mobile-head,
body[data-page="products"] .catalog-sidebar-block,
body[data-page="products"] .catalog-support-note,
body[data-page="products"] .catalog-toolbar,
body[data-page="products"] .catalog-result-card {
  padding: 0.75rem;
}

body[data-page="products"] .catalog-sidebar-mobile-head,
body[data-page="products"] .catalog-sidebar-block,
body[data-page="products"] .catalog-support-note {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 85, 184, 0.08);
  border-radius: 18px;
  box-shadow: none;
  margin-bottom: 0.55rem;
}

body[data-page="products"] .catalog-sidebar-block {
  border-bottom: 0;
}

body[data-page="products"] .catalog-sidebar-primary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 0.6rem;
  margin-bottom: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 85, 184, 0.1);
  border-radius: 0;
}

body[data-page="products"] .catalog-sidebar-primary-controls {
  padding: 0.12rem 0 0.1rem;
  margin-bottom: 0.15rem;
  background: transparent;
  border: 0;
  border-radius: 0;
}

body[data-page="products"] .catalog-refine-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.55rem;
}

body[data-page="products"] .catalog-refine-controls>.filter-group {
  flex: 1 1 210px;
  min-width: 0;
  margin: 0;
}

body[data-page="products"] .catalog-refine-controls>.catalog-toggle-group {
  display: flex;
  flex: 2 1 430px;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0;
}

body[data-page="products"] .catalog-refine-controls .field {
  gap: 0.32rem;
}

body[data-page="products"] .catalog-refine-controls .field span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d4d4d;
}

body[data-page="products"] .catalog-refine-controls .catalog-toggle {
  min-height: 42px;
  padding: 0.72rem 0.82rem;
}

body[data-page="products"] .catalog-sidebar-secondary {
  display: none;
}

body[data-page="products"] .catalog-support-note {
  padding-top: 0.85rem;
  padding-bottom: 0.9rem;
}

body[data-page="products"] .catalog-sidebar-mobile-head strong,
body[data-page="products"] .catalog-sidebar-head h2,
body[data-page="products"] .catalog-result-card h2 {
  font-size: clamp(0.98rem, 0.42vw + 0.92rem, 1.14rem);
  line-height: 1.16;
}

body[data-page="products"] .catalog-toolbar {
  padding: 0 0 0.7rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 85, 184, 0.1);
  border-radius: 0;
  box-shadow: none;
}

body[data-page="products"] .catalog-active-filters {
  margin: 0.5rem 0 0.72rem;
  padding: 0;
  background: transparent;
}

body[data-page="products"] .catalog-result-card {
  grid-template-columns: 150px minmax(0, 1fr) 165px;
  gap: 0.68rem;
  border-radius: 18px;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.88));
  border: 1px solid rgba(0, 85, 184, 0.08);
  box-shadow: none;
}

body[data-page="products"] .catalog-result-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0055b8, #ffc107);
  opacity: 0.82;
}

body[data-page="products"] .catalog-result-image {
  min-height: 150px;
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(0, 85, 184, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(245, 248, 252, 0.86));
  border: 1px solid rgba(0, 85, 184, 0.06);
}

body[data-page="products"] .catalog-result-image img {
  padding: 0.5rem;
}

body[data-page="products"] .catalog-result-body {
  gap: 0.42rem;
}

body[data-page="products"] .catalog-result-highlights,
body[data-page="products"] .catalog-result-meta,
body[data-page="products"] .catalog-result-details,
body[data-page="products"] .catalog-toolbar-meta,
body[data-page="products"] .catalog-toolbar-actions,
body[data-page="products"] .catalog-active-filters {
  gap: 0.42rem;
}

body[data-page="products"] .catalog-result-actions {
  align-content: start;
  gap: 0.55rem;
  padding-left: 0.72rem;
  border-left: 1px solid rgba(0, 85, 184, 0.08);
}

body[data-page="products"] .catalog-result-price {
  font-size: clamp(1rem, 0.45vw + 0.95rem, 1.2rem);
}

body[data-page="products"] .catalog-result-price-label {
  font-size: 0.64rem;
}

body[data-page="products"] .catalog-main .button,
body[data-page="products"] .catalog-sidebar .button,
body[data-page="products"] .catalog-search-actions .button {
  font-size: 0.82rem;
}

body[data-page="products"] .catalog-empty-state {
  padding: 1.35rem 0.9rem;
}

body[data-page="products"] .catalog-active-pill {
  padding: 0.38rem 0.62rem;
  background: rgba(230, 238, 248, 0.7);
  border-color: rgba(0, 85, 184, 0.08);
  box-shadow: none;
}

.store-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.store-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(0, 85, 184, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--heading);
  text-align: left;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.store-card:hover,
.store-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 193, 7, 0.8);
  background: #ffffff;
}

.store-card strong,
.store-card small {
  grid-column: 2;
  min-width: 0;
}

.store-card strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--heading);
}

.store-card small {
  color: var(--text-soft);
  line-height: 1.35;
}

.store-card-icon,
.store-card-media {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #e6eef8;
  color: var(--primary);
  overflow: hidden;
}

.store-card-product-media {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
}

.store-card-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}

.auth-loading-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(6, 8, 16, 0.96), rgba(0, 47, 102, 0.94)),
    url("/assets/images/products/delta-2-max.png") center / min(560px, 75vw) no-repeat;
}

.auth-loading-card {
  width: min(100%, 430px);
  display: grid;
  place-items: center;
  gap: 0.9rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-align: center;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.auth-loading-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
}

.auth-loading-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.auth-loading-spinner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: #ffc107;
  animation: authSpin 900ms linear infinite;
}

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

.auth-loading-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: #ffffff;
}

.auth-loading-card p {
  margin: 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.auth-loading-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.auth-loading-steps span {
  color: rgba(255, 255, 255, 0.76);
}

.auth-loading-steps span {
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.checkout-reference {
  color: var(--text-soft);
}

.payment-methods {
  display: grid;
  gap: 0.75rem;
}

.payment-option-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem;
  border: 1px solid rgba(0, 85, 184, 0.12);
  border-radius: 16px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.payment-option-card.is-selected,
.payment-option-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 193, 7, 0.9);
  box-shadow: 0 14px 30px rgba(0, 85, 184, 0.08);
}

.payment-option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-option-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: var(--accent-soft);
}

.payment-option-copy {
  display: grid;
  gap: 0.2rem;
}

.payment-option-copy strong {
  color: var(--heading);
}

.payment-option-copy small,
.payment-option-copy em {
  color: var(--text-soft);
  line-height: 1.45;
}

.payment-option-copy em {
  font-style: normal;
  font-weight: 700;
}

.checkout-complete-panel {
  margin-bottom: 1rem;
}

.transfer-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.transfer-details div {
  padding: 0.8rem;
  border-radius: 14px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
}

.transfer-details span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-soft);
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 800;
}

.transfer-details strong {
  color: var(--heading);
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .store-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="products"] .catalog-utility-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body[data-page="products"] .catalog-utility-inner::-webkit-scrollbar {
    display: none;
  }

  body[data-page="products"] .catalog-utility-item {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  body[data-page="products"] .catalog-hero {
    padding: 1.2rem 0 0.45rem;
  }

  body[data-page="products"] .catalog-hero-stats {
    grid-template-columns: repeat(3, minmax(72px, 1fr));
  }

  body[data-page="products"] .catalog-sidebar {
    position: fixed;
    width: min(80vw, 292px);
    max-width: 292px;
    background: #ffffff;
    border-right: 1px solid rgba(0, 85, 184, 0.08);
    box-shadow: 0 22px 44px rgba(0, 35, 78, 0.16);
  }

  body[data-page="products"] .catalog-sidebar-primary-head,
  body[data-page="products"] .catalog-sidebar-primary-controls {
    padding: 0.75rem;
    border-bottom: 0;
  }

  body[data-page="products"] .catalog-sidebar-primary-head {
    background: transparent;
  }

  body[data-page="products"] .catalog-sidebar-primary-controls {
    margin-bottom: 0;
  }

  body[data-page="products"] .catalog-refine-controls,
  body[data-page="products"] .catalog-refine-controls>.catalog-toggle-group {
    display: grid;
    gap: 0.55rem;
  }

  body[data-page="products"] .catalog-refine-controls>.filter-group,
  body[data-page="products"] .catalog-refine-controls>.catalog-toggle-group {
    flex: initial;
  }

  body[data-page="products"] .catalog-sidebar-secondary {
    display: block;
  }

  body[data-page="products"] .catalog-sidebar-mobile-head,
  body[data-page="products"] .catalog-sidebar-block,
  body[data-page="products"] .catalog-support-note {
    margin-bottom: 0;
    border-radius: 0;
    background: transparent;
    border-left: 0;
    border-right: 0;
  }
}

@media (max-width: 760px) {
  body[data-page="products"] .catalog-utility-bar {
    display: none;
  }

  body[data-page="products"] .catalog-hero h1 {
    font-size: clamp(1.35rem, 4.2vw, 1.9rem);
  }

  body[data-page="products"] .catalog-hero p {
    font-size: 0.84rem;
  }

  body[data-page="products"] .catalog-hero-stats {
    display: none;
  }

  body[data-page="products"] .catalog-hero-stat {
    padding: 0.5rem 0.56rem;
  }

  body[data-page="products"] .catalog-search-input {
    padding: 0.58rem 0.64rem;
  }

  body[data-page="products"] .catalog-result-card,
  body[data-page="products"] .catalog-toolbar,
  body[data-page="products"] .catalog-active-filters {
    padding: 0.72rem;
  }

  body[data-page="products"] .catalog-result-image {
    min-height: 128px;
  }

  body[data-page="products"] .catalog-result-card h2 {
    font-size: 0.94rem;
  }

  body[data-page="products"] .catalog-result-summary,
  body[data-page="products"] .catalog-result-details,
  body[data-page="products"] .catalog-results-summary {
    font-size: 0.82rem;
  }

  body[data-page="products"] .catalog-result-price {
    font-size: 1.02rem;
  }

  body[data-page="products"] .catalog-toolbar-meta {
    display: none;
  }

  body[data-page="products"] .catalog-result-actions {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .transfer-details {
    grid-template-columns: 1fr;
  }

  .store-strip {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .store-strip::-webkit-scrollbar {
    display: none;
  }

  .store-card {
    flex: 0 0 238px;
  }

  body[data-page="products"] .catalog-utility-item {
    padding: 0.4rem 0.6rem;
  }

  body[data-page="products"] .catalog-shell-section {
    padding-top: 0.75rem;
  }

  body[data-page="products"] .catalog-hero {
    padding: 0.95rem 0 0.3rem;
  }

  body[data-page="products"] .catalog-hero-stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.45rem;
  }

  body[data-page="products"] .catalog-hero-stat strong {
    font-size: 0.95rem;
  }

  body[data-page="products"] .catalog-hero-stat span,
  body[data-page="products"] .catalog-link-chip,
  body[data-page="products"] .catalog-toolbar-badge,
  body[data-page="products"] .catalog-result-tag,
  body[data-page="products"] .catalog-result-stock {
    font-size: 0.64rem;
  }

  body[data-page="products"] .catalog-search-links,
  body[data-page="products"] .catalog-search-actions .button,
  body[data-page="products"] .catalog-result-summary,
  body[data-page="products"] .catalog-result-details,
  body[data-page="products"] .catalog-results-summary {
    font-size: 0.78rem;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
  }

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

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

  .cta-card,
  .newsletter-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .catalog-utility-inner,
  .catalog-hero-grid,
  .catalog-result-card {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .catalog-toolbar-side {
    justify-items: start;
    width: 100%;
  }

  .catalog-filter-toggle {
    display: inline-flex;
  }

  .catalog-sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 47;
    display: block;
    border: 0;
    background: rgba(5, 19, 43, 0.46);
  }

  .catalog-sidebar-backdrop.hidden {
    display: none;
  }

  .catalog-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 48;
    width: min(88vw, 360px);
    max-width: 360px;
    height: 100vh;
    overflow-y: auto;
    border-radius: 0 24px 24px 0;
    transform: translateX(-104%);
    transition: transform 220ms ease;
  }

  body.catalog-filters-open .catalog-sidebar {
    transform: translateX(0);
  }

  .catalog-sidebar-mobile-head {
    display: flex;
  }

  .detail-card-facts,
  .detail-info-grid,
  .detail-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.6rem, 5vw, 2.8rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .category-card {
    padding: 1.25rem 0.8rem;
  }

  .category-icon {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  .trust-stats-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: unset;
    width: 100%;
  }

  .newsletter-form .button {
    width: 100%;
  }

  .catalog-search-input {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .catalog-search-input .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .catalog-search-actions,
  .catalog-toolbar-actions,
  .catalog-toolbar-meta,
  .catalog-active-filters {
    width: 100%;
  }

  .catalog-active-pill {
    justify-content: space-between;
  }

  .catalog-result-image {
    min-height: 180px;
  }

  .catalog-result-actions {
    align-content: start;
  }

  .detail-card-top {
    align-items: start;
    flex-direction: column;
  }

  .detail-product-media {
    min-height: 320px;
    padding: 1rem;
  }

  .detail-card-facts,
  .detail-action-grid,
  .detail-info-grid,
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .detail-availability {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.4rem, 5vw, 2.4rem);
    line-height: 1.15;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

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

  .service-card,
  .trust-stat,
  .difference-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

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

  .cta-card,
  .newsletter-card {
    padding: 1.5rem;
  }

  .cta-card h2,
  .newsletter-card h2 {
    font-size: 1.4rem;
  }

  .section-heading h2 {
    font-size: clamp(1.3rem, 4vw, 2rem);
  }

  .catalog-utility-inner {
    gap: 0.5rem;
    padding: 0.65rem 0;
  }

  .catalog-utility-item {
    font-size: 0.82rem;
  }

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

  .catalog-hero-search,
  .catalog-sidebar-block,
  .catalog-support-note,
  .catalog-toolbar,
  .catalog-result-card,
  .catalog-active-filters {
    padding: 1rem;
  }

  .catalog-result-card h2 {
    font-size: 1.2rem;
  }

  .catalog-result-price {
    font-size: 1.45rem;
  }

  .catalog-empty-actions,
  .catalog-search-actions {
    flex-direction: column;
  }

  .catalog-empty-actions .button,
  .catalog-search-actions .button {
    width: 100%;
  }

  .detail-product-media {
    min-height: 260px;
  }

  .detail-product-media img {
    padding: 0.6rem;
  }

  .detail-price-row {
    align-items: start;
  }
}

/* ===== TYPOGRAPHY REFRESH ===== */
:root {
  --type-label: clamp(0.8rem, 0.12vw + 0.78rem, 0.88rem);
  --type-ui: clamp(0.96rem, 0.18vw + 0.92rem, 1.04rem);
  --type-body: clamp(1.04rem, 0.24vw + 1rem, 1.16rem);
  --type-title: clamp(1.3rem, 0.82vw + 1.08rem, 1.72rem);
  --type-display: clamp(1.9rem, 1.7vw + 1.2rem, 3.1rem);
  --type-hero: clamp(2.7rem, 4.4vw + 1.3rem, 5.35rem);
}

body {
  font-size: var(--type-body);
  line-height: 1.72;
}

.typed-heading {
  min-height: 2.4em;
  text-wrap: balance;
}

.typed-heading.is-typing::after,
.typed-heading.is-typed::after {
  content: "";
  display: inline-block;
  width: 0.12em;
  height: 0.9em;
  margin-left: 0.14em;
  vertical-align: -0.08em;
  background: currentColor;
  animation: headingCaretBlink 0.95s steps(1) infinite;
}

@keyframes headingCaretBlink {
  50% {
    opacity: 0;
  }
}

.brand-copy small,
.eyebrow,
.chip,
.badge,
.stock-pill,
.status-badge,
.catalog-result-tag,
.catalog-result-stock,
th,
.results-count,
.mini-meta {
  font-size: var(--type-label);
}

.nav-link,
.nav-pill,
.button,
label,
input,
select,
textarea,
.service-link,
.testimonial-location,
.search-suggestion-meta {
  font-size: var(--type-ui);
}

.hero h1,
.page-hero h1,
.hero-copy h1 {
  font-size: var(--type-hero);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.section-heading h2,
.cta-card h2,
.newsletter-content h2 {
  font-size: var(--type-display);
  line-height: 1.1;
}

.product-card h3,
.panel h2,
.panel h3,
.order-card h3,
.installation-card h3,
.service-card h3,
.difference-card h3,
.trust-stat h3,
.category-card h3,
.office-card h3 {
  font-size: var(--type-title);
  line-height: 1.18;
}

.hero p,
.page-hero p,
.section-copy,
.muted,
.product-summary,
.panel-copy,
.meta-list,
.list-reset,
.catalog-result-summary,
.catalog-result-details,
.catalog-results-summary,
.newsletter-content p,
.cta-card p,
.testimonial-text,
.auth-switch,
.upload-hint,
.empty-state {
  font-size: var(--type-body);
  line-height: 1.8;
}

.price {
  font-size: clamp(1.08rem, 0.45vw + 0.98rem, 1.28rem);
  line-height: 1.24;
}

.catalog-result-price {
  font-size: clamp(1.75rem, 1.45vw + 1.3rem, 2.15rem);
}

.button {
  line-height: 1.28;
}

input,
select,
textarea {
  line-height: 1.55;
}

/* ===== HOME REDESIGN ===== */
.home-hero {
  overflow: hidden;
}

body[data-page="home"] .hero-copy h1,
body[data-page="home"] .section-heading h2,
body[data-page="home"] .hero-showcase-main h2,
body[data-page="home"] .category-feature h3,
body[data-page="home"] .service-line h3,
body[data-page="home"] .difference-point h3,
body[data-page="home"] .brand-spotlight h2,
body[data-page="home"] .trust-story-copy h2 {
  text-wrap: balance;
}

body[data-page="home"] .hero-copy h1 {
  font-family: var(--font-home-hero);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 12ch;
}

body[data-page="home"] .hero-copy p,
body[data-page="home"] .section-copy,
body[data-page="home"] .category-feature p,
body[data-page="home"] .service-line p,
body[data-page="home"] .difference-point p,
body[data-page="home"] .brand-spotlight p,
body[data-page="home"] .testimonial-text,
body[data-page="home"] .trust-flow p,
body[data-page="home"] .hero-showcase-main p {
  font-family: var(--font-body);
}

.home-hero-grid {
  align-items: center;
  gap: 2rem;
}

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  margin-top: 1.5rem;
  color: var(--text-soft);
}

.hero-proofline span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--type-ui);
  font-weight: 700;
}

.hero-showcase {
  display: grid;
  gap: 1rem;
}

.hero-showcase-main,
.hero-mini-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(0, 85, 184, 0.12), transparent 34%),
    linear-gradient(165deg, #ffffff, #f5f9ff);
  border: 1px solid rgba(0, 85, 184, 0.08);
  box-shadow: 0 16px 34px rgba(0, 85, 184, 0.08);
}

.hero-showcase-main {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(220px, 1fr);
  align-items: center;
  min-height: 400px;
  padding: 1.5rem;
  border-radius: 42px 18px 42px 18px;
}

.hero-showcase-copy {
  display: grid;
  gap: 0.75rem;
  max-width: 22rem;
}

.hero-showcase-kicker,
.hero-mini-kicker,
.category-feature-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--type-label);
  font-family: var(--font-ui);
  font-weight: 800;
}

body[data-page="home"] .eyebrow,
body[data-page="home"] .hero-showcase-kicker,
body[data-page="home"] .hero-mini-kicker,
body[data-page="home"] .category-feature-label,
body[data-page="home"] .hero-proofline span,
body[data-page="home"] .service-link,
body[data-page="home"] .brand-copy-actions .button,
body[data-page="home"] .testimonial-location {
  font-family: var(--font-ui);
  line-height: 1.18;
  letter-spacing: 0.06em;
}

.hero-showcase-main h2,
.hero-mini-panel strong,
.category-feature h3,
.service-line h3,
.difference-point h3,
.brand-spotlight h2 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--heading);
}

body[data-page="home"] .hero-showcase-main h2,
body[data-page="home"] .section-heading h2,
body[data-page="home"] .category-feature h3,
body[data-page="home"] .service-line h3,
body[data-page="home"] .difference-point h3,
body[data-page="home"] .brand-spotlight h2,
body[data-page="home"] .trust-story-copy h2 {
  font-family: var(--font-heading);
  letter-spacing: -0.045em;
}

.hero-showcase-main h2,
.brand-spotlight h2,
.trust-story-copy h2 {
  font-size: clamp(1.9rem, 1.8vw + 1.2rem, 2.9rem);
  line-height: 1.08;
}

body[data-page="home"] .section-heading h2,
body[data-page="home"] .brand-spotlight h2,
body[data-page="home"] .trust-story-copy h2 {
  font-size: clamp(1.72rem, 1.32vw + 1.16rem, 2.5rem);
  line-height: 1.04;
}

.trust-story-copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--heading);
}

.category-feature h3 {
  font-size: clamp(1.55rem, 1vw + 1.18rem, 2rem);
  line-height: 1.14;
}

body[data-page="home"] .category-feature h3 {
  font-size: clamp(1.42rem, 0.72vw + 1.16rem, 1.82rem);
  line-height: 1.08;
}

.service-line h3,
.difference-point h3 {
  font-size: clamp(1.35rem, 0.8vw + 1.1rem, 1.7rem);
  line-height: 1.16;
}

body[data-page="home"] .service-line h3,
body[data-page="home"] .difference-point h3 {
  line-height: 1.08;
}

body[data-page="home"] .hero-mini-panel strong,
body[data-page="home"] .difference-number,
body[data-page="home"] .service-line-index,
body[data-page="home"] .brand-gallery-item figcaption,
body[data-page="home"] .testimonial-author,
body[data-page="home"] .trust-flow strong {
  font-family: var(--font-home-accent);
  letter-spacing: -0.03em;
}

body[data-page="about"] .typed-heading {
  font-family: var(--font-home-hero);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-showcase-main p,
.category-feature p,
.service-line p,
.difference-point p,
.brand-spotlight p {
  margin: 0;
  color: var(--text-soft);
}

.hero-showcase-main img {
  width: min(100%, 430px);
  justify-self: end;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.08));
}

.hero-showcase-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-mini-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 26px 14px 26px 14px;
}

.hero-mini-panel strong {
  display: block;
  margin-top: 0.25rem;
  font-size: var(--type-title);
}

.hero-mini-panel img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.08));
}

.category-promenade {
  display: grid;
  gap: 1.25rem;
}

.category-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 1.4rem;
  align-items: center;
  padding: 1.45rem;
  border-radius: 42px 16px 42px 16px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.96)),
    linear-gradient(90deg, rgba(230, 238, 248, 0.7), transparent);
  border: 1px solid rgba(0, 85, 184, 0.08);
  box-shadow: 0 16px 34px rgba(0, 85, 184, 0.08);
}

.category-feature-alt {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}

.category-feature-alt .category-feature-copy {
  order: 2;
}

.category-feature-alt .category-feature-media {
  order: 1;
}

.category-feature-copy {
  display: grid;
  gap: 0.9rem;
}

.category-feature-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.category-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--heading);
  font-size: var(--type-ui);
  font-weight: 700;
}

.category-feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gradient-gold);
  box-shadow: 0 0 0 6px rgba(255, 193, 7, 0.14);
}

.category-feature-media {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 1.1rem;
  border-radius: 32px 14px 32px 14px;
  background:
    radial-gradient(circle at top right, rgba(0, 85, 184, 0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 193, 7, 0.18), transparent 28%),
    linear-gradient(160deg, #ffffff, #f5f5f5);
}

.category-feature-media img {
  width: min(100%, 360px);
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.08));
}

.trust-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.8rem;
  align-items: center;
}

.trust-story-copy {
  display: grid;
  gap: 1rem;
}

.trust-flow {
  counter-reset: trust-step;
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-flow li {
  position: relative;
  padding: 0 0 0 4rem;
}

.trust-flow li::before {
  counter-increment: trust-step;
  content: counter(trust-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  line-height: 1;
  color: rgba(0, 85, 184, 0.22);
}

.trust-flow strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--heading);
  font-size: var(--type-ui);
}

.trust-flow p {
  margin: 0;
  color: var(--text-soft);
}

.trust-story-media {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 42px 18px 42px 18px;
  background:
    radial-gradient(circle at top, rgba(255, 193, 7, 0.18), transparent 36%),
    linear-gradient(160deg, #ffffff, #eef6ff);
  border: 1px solid rgba(0, 85, 184, 0.08);
  box-shadow: 0 18px 36px rgba(0, 85, 184, 0.08);
}

.trust-story-badge,
.trust-story-note {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 85, 184, 0.08);
}

.trust-story-badge span,
.trust-story-note span {
  color: var(--primary);
  font-size: var(--type-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-family: var(--font-ui);
}

.trust-story-badge strong,
.trust-story-note strong {
  color: var(--heading);
  font-family: var(--font-heading);
}

.trust-story-media img {
  width: min(100%, 380px);
  justify-self: center;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.08));
}

.trust-story-media-photo img {
  width: 100%;
  max-width: none;
  min-height: 280px;
  max-height: 340px;
  object-fit: cover;
  border-radius: 30px 14px 30px 14px;
  filter: none;
}

.service-lines {
  display: grid;
  gap: 1rem;
}

.service-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 300px);
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.3rem;
  border-radius: 34px 16px 34px 16px;
  background: linear-gradient(140deg, #ffffff, #f8fbff);
  border: 1px solid rgba(0, 85, 184, 0.08);
  box-shadow: 0 14px 28px rgba(0, 85, 184, 0.06);
}

.service-line-reverse {
  grid-template-columns: auto minmax(220px, 300px) minmax(0, 1fr);
}

.service-line-reverse .service-line-copy {
  order: 3;
}

.service-line-reverse .service-line-media {
  order: 2;
}

.service-line-index {
  align-self: start;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 1.2vw + 1.3rem, 2.3rem);
  color: rgba(0, 85, 184, 0.18);
  line-height: 1;
}

.service-line-copy {
  display: grid;
  gap: 0.6rem;
}

.service-line-media {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 0.9rem;
  border-radius: 28px 14px 28px 14px;
  background:
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.18), transparent 30%),
    linear-gradient(155deg, #f5f5f5, #ffffff);
}

.service-line-media img {
  width: min(100%, 240px);
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.08));
}

.service-line-media-photo {
  padding: 0;
  overflow: hidden;
  background: #eef3f8;
}

.service-line-media-photo img {
  width: 100%;
  min-height: 220px;
  max-height: none;
  object-fit: cover;
  filter: none;
  display: block;
}

.difference-river {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.difference-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 0.2rem 0 1.05rem;
  border-bottom: 1px solid rgba(0, 85, 184, 0.12);
}

.difference-number {
  min-width: 3rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary);
}

.brand-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1.6rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 42px 18px 42px 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.16), transparent 34%),
    linear-gradient(155deg, #ffffff, #f5f9ff);
  border: 1px solid rgba(0, 85, 184, 0.08);
  box-shadow: 0 18px 38px rgba(0, 85, 184, 0.08);
}

.brand-spotlight-copy {
  display: grid;
  gap: 1rem;
}

.brand-section-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.brand-section-heading>div {
  display: grid;
  gap: 0.55rem;
  max-width: 34rem;
}

.brand-browse-link {
  align-self: start;
  white-space: nowrap;
}

.brand-logo-lockup {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 85, 184, 0.08);
}

.brand-logo-mark {
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  padding: 1rem 0.9rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(255, 193, 7, 0.18), transparent 42%),
    linear-gradient(180deg, #101214, #000000);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 30px rgba(0, 0, 0, 0.18);
}

.brand-logo-lockup img {
  width: 100%;
  max-width: 156px;
  display: block;
}

.brand-logo-mark span {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-ui);
  font-size: var(--type-label);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo-copy {
  display: grid;
  gap: 0.35rem;
}

.brand-logo-lockup strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  font-size: var(--type-title);
}

.brand-logo-lockup p {
  margin: 0;
}







.brand-copy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.brand-line-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.brand-line-pill {
  display: grid;
  gap: 0.28rem;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.16), transparent 36%),
    linear-gradient(160deg, #ffffff, #f6faff);
  border: 1px solid rgba(0, 85, 184, 0.08);
  box-shadow: 0 12px 24px rgba(0, 85, 184, 0.05);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand-line-pill:hover,
.brand-line-pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 85, 184, 0.18);
  box-shadow: 0 18px 30px rgba(0, 85, 184, 0.08);
}

.brand-line-pill span {
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: var(--type-label);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-line-pill strong {
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 0.5vw + 0.95rem, 1.16rem);
}

.brand-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.brand-gallery-main {
  grid-row: span 2;
}

.brand-gallery-item {
  display: grid;
  gap: 0.8rem;
  align-items: center;
  padding: 1.1rem;
  border-radius: 28px 14px 28px 14px;
  background:
    radial-gradient(circle at top right, rgba(0, 85, 184, 0.1), transparent 36%),
    linear-gradient(160deg, #ffffff, #f5f5f5);
  border: 1px solid rgba(0, 85, 184, 0.08);
  box-shadow: 0 14px 28px rgba(0, 85, 184, 0.06);
}

.brand-gallery-item img {
  width: min(100%, 280px);
  max-height: 250px;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.08));
}

.brand-gallery-item figcaption {
  text-align: center;
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: var(--type-ui);
}

@media (max-width: 980px) {

  .home-hero-grid,
  .trust-story,
  .brand-spotlight,
  .category-feature,
  .category-feature-alt {
    grid-template-columns: 1fr;
  }

  .hero-showcase-main,
  .service-line,
  .service-line-reverse {
    grid-template-columns: 1fr;
  }

  .hero-showcase-main img {
    justify-self: center;
  }

  .service-line-copy,
  .service-line-reverse .service-line-copy,
  .service-line-media,
  .service-line-reverse .service-line-media {
    order: initial;
  }

  .difference-river {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    line-height: 1.68;
  }

  body[data-page="home"] .hero-copy h1 {
    max-width: 13ch;
    line-height: 1;
  }

  .hero-showcase-stack,
  .brand-gallery {
    grid-template-columns: 1fr;
  }

  .hero-showcase-main,
  .category-feature,
  .trust-story-media,
  .brand-spotlight {
    padding: 1.15rem;
  }

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

  .brand-gallery-main {
    grid-row: auto;
  }

  .brand-logo-lockup {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .brand-logo-mark {
    width: min(100%, 220px);
  }

  .brand-section-heading {
    align-items: start;
  }

  .brand-line-grid {
    grid-template-columns: 1fr;
  }

  .hero-proofline,
  .brand-copy-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 520px) {

  .hero-showcase-main,
  .category-feature,
  .service-line,
  .trust-story-media,
  .brand-spotlight {
    border-radius: 28px 14px 28px 14px;
  }

  .hero-mini-panel,
  .category-feature-media,
  .service-line-media,
  .brand-gallery-item {
    border-radius: 22px 12px 22px 12px;
  }

  .hero-showcase-main img,
  .category-feature-media img,
  .service-line-media img,
  .trust-story-media img,
  .brand-gallery-item img {
    max-width: 100%;
  }

  .typed-heading {
    min-height: 2.8em;
  }
}

/* ===== CLEAN ANIMATIONS ===== */

/* Button shimmer on hover */
.button {
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  transition: left 480ms ease;
  pointer-events: none;
}

.button:hover::before {
  left: 160%;
}

/* Service link arrow slide */
.service-link i {
  transition: transform 220ms ease;
  display: inline-block;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Stat card count pop */
@keyframes countPop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }

  60% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.stat-card strong {
  animation: countPop 420ms ease both;
}

/* Page fade-in */
@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  animation: pageFadeIn 380ms ease both;
}

/* Nav link underline slide */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

/* Product card image zoom */
.interactive-card:hover .product-media img {
  transform: scale(1.05);
  filter: saturate(1.06);
}

/* Icon burst lift */
.interactive-card:hover .icon-burst {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 85, 184, 0.14);
}

/* Eyebrow pulse dot */
.eyebrow i {
  animation: none;
}

/* Smooth chip hover */
.interactive-card:hover .chip,
.interactive-card:hover .badge,
.interactive-card:hover .stock-pill {
  transform: translateY(-1px);
}

/* Footer link hover */
.footer-link:hover,
.footer-button:hover {
  transform: translateX(3px);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ===== BLACK & WHITE FOOTER ===== */
.footer-bw {
  background: #111111;
  color: #cccccc;
  border-top: 1px solid #222222;
  font-family: var(--font-body);
  font-size: 0.82rem;
}

.footer-bw-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 0 2rem;
}

.footer-bw-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-bw-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-bw-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.footer-bw-about {
  margin: 0;
  color: #888888;
  line-height: 1.6;
  font-size: 0.78rem;
  max-width: 260px;
}

.footer-bw-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-bw-col h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.4rem;
}

.footer-bw-col a,
.footer-bw-col p {
  color: #888888;
  text-decoration: none;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
  transition: color 160ms ease;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-bw-col a:hover {
  color: #ffffff;
}

.footer-bw-col i {
  margin-top: 0.15rem;
  color: #555555;
  flex-shrink: 0;
}

.footer-bw-cookie-btn {
  background: none;
  border: none;
  padding: 0;
  color: #888888;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  text-align: left;
  transition: color 160ms ease;
}

.footer-bw-cookie-btn:hover {
  color: #ffffff;
}

.footer-bw-bottom {
  border-top: 1px solid #222222;
  padding: 1rem 0;
}

.footer-bw-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #555555;
}

.footer-bw-socials {
  display: flex;
  gap: 1rem;
}

.footer-bw-socials a,
.footer-bw-social-off {
  color: #555555;
  font-size: 0.9rem;
  transition: color 160ms ease;
}

.footer-bw-socials a:hover {
  color: #ffffff;
}

.footer-bw-social-off {
  opacity: 0.35;
  cursor: default;
}

@media (max-width: 860px) {
  .footer-bw-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-bw-brand {
    grid-column: 1 / -1;
  }

  .footer-bw-about {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .footer-bw-inner {
    grid-template-columns: 1fr;
    padding: 2rem 0 1.5rem;
  }

  .footer-bw-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* ═══════════════════════════════════════════════
   DESKTOP NAV — simple, clean, Apple-store style
═══════════════════════════════════════════════ */

.site-nav-desktop {
  display: none;
  /* hidden on mobile */
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

@media (min-width: 860px) {
  .site-nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: none !important;
  }

  /* mobile nav hidden on desktop */
}

/* Base link */
.snav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-soft);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.snav-link:hover,
.snav-link.is-active {
  color: var(--heading);
  background: var(--surface-muted);
}

.snav-link.is-active {
  font-weight: 600;
  color: var(--primary);
}

/* Cart / admin pill */
.snav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--accent-soft);
  color: var(--primary);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}

.snav-pill:hover {
  background: var(--bg-accent);
  box-shadow: var(--shadow-sm);
}

.snav-pill-admin {
  background: var(--gradient-gold);
  color: #333;
  border-color: transparent;
}

/* Theme toggle button */
.snav-theme-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 0.82rem;
  transition: background 160ms ease, color 160ms ease;
  margin-left: 0.25rem;
}

.snav-theme-btn:hover {
  background: var(--surface-muted);
  color: var(--heading);
}

/* Chevron rotation */
.snav-chevron {
  font-size: 0.6rem;
  transition: transform 200ms ease;
}

.snav-dropdown-trigger[aria-expanded="true"] .snav-chevron {
  transform: rotate(180deg);
}

/* ── Products mega-dropdown ── */
.snav-dropdown-wrap {
  position: relative;
}

.snav-mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 200;
}

.snav-mega.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.snav-mega-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.snav-product-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 0.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 160ms ease;
  text-align: center;
}

.snav-product-tile:hover {
  background: var(--surface-muted);
}

.snav-product-img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: var(--bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.snav-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.snav-product-img-all {
  font-size: 1.4rem;
  color: var(--primary);
}

.snav-product-name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.2;
}

.snav-product-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--text-soft);
}

/* ── Dark mode nav ── */








/* ── Nav row adjustment for desktop ── */
@media (min-width: 860px) {
  .nav-row {
    grid-template-columns: auto 1fr;
    min-height: 64px;
  }

  .site-nav-desktop {
    justify-self: end;
  }
}

/* ═══════════════════════════════════════════
   GLOBAL FONT RESET — Inter everywhere
═══════════════════════════════════════════ */
body,
p,
span,
a,
li,
td,
th,
label,
input,
select,
textarea,
button,
.muted,
.product-summary,
.panel-copy,
.section-copy,
.nav-link,
.snav-link,
.footer-bw-col a,
.footer-bw-about,
.hp-hero-sub,
.hp-step p,
.hp-testi blockquote,
.cookie-card p,
.auth-side-card p,
.about-points p,
.list-reset li {
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #1a1a1a;
}

p,
.muted,
.product-summary,
.section-copy {
  font-size: 0.93rem;
  color: #333;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   MOBILE PRODUCT LIST — swipe-friendly rows
═══════════════════════════════════════════ */
.mob-product-list {
  display: flex !important;
  flex-direction: column;
  gap: 0;
}

.mob-product-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #ebebeb;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: background 150ms ease;
  -webkit-tap-highlight-color: transparent;
}

.mob-product-card:first-child {
  border-top: 1px solid #ebebeb;
  border-radius: 14px 14px 0 0;
}

.mob-product-card:last-child {
  border-radius: 0 0 14px 14px;
  border-bottom: none;
}

.mob-product-card:active {
  background: #f5f8ff;
}

.mob-product-img {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

.mob-product-img .mob-product-media,
.mob-product-img .product-media {
  width: 100%;
  height: 100%;
  min-height: unset;
  padding: 0;
  border-radius: 0;
  background: #f5f5f5;
}

.mob-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.mob-product-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mob-product-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0055b8;
}

.mob-product-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #111;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mob-product-price {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0055b8;
  margin: 0;
}

.mob-product-stock {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  width: fit-content;
}

.mob-product-stock.in {
  background: #eaf8ef;
  color: #008a00;
}

.mob-product-stock.out {
  background: #fff0f0;
  color: #cc0000;
}

.mob-product-arrow {
  flex-shrink: 0;
  color: #ccc;
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════
   MOBILE LANDING PAGE — logo + footer fix
═══════════════════════════════════════════ */
@media (max-width: 640px) {

  /* show logo on mobile landing */
  .hp-brand-float {
    top: 1.25rem;
    left: 1.25rem;
  }

  .hp-brand-float span {
    font-size: 0.85rem;
  }

  /* footer visible on mobile */
  .footer-bw-inner {
    grid-template-columns: 1fr;
    padding: 2rem 0 1.5rem;
    gap: 1.5rem;
  }

  .footer-bw-brand {
    text-align: center;
    align-items: center;
  }

  .footer-bw-about {
    max-width: 100%;
    text-align: center;
  }

  .footer-bw-col {
    border-top: 1px solid #222;
    padding-top: 1rem;
  }

  .footer-bw-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  /* product grid on mobile */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* catalog hero compact on mobile */
  .catalog-hero {
    padding: 1.5rem 0 1rem;
  }

  .catalog-hero h1 {
    font-size: 1.6rem;
  }

  /* nav font fix */
  .nav-link span,
  .nav-pill {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
  }
}

/* ═══════════════════════════════════════════
   FOOTER SOCIAL LINKS — real icons
═══════════════════════════════════════════ */
.footer-bw-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e1e1e;
  color: #aaa;
  font-size: 0.9rem;
  transition: background 180ms ease, color 180ms ease;
  text-decoration: none;
}

.footer-bw-socials a:hover {
  background: #0055b8;
  color: #fff;
}

/* ═══════════════════════════════════════════
   LOGIN PAGE — Inter font fix
═══════════════════════════════════════════ */
.login-heading h1,
.login-brand-name {
  font-family: "Bebas Neue", sans-serif;
}

.login-heading p,
.login-form label span,
.login-divider,
.login-footer-note,
.login-form input {
  font-family: "Inter", sans-serif;
}

/* ═══════════════════════════════════════════
   MOBILE TOUCH TARGET OPTIMIZATION
═══════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {

  /* Ensure all interactive elements have minimum 44x44px touch target */
  button,
  a[role="button"],
  input[type="button"],
  input[type="submit"],
  .button,
  .snav-link,
  .snav-pill {
    min-height: 44px;
    min-width: 44px;
    padding: 0.6rem 1rem;
  }

  /* Improved button feedback on touch */
  button:active,
  a[role="button"]:active,
  .button:active {
    transform: scale(0.98);
  }

  /* Remove hover effects that don't work on touch */
  .button:hover {
    transform: none;
  }

  /* Add active state feedback */
  .button:active {
    opacity: 0.9;
  }

  /* Logout button mobile-friendly */
  [data-logout-button] {
    min-height: 44px;
    padding: 0.65rem 1rem;
  }

  /* Form inputs touch-friendly */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  textarea,
  select {
    min-height: 44px;
    padding: 0.75rem;
    font-size: 16px;
    /* Prevents zoom on iOS */
  }

  /* Disable double-tap zoom on buttons */
  button,
  a {
    touch-action: manipulation;
  }
}

/* Extra mobile optimizations for smaller devices */
@media (max-width: 480px) {

  button,
  a[role="button"],
  .button,
  .snav-link {
    min-height: 48px;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  /* Ensure clickable areas have proper spacing */
  .snav-link {
    margin: 0.25rem 0;
  }

  /* Mobile-friendly input sizing */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  textarea {
    font-size: 16px;
    /* Prevents auto-zoom on mobile */
    min-height: 44px;
  }

  /* Better tap feedback */
  * {
    -webkit-tap-highlight-color: rgba(0, 85, 184, 0.1);
  }
}