:root {
  --background: #f3f1eb;
  --surface: #ffffff;
  --surface-alt: #f7f5f0;
  --foreground: #1b1d1f;
  --muted: #ece9e1;
  --muted-foreground: #5b5f63;
  --muted-2: #4e5256;
  --border: #dad6cc;
  --border-strong: #cfcac0;
  --primary: #1b1d1f;
  --primary-foreground: #f3f1eb;
  --accent: #b23e0b;
  --accent-hover: #a8380a;
  --destructive: #ef4444;
  --radius: 0.5rem;
  --container: 84rem;
  --gutter: clamp(1rem, 3.3vw, 3rem);
  --font-sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.narrow {
  max-width: 48rem;
}
.page-main {
  min-height: calc(100vh - 12rem);
  padding: 1.5rem 0 3rem;
}
.muted {
  color: var(--muted-foreground);
}
.small {
  font-size: 0.875rem;
}
.mono {
  font-family: var(--font-mono);
}
.strong {
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  font: inherit;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-secondary {
  background: var(--muted);
  border-color: var(--border);
}
.btn-outline {
  border-color: var(--border);
}
.btn-ghost {
  border: none;
}
.btn-sm {
  min-height: 2.25rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
}
.btn-lg {
  min-height: 3rem;
}
.btn-block {
  width: 100%;
}
.btn.active,
.btn-sm.active {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn.disabled,
.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  min-height: 2.75rem;
}

.hidden {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 45%);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgb(0 0 0 / 15%);
}
.card.nested {
  margin-top: 0.75rem;
  padding: 0.875rem;
}
.order-shipping {
  margin-top: 1rem;
}

.search-results-panel {
  padding: 1.5rem 0;
}
.search-results-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.search-results-list {
  display: grid;
  gap: 0.5rem;
}
.search-result {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem;
}
.search-result:hover {
  background: var(--muted);
}

.btn-block {
  display: flex;
  width: 100%;
}

.product-card-footer .btn {
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 480px) {
}

.product-card-link {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.product-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-brand {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted-foreground);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-card-meta {
  list-style: none;
  margin: auto 0 0;
  padding: 0.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.product-card-meta li + li::before {
  content: "·";
  margin-right: 0.75rem;
}
.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  background: rgba(245, 245, 245, 0.4);
  border-radius: 0 0 calc(var(--radius) + 2px) calc(var(--radius) + 2px);
}

.price-xl {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0.75rem 0;
}

.add-to-cart-form {
  margin: 0;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.card {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.card-header,
.card-body,
.card-footer {
  padding: 1rem 1.25rem;
}
.card-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}
.card-header h1,
.card-header h2 {
  margin: 0;
  font-size: 1.25rem;
}
.card-footer {
  border-top: 1px solid var(--border);
}
.detail-field {
  margin-top: 1rem;
}
.detail-field .label,
.label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.chip {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--muted);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}
.chip-primary {
  background: rgba(23, 23, 23, 0.08);
  color: var(--primary);
  font-weight: 600;
}
.xref-list {
  display: grid;
  gap: 0.75rem;
}
.xref-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.75rem;
}
.xref-brand {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
}
.add-to-cart-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: end;
  margin-top: 1rem;
}
.add-to-cart-detail input {
  min-height: 2.75rem;
  width: 5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 0.5rem;
}
.detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.cart-item,
.checkout-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
}
.cart-item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.qty-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty {
  min-width: 1.5rem;
  text-align: center;
}
.cart-summary,
.checkout-summary {
  position: sticky;
  top: 5.5rem;
  height: fit-content;
  padding: 1.25rem;
}
.alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.alert-warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

.stack {
  display: grid;
  gap: 0.75rem;
}
.stack.horizontal {
  grid-auto-flow: column;
  justify-content: start;
}
.stack label,
.checkout-forms label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.stack input,
.stack textarea,
.checkout-forms input {
  min-height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 0.75rem;
}
.stack textarea {
  min-height: auto;
  padding: 0.75rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.order-card {
  margin-bottom: 1rem;
  padding: 1rem;
}
.order-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.order-items {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted-foreground);
}
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.success-banner {
  text-align: center;
  margin-bottom: 1.5rem;
}

.policy-page {
  max-width: 48rem;
}
.policy-page h1 {
  margin-top: 0;
}
.prose section + section {
  margin-top: 1.5rem;
}
.policy-h2 {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}
.policy-h3 {
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.policy-list {
  padding-left: 1.25rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
}
.contact-info {
  display: grid;
  gap: 0.75rem;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.application-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.typeahead-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% - 2.5rem);
  left: 0;
  right: 0;
  max-height: 14rem;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.typeahead-option {
  display: block;
  width: 100%;
  padding: 0.5rem 0.65rem;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.typeahead-option:hover,
.typeahead-option:focus {
  background: var(--muted);
}
.typeahead-empty {
  padding: 0.65rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 2fr 1fr;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile / responsive fixes --- */

/* Cards that hold headings and forms directly (no .card-body) get padding. */
.card > h2:first-child,
.card > h3:first-child {
  margin-top: 0;
}
.card:not(:has(> .card-header)):not(:has(> .card-body)):not(:has(> .card-footer)) {
  padding: 1.25rem;
}
.card.cart-item,
.card.checkout-item,
.card.product-card {
  padding: 1rem;
}
.card.empty-state {
  padding: 3rem 1rem;
}

/* Stacked cards in a column need breathing room. */
.checkout-forms > .card + .card,
.contact-grid > .card + .card,
.contact-info > .card + .card,
.cart-items > .card + .card,
.narrow > .card + .card,
.card + .card.nested {
  margin-top: 1rem;
}

/* Cart badge sits next to the label instead of covering it. */
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Product detail: long part numbers must wrap, never widen the page. */
.detail-grid > * {
  min-width: 0;
}
.card-header {
  flex-wrap: wrap;
  align-items: flex-start;
}
.card-header > div {
  min-width: 0;
}
.card-header h1 {
  overflow-wrap: anywhere;
}
.chips {
  min-width: 0;
}
.chip {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.xref-parts {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

/* Mobile filter panel is a normal block, not sticky. */
.mobile-filter-panel .filters {
  position: static;
  max-height: none;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .xref-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .detail-meta {
    grid-template-columns: 1fr;
  }
  .card-header h1,
  .card-header h2 {
    font-size: 1.1rem;
  }
  .price-xl {
    font-size: 1.3rem;
  }
  .add-to-cart-detail {
    align-items: stretch;
  }
  .add-to-cart-detail .btn {
    flex: 1;
  }

  .stack.horizontal {
    grid-auto-flow: row;
  }
  .stack.horizontal .btn {
    width: 100%;
  }
  .order-head {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* Search overlay: lock page scroll while open; sticky results header on phones. */
body.search-open {
  overflow: hidden;
}
.search-results-head {
  position: sticky;
  top: 0;
  background: var(--background);
  padding: 0.5rem 0;
  z-index: 1;
}
.search-results-head h2 {
  margin: 0;
  font-size: 1.1rem;
}

/* Mobile filter panel: each list scrolls instead of stacking thousands of pixels. */
.mobile-filter-panel .filter-list {
  max-height: 12rem;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.25rem;
}

/* =========================================================
   Design system: header, footer, catalog (products page)
   ========================================================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.btn-icon {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.25rem;
  min-height: 2.75rem;
  min-width: 2.75rem;
  cursor: pointer;
  color: inherit;
}
.price-lg {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.1rem;
}
.price-muted {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #1b1d1f;
  color: #f3f1eb;
}
.header-row {
  height: 64px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  min-width: 0;
}
.header-back {
  color: #f3f1eb;
  margin-left: -0.75rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #f3f1eb;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark {
  color: var(--accent);
  flex-shrink: 0;
}
.logo-word {
  font-size: 1.375rem;
  font-weight: 800;
  font-stretch: 125%;
  letter-spacing: 0.05em;
}
.logo-divider {
  width: 1px;
  height: 18px;
  background: #45484c;
}
.logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b9b4a8;
}
.primary-nav {
  display: flex;
  gap: 2rem;
  height: 64px;
  font-size: 0.95rem;
}
.primary-nav a {
  display: flex;
  align-items: center;
  color: #d6d2c8;
  text-decoration: none;
}
.primary-nav a:hover {
  color: #f3f1eb;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 40px;
  padding: 0 0.75rem;
  border: 1px solid #45484c;
  border-radius: 8px;
  color: #b9b4a8;
  min-width: 0;
}
.header-search-input {
  width: 13rem;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #f3f1eb;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.header-search-input::placeholder {
  color: #9a968c;
}
.header-support {
  font-size: 0.875rem;
  color: #b9b4a8;
  text-decoration: none;
  white-space: nowrap;
}
.header-support:hover {
  color: #f3f1eb;
}
.cart-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  height: 44px;
  padding: 0 0.5rem 0 0.875rem;
  border: 1px solid #45484c;
  border-radius: 8px;
  color: #f3f1eb;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}
.cart-count {
  min-width: 28px;
  height: 28px;
  padding: 0 0.5rem;
  border-radius: 6px;
  background: #2c2f33;
  color: #f3f1eb;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-signin {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 1rem;
  border-radius: 8px;
  background: #f3f1eb;
  color: #1b1d1f;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}
.user-menu {
  position: relative;
}
.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 44px;
  padding: 0 0.5rem;
  border: 1px solid #45484c;
  border-radius: 8px;
  background: transparent;
  color: #f3f1eb;
  cursor: pointer;
  font: inherit;
}
.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #2c2f33;
  display: grid;
  place-items: center;
}
.user-email {
  display: none;
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.875rem;
}
.user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.375rem);
  min-width: 12rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--foreground);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(27, 29, 31, 0.16);
  padding: 0.25rem;
  z-index: 40;
}
.user-dropdown a {
  display: block;
  padding: 0.625rem 0.875rem;
  border-radius: 6px;
}
.user-dropdown a:hover {
  background: var(--muted);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #f3f1eb;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem var(--gutter) 1rem;
  background: #1b1d1f;
  border-top: 1px solid #3a3d41;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: #f3f1eb;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}
.mobile-menu-user {
  padding: 0.5rem 0 0.25rem;
  font-size: 0.8rem;
  color: #9a968c;
  font-family: var(--font-mono);
}
.mobile-menu-search {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.mobile-menu-search input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 1px solid #45484c;
  border-radius: 8px;
  padding: 0 0.75rem;
  background: #2c2f33;
  color: #f3f1eb;
  font-family: var(--font-mono);
}
.mobile-menu-search .btn {
  background: #f3f1eb;
  color: #1b1d1f;
}

/* ---------- Search overlay ---------- */
.search-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--overlay-top, 64px);
  bottom: 0;
  z-index: 25;
  background: var(--background);
  overflow: auto;
  border-top: 1px solid var(--border);
}
body.search-open {
  overflow: hidden;
}
.search-results-panel {
  padding: 1rem 0 2rem;
}
.search-results-head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
  background: var(--background);
}
.search-results-head h2 {
  margin: 0;
  font-size: 1.1rem;
}
.search-results-list {
  display: grid;
  gap: 0.5rem;
}
.search-result {
  display: block;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.875rem;
  background: var(--surface);
}
.search-result:hover {
  border-color: var(--foreground);
}
.search-results-foot {
  margin-top: 1rem;
}

/* ---------- Catalog hero ---------- */
.products-page {
  width: 100%;
}
.catalog-hero {
  position: relative;
  padding: 3rem var(--gutter) 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.hero-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
}
.eyebrow-sep {
  color: #a9a498;
}
.catalog-hero h1 {
  margin: 0;
  font-size: clamp(2.125rem, 4vw, 3.25rem);
  line-height: 1;
  font-weight: 800;
  font-stretch: 115%;
  letter-spacing: -0.015em;
}
.hero-lede {
  margin: 0 0 0.375rem;
  max-width: 380px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted-2);
}
.hero-search {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-search-box {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0 0.5rem 0 1.375rem;
  background: var(--surface);
  border: 1.5px solid var(--foreground);
  border-radius: 10px;
  box-shadow:
    0 1px 0 var(--foreground),
    0 10px 24px -16px rgba(27, 29, 31, 0.35);
}
.hero-search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 1.0625rem;
  color: var(--foreground);
}
.hero-search-box input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.kbd {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 4px;
  padding: 2px 7px;
}
.hero-search-btn {
  height: 48px;
  padding: 0 1.75rem;
  border: 0;
  border-radius: 7px;
  background: var(--foreground);
  color: var(--primary-foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-search-btn-icon {
  display: none;
}
.hero-try {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.hero-try a {
  font-size: 0.8125rem;
  color: var(--foreground);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-strong);
}
.hero-try a:hover {
  color: var(--accent-hover);
}
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 1.75rem;
}
.chip-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 38px;
  padding: 0 1rem;
  border-radius: 19px;
  font-size: 0.875rem;
  text-decoration: none;
  background: var(--surface);
  color: var(--foreground);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.chip-link:hover {
  border-color: var(--foreground);
}
.chip-link.active {
  background: var(--foreground);
  color: var(--primary-foreground);
  font-weight: 600;
  border-color: var(--foreground);
}
.pleat {
  display: block;
  width: 100%;
}
.catalog-hero .pleat {
  margin-top: -0.25rem;
}

/* ---------- Catalog layout ---------- */
.catalog-bar {
  display: none;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 2.5rem;
  padding: 2rem var(--gutter) 3.5rem;
  border-top: 1px solid var(--border);
}
.catalog-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;
  flex-wrap: wrap;
}
.showing {
  font-size: 0.95rem;
  color: var(--muted-2);
}
.showing strong {
  color: var(--foreground);
  font-weight: 600;
}
.page-size {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-2);
}
.page-size span {
  margin-right: 0.375rem;
}
.page-size-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 36px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--foreground);
}
.page-size-link:hover {
  background: var(--muted);
}
.page-size-link.active {
  background: var(--foreground);
  color: var(--primary-foreground);
}
.active-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
}
.tag:hover {
  border-color: var(--foreground);
}

/* ---------- Filters (sidebar / drawer) ---------- */
.filters {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: start;
  position: sticky;
  top: 5rem;
  max-height: calc(100vh - 6rem);
  overflow: auto;
}
.filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 44px;
  margin-bottom: 1rem;
}
.filters-head h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  flex: 1;
}
.link-clear {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.filters-close {
  display: none;
}
.filter-group {
  margin: 0;
  padding: 1.25rem 0 1.5rem;
  border: 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}
.filter-group legend {
  float: left;
  width: 100%;
  padding: 0 0 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--foreground);
}
.filter-help {
  font-size: 0.875rem;
  color: var(--muted-2);
}
.brand-search {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted-foreground);
}
.brand-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 0.875rem;
  color: var(--foreground);
}
.brand-list {
  display: flex;
  flex-direction: column;
}
.brand-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 36px;
  font-size: 0.95rem;
  color: var(--foreground);
}
.brand-box {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid var(--muted-foreground);
  border-radius: 3px;
  background: var(--surface);
  position: relative;
}
.brand-option.checked .brand-box {
  background: var(--foreground);
  border-color: var(--foreground);
}
.brand-option.checked .brand-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--primary-foreground);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.brand-option:hover .brand-box {
  border-color: var(--foreground);
}
.brand-option.filtered-out {
  display: none;
}
.ghost-btn {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border: 0;
  background: none;
  border-radius: 6px;
  padding: 0.5rem 0.5rem 0.5rem 0;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
}
.ghost-btn:hover {
  background: var(--muted);
  padding-left: 0.5rem;
}
.ghost-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.application-filter {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.filter-input,
.application-filter input[type="search"] {
  height: 44px;
  width: 100%;
  padding: 0 0.75rem;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--surface);
  font: inherit;
  font-size: 0.875rem;
}
.application-filter-actions {
  display: flex;
  gap: 0.5rem;
}
.typeahead-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 5;
  max-height: 14rem;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(27, 29, 31, 0.12);
}
.typeahead-panel [role="option"],
.typeahead-option {
  display: block;
  padding: 0.625rem 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
}
.typeahead-panel [role="option"]:hover,
.typeahead-option:hover,
.typeahead-option.active {
  background: var(--muted);
}
.price-filter {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.price-range {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}
.price-range label {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--muted-2);
  flex: 1;
  min-width: 0;
}
.price-range input {
  height: 40px;
  width: 100%;
  padding: 0 0.625rem;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 0.875rem;
}
.price-dash {
  height: 40px;
  display: flex;
  align-items: center;
  color: var(--muted-foreground);
}
.filters-foot {
  display: none;
}

/* ---------- Product table ---------- */
.product-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(27, 29, 31, 0.04);
}
.product-table-head,
.product-row {
  display: grid;
  grid-template-columns: 184px 150px minmax(0, 1fr) 84px 92px 200px;
  gap: 1rem;
  align-items: center;
  padding: 0 1.25rem;
}
.product-table-head {
  height: 44px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.cell-right {
  text-align: right;
}
.product-row {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  min-height: 68px;
  border-bottom: 1px solid var(--muted);
}
.product-row:hover {
  background: #fbfaf6;
}
.cell {
  min-width: 0;
}
.cell-part {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.part-link {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--foreground);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.part-link:hover {
  color: var(--accent-hover);
}
.copy-btn {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  color: var(--muted-foreground);
  flex-shrink: 0;
}
.copy-btn:hover {
  background: var(--muted);
}
.copy-btn.copied {
  color: var(--accent);
}
.cell-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-2);
}
.dot {
  display: inline-block;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 2px;
}
.dot-air {
  background: #cfc8b8;
}
.dot-fuel {
  background: #8a8375;
}
.dot-oil {
  background: #1b1d1f;
}
.dot-fws {
  background: #ffffff;
  box-shadow: inset 0 0 0 1.5px #5b5f63;
}
.dot-other {
  background: #b9b4a8;
}
.cell-desc {
  display: none;
}
.cell-app {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--foreground);
  overflow-wrap: anywhere;
}
.cell-app-empty {
  font-style: italic;
  color: #6b6f73;
}
.xref-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 28px;
  padding: 0 0.625rem;
  border-radius: 14px;
  background: var(--background);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--foreground);
  white-space: nowrap;
}
.xref-pill:hover {
  background: var(--muted);
}
.xref-word {
  display: none;
}
.cell-price {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}
.rupee {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  font-weight: 500;
}
.cell-price-empty {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-foreground);
}
.cell-order {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin: 0;
}
.qty-stepper {
  display: flex;
  align-items: center;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
}
.qty-btn {
  width: 30px;
  height: 38px;
  border: 0;
  background: var(--surface);
  font-size: 1rem;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0;
}
.qty-btn:hover {
  background: var(--muted);
  color: var(--foreground);
}
.qty-stepper input {
  width: 38px;
  height: 38px;
  border: 0;
  border-left: 1px solid var(--muted);
  border-right: 1px solid var(--muted);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-align: center;
  padding: 0;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.btn-accent {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0 0.875rem 0 0.75rem;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.btn-accent:hover {
  background: var(--accent-hover);
}
.product-table-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  min-height: 64px;
  padding: 0.75rem 1.25rem;
  background: var(--surface-alt);
}
.page-status {
  font-size: 0.875rem;
  color: var(--muted-2);
}
.page-status strong {
  color: var(--foreground);
}
.pagination {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
}
.page-num {
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--foreground);
}
.page-num:hover {
  background: var(--muted);
}
.page-num.active {
  background: var(--foreground);
  color: var(--primary-foreground);
}
.page-ellipsis {
  width: 28px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
}
.page-btn {
  height: 40px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 6px;
  border: 1px solid var(--foreground);
  background: var(--surface);
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--foreground);
}
.page-next {
  margin-left: 0.375rem;
}
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #1b1d1f;
  color: #d6d2c8;
  margin-top: 2rem;
}
.site-footer .pleat {
  background: var(--background);
}
.footer-inner {
  padding: 2.75rem var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-logo .logo-word {
  font-size: 1.25rem;
}
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #b9b4a8;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.footer-col a {
  color: #f3f1eb;
  text-decoration: none;
}
.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a968c;
}
.footer-links-mobile {
  display: none;
  flex-wrap: wrap;
  gap: 0.625rem 1.375rem;
  font-size: 0.875rem;
}
.footer-links-mobile a {
  color: #f3f1eb;
  text-decoration: none;
}
.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid #3a3d41;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: #9a968c;
}

/* ---------- Other pages on the new theme ---------- */
.page-main {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}
.page-main .container {
  width: 100%;
}
.card {
  background: var(--surface);
}

/* ---------- Responsive ---------- */
@media (min-width: 641px) {
  .user-email {
    display: inline;
  }
}
@media (max-width: 1180px) {
  .header-support {
    display: none;
  }
  .product-table-head,
  .product-row {
    grid-template-columns: 160px 140px minmax(0, 1fr) 72px 88px 190px;
  }
}
@media (max-width: 1024px) {
  .header-search {
    display: none;
  }
  .logo-divider,
  .logo-sub {
    display: none;
  }
  .primary-nav {
    gap: 1.25rem;
  }
  .product-table-head {
    display: none;
  }
  .product-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "category xrefs"
      "part part"
      "desc desc"
      "app app"
      "price order";
    gap: 0.5rem 0.75rem;
    padding: 1rem 1.25rem;
  }
  .cell-category {
    grid-area: category;
    font-size: 0.8125rem;
  }
  .cell-xrefs {
    grid-area: xrefs;
    justify-self: end;
  }
  .xref-word {
    display: inline;
  }
  .cell-part {
    grid-area: part;
  }
  .part-link {
    font-size: 1.375rem;
    white-space: normal;
  }
  .cell-desc {
    display: block;
    grid-area: desc;
    font-size: 0.9375rem;
    font-weight: 600;
  }
  .cell-app {
    grid-area: app;
    color: var(--muted-2);
  }
  .cell-price {
    grid-area: price;
    text-align: left;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--muted);
  }
  .cell-order {
    grid-area: order;
    margin-top: 0.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--muted);
  }
  .cell-price,
  .cell-order {
    align-self: end;
  }
  .qty-stepper,
  .btn-accent {
    height: 44px;
    border-radius: 8px;
  }
  .qty-btn {
    width: 36px;
    height: 42px;
    font-size: 1.125rem;
  }
  .qty-stepper input {
    height: 42px;
    width: 36px;
    font-size: 1rem;
  }
  .btn-accent {
    font-size: 0.95rem;
  }
}
@media (max-width: 900px) {
  .header-row {
    height: 56px;
    padding: 0 0.375rem 0 1rem;
    gap: 0.5rem;
  }
  .header-left {
    gap: 0.75rem;
  }
  .primary-nav,
  .header-signin,
  .user-menu {
    display: none;
  }
  .logo-word {
    font-size: 1.1875rem;
  }
  .cart-link {
    border: 0;
    padding: 0;
    width: 44px;
    justify-content: center;
    gap: 0;
    position: relative;
  }
  .cart-label {
    display: none;
  }
  .cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    font-size: 0.6875rem;
    background: var(--accent);
  }
  .menu-toggle {
    display: flex;
  }
  .header-actions {
    gap: 0;
  }
  .catalog-hero {
    padding: 1.5rem 1rem 0;
    gap: 1rem;
  }
  .hero-top {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .hero-lede {
    display: none;
  }
  .eyebrow {
    font-size: 0.6875rem;
    gap: 0.5rem;
  }
  .hero-search-box {
    height: 54px;
    padding: 0 5px 0 0.875rem;
    gap: 0.625rem;
    box-shadow: 0 1px 0 var(--foreground);
  }
  .hero-search-box > svg {
    width: 18px;
    height: 18px;
  }
  .hero-search-box input {
    font-size: 1rem;
  }
  .kbd,
  .hero-search-btn-text {
    display: none;
  }
  .hero-search-btn {
    width: 44px;
    height: 42px;
    padding: 0;
  }
  .hero-search-btn-icon {
    display: flex;
  }
  .hero-try {
    display: none;
  }
  .category-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-right: -1rem;
    padding-right: 1rem;
    padding-bottom: 1.25rem;
  }
  .category-chips::-webkit-scrollbar {
    display: none;
  }
  .catalog-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .refine-toggle {
    flex: 1;
    display: flex;
    gap: 0.5rem;
    height: 44px;
    border: 1px solid var(--foreground);
    border-radius: 8px;
    background: var(--surface);
    font-weight: 600;
    font-size: 0.95rem;
  }
  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1rem 1rem 2.5rem;
    border-top: 0;
  }
  .filters {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 60;
    max-height: none;
    background: var(--background);
    padding: 0.75rem 1rem 1rem;
    overflow: auto;
  }
  body.filters-open .filters {
    display: flex;
  }
  body.filters-open {
    overflow: hidden;
  }
  .filters-close {
    display: block;
  }
  .filters-foot {
    display: block;
    position: sticky;
    bottom: 0;
    padding: 0.75rem 0 0.25rem;
    background: var(--background);
  }
  .catalog-toolbar {
    min-height: 0;
  }
  .page-size {
    display: none;
  }
  .product-table {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: visible;
  }
  .product-row {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
  }
  .product-row:hover {
    background: var(--surface);
  }
  .product-table-foot {
    background: transparent;
    padding: 0.25rem 0 0;
    flex-direction: column;
    align-items: stretch;
  }
  .page-status {
    text-align: center;
  }
  .pagination {
    justify-content: center;
    flex-wrap: wrap;
  }
  .page-next {
    width: 100%;
    height: 48px;
    justify-content: center;
    margin: 0.25rem 0 0;
    border-radius: 8px;
  }
  .footer-grid {
    display: none;
  }
  .footer-links-mobile {
    display: flex;
  }
  .footer-inner {
    padding: 1.75rem 1rem;
    gap: 1rem;
  }
  .footer-bottom {
    border-top: 0;
    padding-top: 0;
    flex-direction: column;
    gap: 0.5rem;
  }
  .page-main {
    width: min(100% - 2rem, var(--container));
  }
}

/* Search page results and product detail badges (shared components). */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
}
.product-card-link {
  display: block;
  padding: 1rem;
}
.product-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}
.product-card:hover {
  border-color: var(--foreground);
}
.badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.125rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.7rem;
  line-height: 1.4;
  white-space: nowrap;
  color: var(--muted-foreground);
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .product-row {
    column-gap: 0;
  }
  .cell-category,
  .cell-part,
  .cell-desc,
  .cell-app {
    padding-right: 0.75rem;
  }
  .cell-xrefs {
    margin-right: 0;
  }
  .cell-order {
    padding-left: 0.75rem;
  }
}
