/* CSP-compliant builder dropdown column */
.builder-dropdown-col {
  max-height: 420px;
  overflow-y: auto;
  align-self: flex-start;
  min-width: 10rem;
}

/* Dynamic width for builder dropdown columns */
.builder-dropdown-col-dynamic {
  width: var(--builder-col-width, 12rem);
  min-width: var(--builder-col-width, 12rem);
  max-width: var(--builder-col-width, 24rem);
}
/* Strike-through price for sale listings */
.rt-price-strike {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 0.8rem;
}
/* Small price text for catalog cards */
.rt-catalog-card-price-sm {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 600;
}
/* About page team image height and position */
.about-team-img {
  height: 420px;
  object-position: center 78%;
}
/* Margin bottom utility for headings */
.rt-mb-4 {
  margin-bottom: 1rem;
}
/* Product card accent background */
.rt-product-accent-bg {
  background: var(--rt-accent);
}
/* Builder card shadow and border radius */
.builder-card-shadow {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 12px;
}

/* Filter bar background and padding */
.filter-bar-bg {
  background: #f3f4f6;
  padding: 12px 24px;
  border-radius: 8px;
}
/* Disabled See More... span */
.see-more-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/* Modern Experience Button CSP-compliant styles */
.modern-experience-btn {
  background: linear-gradient(to right, #6d28d9, #4f46e5);
  color: #fff;
  border: 0;
  transition: all 0.2s;
}
.modern-experience-btn:hover, .modern-experience-btn:focus {
  background: linear-gradient(to right, #4f46e5, #6d28d9);
  color: #fff;
  border: 0;
  transform: scale(1.05);
}

/* Large catalog title for Live Inventory */
.rt-catalog-title-lg {
  font-size: 1.5rem;
}

/* Remove underline from links where needed */
.no-underline {
  text-decoration: none !important;
}
:root{
  --rt-primary: rgb(123, 48, 192);
  --rt-primary-hover: rgb(157, 107, 210);
  --rt-accent: rgb(230, 210, 245);
  --rt-border-strong: #000;
  --rt-text-light: #fff;
  --rt-text-dark: #000;
}

.rt-site-header {
  background: linear-gradient(180deg, #fff 0%, #f5edf9 100%);
  z-index: 50;
}

body,
.rt-page-body {
  color: var(--rt-text-dark);
}

.rt-brand-strip {
  background: var(--rt-primary);
  color: var(--rt-text-light);
}

.rt-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 0.9rem 0;
}

.rt-brand-main {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1 1 24rem;
  min-width: 0;
}

.rt-brand-link {
  display: flex;
  align-items: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.rt-brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.15rem;
}

.rt-brand-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 1rem;
}

.rt-brand-name {
  font-size: 2.35rem;
  line-height: 1.05;
  font-weight: 700;
}

.rt-brand-phone {
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 700;
}

.rt-brand-subtitle {
  font-size: 0.95rem;
  line-height: 1.3;
  max-width: 42rem;
}

.rt-header-tools {
  display: flex;
  flex: 1 1 28rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

.rt-header-search {
  flex: 1 1 20rem;
  max-width: 34rem;
}

.rt-search-shell {
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  border: 2px solid var(--rt-border-strong);
  border-radius: 0.65rem;
  background: #fff;
}

.rt-search-select,
.rt-search-input,
.rt-search-button {
  border: 0;
  background: transparent;
  color: var(--rt-text-dark);
}

.rt-search-select {
  padding: 0 0.75rem;
  min-width: 7rem;
  background: rgba(255, 255, 255, 0.92);
}

.rt-search-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.75rem 0.6rem;
  outline: none;
}

.rt-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.85rem;
}

.rt-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

  /* Modern BG slide toggle */
  .rt-modern-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    user-select: none;
    flex: 0 0 auto;
  }

  .rt-modern-toggle-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rt-text-dark);
    opacity: 0.7;
    white-space: nowrap;
  }

  .rt-modern-toggle-track {
    position: relative;
    display: inline-block;
    width: 2.4rem;
    height: 1.3rem;
    border-radius: 9999px;
    background: #cbd5e1;
    border: 2px solid rgba(0,0,0,0.12);
    transition: background 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
  }

  .rt-modern-toggle-thumb {
    position: absolute;
    top: 0.1rem;
    left: 0.1rem;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, background 0.2s ease;
  }

  #modernBgToggle:checked ~ .rt-modern-toggle-track,
  .rt-modern-toggle:has(#modernBgToggle:checked) .rt-modern-toggle-track {
    background: #0ea5e9;
    border-color: #0284c7;
  }

  #modernBgToggle:checked ~ .rt-modern-toggle-track .rt-modern-toggle-thumb,
  .rt-modern-toggle:has(#modernBgToggle:checked) .rt-modern-toggle-thumb {
    transform: translateX(1.1rem);
  }

  .rt-modern-toggle:focus-within .rt-modern-toggle-track {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
  }

.rt-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--rt-border-strong);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--rt-text-dark);
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.rt-header-icon:hover {
  color: #c2410c;
  border-color: #c2410c;
}

.rt-cart-link {
  gap: 0.25rem;
  padding-right: 0.45rem;
  text-decoration: none;
}

.rt-cart-count {
  padding-right: 0.45rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.rt-nav-strip {
  background: var(--rt-primary);
  border-top: none;
  border-bottom: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

.rt-nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  align-items: stretch;
}

.rt-nav-button-wrap {
  display: flex;
  min-width: 0;
  position: relative;
}

/* Force the Custom Builders dropdown to its own bottom row, centered.
   - order: 99 puts it after all other buttons
   - flex: 0 0 100% makes it take the full row so it wraps to a new line
   - justify-content: center centers its (naturally-sized) child
   - inner elements stay width: auto so the button shrinks to its label */
.rt-nav-button-wrap-builder {
  order: 99;
  flex: 0 0 100%;
  width: 100%;
  justify-content: center;
}

/* The component renders <div class="w-full">...</div> wrappers around the
   dropdown and trigger, which would stretch the button across the whole row
   and force its label to the left. Override w-full inside the builder wrap. */
.rt-nav-button-wrap-builder .w-full,
.rt-nav-button-wrap-builder > .relative,
.rt-nav-button-wrap-builder > .relative > [name="dTrig"],
.rt-nav-button-wrap-builder > .relative > [name="dTrig"] > div {
  width: auto;
}

.rt-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border: none;
  border-radius: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.2s ease, background-color 0.15s ease;
}

.rt-nav-button:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}

.rt-nav-button.is-active,
.rt-nav-button[aria-current="page"] {
  color: #fff;
  border-bottom-color: #fff;
}

.rt-nav-button-trigger {
  box-shadow: none !important;
}

.rt-refurb-section {
  padding: 1.5rem 0 2rem;
}

.rt-refurb-intro {
  max-width: 52rem;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  border: 2px solid var(--rt-border-strong);
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #fff 0%, #f5edf9 100%);
  position: relative;
  z-index: 0;
}

.rt-refurb-kicker {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.68);
}

.rt-refurb-title {
  margin: 0.45rem 0 0;
  font-size: 1.9rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--rt-text-dark);
}

.rt-refurb-copy {
  margin: 0.75rem auto 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.8);
}

.rt-refurb-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
  align-items: stretch;
  clear: both;
  position: relative;
  z-index: 1;
}

.rt-refurb-card {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--rt-border-strong);
  border-radius: 0.75rem;
  background: #fff;
}

.rt-refurb-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.rt-builder-dropdown-shell {
  width: calc(100vw - 2rem);
  max-width: 54rem;
}

.rt-builder-dropdown-panel {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.rt-builder-dropdown {
  border: 2px solid var(--rt-border-strong);
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff 0%, #f7f1fb 100%);
  padding: 0.9rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.rt-builder-section-heading {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.64);
}

.rt-builder-dropdown-header {
  margin-bottom: 0.65rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  text-align: center;
}

.rt-builder-dropdown-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.58);
}

.rt-builder-dropdown-title {
  margin-top: 0.35rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--rt-text-dark);
}

.rt-builder-fanout-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.8rem;
  max-height: 70vh;
  max-height: 42rem;
}

.rt-builder-fanout-column {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1 1 12rem;
  min-width: 0;
  min-height: 0;
}

.rt-builder-fanout-vendor-column.is-collapsed {
  display: none !important;
}

.rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-dell,
.rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-hpe {
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-dell .rt-builder-fanout-filter-column,
.rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-hpe .rt-builder-fanout-filter-column {
  flex: 0 0 10.5rem;
}

.rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-dell [data-builder-vendor-column="dell"],
.rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-hpe [data-builder-vendor-column="hpe"] {
  flex: 0 1 28rem;
}

.rt-builder-fanout-column-head {
  display: grid;
  gap: 0.4rem;
}

.rt-builder-fanout-vendor-name {
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
}

.rt-builder-fanout-stack {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
  padding-right: 0.2rem;
}

.rt-builder-fanout-stack-left {
  direction: rtl;
}

.rt-builder-fanout-stack-left > * {
  direction: ltr;
}

.rt-builder-fanout-filter-column {
  flex: 0 0 10.5rem;
  min-width: 10rem;
  max-width: 11rem;
  align-items: stretch;
}

.rt-builder-fanout-card,
.rt-builder-fanout-filter-card {
  display: grid;
  gap: 0.45rem;
  padding: 0.65rem;
  border: 2px solid var(--rt-border-strong);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  text-align: center;
}

.rt-builder-fanout-filter-column .rt-builder-fanout-filter-card {
  width: 100%;
  max-width: 10.5rem;
  margin-left: auto;
  margin-right: auto;
}

.rt-builder-hidden {
  display: none !important;
}

.rt-builder-fanout-card-title {
  color: var(--rt-text-dark);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 700;
  text-align: center;
}

.rt-builder-fanout-card-title:hover {
  color: var(--rt-primary);
}

.rt-builder-fanout-card-meta {
  font-size: 0.74rem;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.62);
  text-align: center;
}

.rt-builder-fanout-link-list {
  display: grid;
  gap: 0.3rem;
}

.rt-builder-fanout-link {
  display: block;
  padding: 0.42rem 0.55rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(87, 50, 125, 0.12);
  background: #f8f3fc;
  color: var(--rt-text-dark);
  text-decoration: none;
  font-size: 0.79rem;
  line-height: 1.25;
  text-align: center;
  transition: background-color 0.14s ease, border-color 0.14s ease, color 0.14s ease;
}

.rt-builder-fanout-link:hover {
  border-color: rgba(87, 50, 125, 0.34);
  background: rgba(230, 210, 245, 0.72);
}

.rt-builder-fanout-more {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rt-primary);
  text-decoration: none;
}

.rt-builder-fanout-more:hover {
  color: var(--rt-primary-hover);
}

.rt-builder-template-link {
  display: grid;
  gap: 0.2rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 0.8rem;
  background: #f8f3fc;
  color: var(--rt-text-dark);
  text-decoration: none;
  text-align: center;
}

.rt-builder-template-link-compact {
  padding: 0.48rem 0.6rem;
}

.rt-builder-template-link:hover {
  border-color: var(--rt-border-strong);
  background: rgba(230, 210, 245, 0.55);
}

.rt-builder-fanout-empty {
  padding: 0.75rem;
  border: 1px dashed rgba(0, 0, 0, 0.24);
  border-radius: 0.8rem;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.68);
  text-align: center;
}

.rt-builder-template-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.rt-builder-brand-link {
  display: block;
  padding: 0.48rem 0.65rem;
  border: 2px solid var(--rt-border-strong);
  border-radius: 0.7rem;
  background: var(--rt-primary);
  color: var(--rt-text-light);
  text-decoration: none;
  font-size: 0.9rem;
}

.rt-builder-brand-link-full {
  text-align: center;
}

.rt-builder-brand-link:hover {
  background: var(--rt-primary-hover);
  color: var(--rt-text-light);
}

.rt-builder-filter-button-list {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.35rem;
  justify-items: stretch;
  align-items: start;
}

.rt-builder-filter-button-list-2col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
}

.rt-builder-filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2rem;
  padding: 0.42rem 0.5rem;
  border: 2px solid rgba(0, 0, 0, 0.18);
  border-radius: 0.7rem;
  background: #fff;
  color: var(--rt-text-dark);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.rt-builder-filter-button:hover {
  border-color: var(--rt-border-strong);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.rt-builder-filter-button.is-active {
  border-color: var(--rt-border-strong);
  background: rgba(230, 210, 245, 0.75);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.rt-builder-filter-button-gen {
  font-size: 0.72rem;
  line-height: 1.2;
}

.rt-builder-fanout-filter-note {
  align-content: start;
}

.rt-builder-fanout-filter-note p {
  margin: 0;
  font-size: 0.79rem;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.72);
}

.rt-page-body {
  flex: 1 1 auto;
}

.rt-page-shell {
  padding: 1rem 0 1.5rem;
}

.rt-results-shell {
  padding: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.12);
  background: linear-gradient(180deg, #fff 0%, #f5edf9 100%);
}

.rt-results-meta {
  margin-bottom: 0.75rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 0.65rem;
  background: rgba(230, 210, 245, 0.3);
}

.rt-results-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.rt-filter-mobile-bar {
  margin-bottom: 0.75rem;
}

.rt-filter-mobile-button {
  border: 2px solid var(--rt-border-strong);
  border-radius: 0.75rem;
  background: var(--rt-accent);
}

.rt-filter-panel {
  flex: 0 0 18rem;
  padding: 1rem;
  border: 2px solid var(--rt-border-strong);
  border-radius: 1rem;
  background: var(--rt-accent);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.rt-filter-panel-header {
  margin-bottom: 0.9rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.rt-filter-reset {
  border-color: var(--rt-border-strong) !important;
  background: #fff !important;
  color: var(--rt-text-dark) !important;
}

.rt-filter-reset:hover {
  background: var(--rt-accent) !important;
}

.rt-filter-group {
  margin-bottom: 0.85rem;
}

.rt-filter-group-title {
  margin-bottom: 0.5rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  cursor: pointer;
}

.rt-filter-list {
  display: grid;
  gap: 0.4rem;
}

.rt-filter-option {
  padding: 0.45rem 0.7rem;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.rt-filter-option:hover {
  background: rgba(230, 210, 245, 0.38);
  border-color: var(--rt-border-strong);
}

.rt-filter-label,
.rt-filter-inline-label {
  color: inherit;
}

.rt-filter-number,
.rt-filter-text-input {
  border-color: var(--rt-border-strong) !important;
  background: #fff;
}

.rt-product-gallery {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.5rem;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 1rem;
  background: #f5edf9;
  gap: 0.25rem;
}

.rt-product-card {
  border: 2px solid var(--rt-border-strong);
  border-radius: 1rem;
  background: var(--rt-accent);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.rt-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
  border-color: var(--rt-primary-hover) !important;
}

.rt-product-action {
  background: #fff !important;
  color: var(--rt-text-dark) !important;
}

.rt-product-action:hover {
  background: var(--rt-accent) !important;
  color: var(--rt-text-dark) !important;
}

.rt-catalog-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.75rem;
  border: 2px solid var(--rt-border-strong);
  border-radius: 1rem;
  background: linear-gradient(135deg, #fff 0%, #f5edf9 100%);
}

.rt-catalog-hero-copy {
  flex: 1 1 22rem;
  min-width: 0;
}

.rt-catalog-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rt-primary);
  margin-bottom: 0.25rem;
}

.rt-catalog-title {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--rt-text-dark);
  margin-bottom: 0.5rem;
}

.rt-catalog-description {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #374151;
  max-width: 44rem;
}

.rt-catalog-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.rt-catalog-highlight-pill {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(123, 48, 192, 0.3);
  border-radius: 2rem;
  background: rgba(230, 210, 245, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
  color: #5b21b6;
}

.rt-catalog-stats-card {
  flex: 0 0 auto;
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 2px solid var(--rt-border-strong);
  border-radius: 0.85rem;
  background: var(--rt-accent);
}

.rt-catalog-stat {
  text-align: center;
}

.rt-catalog-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.rt-catalog-stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--rt-text-dark);
}

.rt-catalog-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.rt-catalog-brand-chip {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  border: 2px solid var(--rt-border-strong);
  border-radius: 0.5rem;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rt-text-dark);
}

.rt-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1.25rem;
}

.rt-catalog-card {
  border: 2px solid var(--rt-border-strong);
  border-radius: 1rem;
  background: var(--rt-accent);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  overflow: hidden;
}

.rt-catalog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
  border-color: var(--rt-primary-hover) !important;
}

.rt-catalog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.rt-catalog-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.rt-catalog-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.rt-catalog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.85rem 1rem;
  gap: 0.25rem;
}

.rt-catalog-card-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
}

.rt-catalog-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--rt-text-dark);
  margin: 0;
}

.rt-catalog-card-subtitle {
  font-size: 0.82rem;
  line-height: 1.4;
  color: #4b5563;
  margin: 0;
}

.rt-catalog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.rt-catalog-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #15803d;
}

.rt-catalog-card-cta {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  border: 2px solid var(--rt-border-strong);
  border-radius: 0.5rem;
  background: var(--rt-primary);
  color: var(--rt-text-light);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background-color 0.15s ease;
}

.rt-catalog-card:hover .rt-catalog-card-cta {
  background: var(--rt-primary-hover);
}

.rt-home-carousel-shell {
  padding: 0.25rem 0.5rem 0.5rem;
}

.rt-home-carousel {
  margin: 0;
}

.rt-home-carousel-slide {
  padding: 0.2rem 0.45rem 0.8rem;
}

.rt-home-carousel-card {
  height: auto;
}

.rt-home-carousel-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  height: auto;
}

.rt-home-carousel-media-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.rt-home-carousel-title-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.rt-home-carousel-title-link:hover .rt-home-carousel-title {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.rt-home-carousel-media {
  aspect-ratio: 16 / 10;
}

.rt-home-carousel-image {
  padding: 0.85rem;
}

.rt-home-carousel-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.45rem;
  padding-top: 0.9rem;
  padding-bottom: 1rem;
}

.rt-home-carousel-body .rt-catalog-card-kicker {
  font-size: 0.82rem;
  line-height: 1.3;
}

.rt-home-carousel-body .rt-catalog-card-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  gap: 0.35rem;
  align-items: flex-end;
}

.rt-home-carousel-title {
  font-size: 1.05rem;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.rt-home-carousel-build-ref {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: #6b7280;
  font-weight: 600;
}

.rt-home-carousel-summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rt-home-carousel-specs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.28rem;
}

.rt-home-carousel-spec-line {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: #374151;
  padding-left: 1.05rem;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
}

.rt-home-carousel-spec-line::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--rt-primary);
  position: absolute;
  left: 0.1rem;
  top: 0.5rem;
}

.rt-home-carousel-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
}

.rt-home-carousel-price-current {
  color: #15803d;
  font-size: 1.32rem;
  font-weight: 700;
}

.rt-home-carousel-discount {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.52rem;
  border-radius: 999px;
  background: rgba(194, 65, 12, 0.12);
  color: #9a3412;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.rt-home-carousel-call {
  color: #4b5563;
  font-size: 1.1rem;
}

.rt-home-carousel-body .rt-catalog-card-cta {
  font-size: 1rem;
  padding: 0.72rem 1.15rem;
}

.rt-home-carousel-cta {
  font-size: 1rem !important;
  padding: 0.72rem 1.15rem !important;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  margin-left: auto;
  align-self: flex-end;
  max-width: 100%;
  white-space: nowrap;
}

@media (min-width: 960px) {
  .rt-home-carousel-title {
    font-size: 1.2rem;
  }

  .rt-home-carousel-spec-line {
    font-size: 0.95rem;
  }

  .rt-home-carousel-body .rt-catalog-card-cta,
  .rt-home-carousel-cta {
    font-size: 1.1rem !important;
  }
}

.rt-home-carousel-shell .slick-dots {
  bottom: -0.45rem;
}

.rt-home-carousel-shell .slick-dots li button:before {
  color: var(--rt-primary);
  opacity: 0.35;
  font-size: 10px;
}

.rt-home-carousel-shell .slick-dots li.slick-active button:before {
  color: var(--rt-primary-hover);
  opacity: 1;
}

@media (min-width: 960px) {
  .rt-home-carousel-link {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    height: auto;
    align-items: stretch;
  }

  .rt-home-carousel-media {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 0;
    aspect-ratio: unset;
    align-self: stretch;
  }

  .rt-home-carousel-body {
    gap: 0.52rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    justify-content: flex-start;
  }

  .rt-home-carousel-specs {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0.36rem;
  }

  .rt-home-carousel-body .rt-catalog-card-footer {
    margin-top: auto;
  }


}

.rt-catalog-empty {
  text-align: center;
  padding: 3rem 1rem;
}

.rt-catalog-empty-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rt-text-dark);
  margin-bottom: 0.5rem;
}

.rt-catalog-empty-copy {
  font-size: 0.95rem;
  color: #6b7280;
}

.rt-site-footer {
  border-top: 2px solid rgba(0, 0, 0, 0.12);
  background: linear-gradient(180deg, #fff 0%, #f4ecfa 100%);
}

.rt-side-menu-modal {
  border-left: 2px solid var(--rt-border-strong);
  background: #f5edf9;
}

.rt-side-menu-shell {
  border-right: 0;
  background: #f5edf9;
}

.rt-side-menu-brand {
  padding: 0.75rem 0 1rem;
}

.rt-side-menu-heading,
.rt-side-menu-close {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--rt-border-strong);
}

.rt-side-menu {
  gap: 0.85rem 0;
}

.rt-side-menu-shortcut {
  display: block;
  padding: 0.75rem 0.5rem;
  border-color: var(--rt-border-strong) !important;
  border-radius: 0.8rem;
  background: rgba(230, 210, 245, 0.45);
  color: var(--rt-text-dark);
}

.rt-side-menu-section-title {
  margin-top: 0.35rem;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--rt-border-strong);
  border-radius: 0.8rem;
  background: var(--rt-accent);
  font-weight: 700;
  cursor: pointer;
}

.rt-side-menu-panel {
  overflow: hidden;
  border: 2px solid var(--rt-border-strong);
  background: #f5edf9;
}

.rt-side-menu-tier + .rt-side-menu-tier {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.rt-side-menu-row {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(230, 210, 245, 0.24);
  cursor: pointer;
}

.rt-side-menu-link {
  color: var(--rt-text-dark);
  text-decoration: none;
}

.rt-side-menu-leaf {
  margin: 0.25rem 0.5rem 0.4rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 0.65rem;
}

.rt-side-menu-link:hover .rt-side-menu-leaf {
  border-color: var(--rt-border-strong);
  background: rgba(230, 210, 245, 0.32);
}

@media (max-width: 960px) {
  .rt-brand-name {
    font-size: 1.95rem;
  }

  .rt-brand-phone {
    font-size: 1.2rem;
  }

  .rt-brand-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .rt-header-tools {
    justify-content: flex-start;
  }

  .rt-header-search {
    flex-basis: 100%;
    max-width: none;
  }

  .rt-nav-row {
    gap: 0;
  }

  .rt-refurb-title {
    font-size: 1.6rem;
  }

  .rt-filter-panel {
    flex-basis: 100%;
    position: relative;
    top: auto;
  }

  .rt-builder-dropdown-shell {
    width: calc(100vw - 2rem);
    max-width: 48rem;
  }

  .rt-builder-fanout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rt-builder-fanout-filter-column {
    flex: 1 1 100%;
    max-width: 100%;
    order: -1;
  }

  .rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-dell,
  .rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-hpe {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 38rem;
  }

  .rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-dell .rt-builder-fanout-filter-column,
  .rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-hpe .rt-builder-fanout-filter-column {
    flex: 0 0 10.5rem;
    max-width: 10.5rem;
    order: 0;
  }

  .rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-dell [data-builder-vendor-column="dell"],
  .rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-hpe [data-builder-vendor-column="hpe"] {
    flex: 1 1 16rem;
    min-width: 14rem;
    max-width: 24rem;
  }
}

@media (max-width: 640px) {
  .rt-brand-name {
    font-size: 1.55rem;
  }

  .rt-brand-phone {
    font-size: 1.05rem;
  }

  .rt-brand-link {
    align-items: flex-start;
  }

  .rt-brand-subtitle {
    font-size: 0.84rem;
  }

  .rt-header-actions {
    width: 100%;
  }

  .rt-nav-row {
    flex-direction: column;
    align-items: stretch;
  }

  .rt-nav-button {
    width: 100%;
    justify-content: flex-start;
    padding: 0.55rem 1rem;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .rt-nav-button:hover {
    border-bottom: none;
    border-left-color: rgba(255,255,255,0.85);
  }

  .rt-nav-button.is-active,
  .rt-nav-button[aria-current="page"] {
    border-bottom: none;
    border-left-color: #fff;
  }

  .rt-nav-button-wrap-builder {
    order: 99;
    width: 100%;
    justify-content: center;
  }

  .rt-nav-button-wrap-builder .rt-nav-button {
    width: auto;
    min-width: 13rem;
    justify-content: center;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .rt-nav-button-wrap-builder .rt-nav-button:hover,
  .rt-nav-button-wrap-builder .rt-nav-button.is-active,
  .rt-nav-button-wrap-builder .rt-nav-button[aria-current="page"] {
    border-left-color: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.85);
  }

  .rt-refurb-section {
    padding-bottom: 1.5rem;
  }

  .rt-refurb-intro {
    padding: 1rem;
  }

  .rt-refurb-title {
    font-size: 1.35rem;
  }

  .rt-refurb-image {
    height: auto;
  }

  .rt-page-shell {
    padding-top: 0.75rem;
  }

  .rt-results-shell {
    padding: 0.75rem;
    border-radius: 0;
  }

  .rt-product-gallery {
    padding: 0.35rem;
  }

  .rt-side-menu-shortcut {
    font-size: 0.95rem;
  }

  .rt-builder-dropdown-panel {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    z-index: 100;
  }

  .rt-builder-dropdown-shell {
    width: 100%;
    max-width: none;
  }

  .rt-builder-dropdown {
    padding: 0.75rem;
    max-height: 70vh;
    border-radius: 1rem 1rem 0 0;
    box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.18);
  }

  .rt-builder-fanout-grid {
    flex-direction: column;
    gap: 0.6rem;
  }

  .rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-dell,
  .rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-hpe {
    align-items: center;
    width: 100%;
  }

  .rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-dell .rt-builder-fanout-filter-column,
  .rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-hpe .rt-builder-fanout-filter-column,
  .rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-dell [data-builder-vendor-column="dell"],
  .rt-builder-fanout-grid.rt-builder-fanout-grid-vendor-hpe [data-builder-vendor-column="hpe"] {
    flex: 0 1 auto;
    width: 100%;
    max-width: 24rem;
  }

  .rt-builder-fanout-column-head {
    gap: 0.35rem;
  }

  .rt-builder-fanout-vendor-name {
    font-size: 0.95rem;
  }

  .rt-builder-fanout-card {
    padding: 0.55rem;
    border-radius: 0.65rem;
    gap: 0.3rem;
  }

  .rt-builder-fanout-card-title {
    font-size: 0.88rem;
  }

  .rt-builder-fanout-card-meta {
    font-size: 0.7rem;
  }

  .rt-builder-fanout-link {
    padding: 0.3rem 0.45rem;
    font-size: 0.75rem;
  }

  .rt-builder-fanout-filter-card {
    padding: 0.5rem;
  }

  .rt-builder-filter-button {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
  }

  .rt-builder-template-link {
    padding: 0.45rem 0.55rem;
  }

  .rt-builder-template-name {
    font-size: 0.82rem;
  }

  .rt-builder-brand-link {
    font-size: 0.82rem;
    padding: 0.4rem 0.55rem;
  }

  .rt-builder-section-heading {
    font-size: 0.78rem;
  }

  .rt-builder-dropdown-header {
    margin-bottom: 0.45rem;
    padding-bottom: 0.4rem;
  }

  .rt-builder-dropdown-kicker {
    font-size: 0.7rem;
  }

  .rt-builder-dropdown-title {
    font-size: 0.9rem;
    margin-top: 0.2rem;
  }
}

/* ...existing code... */

button.border,
button.border-2,
input[type="submit"],
a.border-2.rounded-sm.font-bold,
a.border-2.rounded-md,
a.border-2.rounded-xl,
.inline-flex.items-center.px-4.py-2.bg-gray-800.border,
.inline-flex.items-center.px-4.py-2.bg-white.border,
.inline-flex.items-center.justify-center.px-4.py-2.bg-red-600.border {
  background-color: var(--rt-primary) !important;
  border-color: var(--rt-border-strong) !important;
  color: var(--rt-text-light) !important;
}

.bg-purple,
.bg-purple-500,
.bg-purple-600,
.bg-purple-700,
.bg-purpler,
.bg-purplel {
  color: var(--rt-text-light) !important;
}

button.border:hover,
button.border-2:hover,
input[type="submit"]:hover,
a.border-2.rounded-sm.font-bold:hover,
a.border-2.rounded-md:hover,
a.border-2.rounded-xl:hover,
.inline-flex.items-center.px-4.py-2.bg-gray-800.border:hover,
.inline-flex.items-center.px-4.py-2.bg-white.border:hover,
.inline-flex.items-center.justify-center.px-4.py-2.bg-red-600.border:hover,
button.border:focus,
button.border-2:focus,
input[type="submit"]:focus {
  background-color: var(--rt-primary-hover) !important;
  border-color: var(--rt-border-strong) !important;
  color: var(--rt-text-light) !important;
}

/* ...existing code... */

.border,
.border-2,
.border-4,
.border-black,
.border-gray-300,
.border-gray-400,
.border-gray-500,
.border-purple,
.border-purple-300,
.border-purple-400,
.border-purple-500,
.border-purple-600,
.border-purple-700,
.border-purplel,
.border-purpler,
.border-orange,
.border-orange-300,
.border-orange-400,
.border-orange-500,
.border-orange-600,
.border-orange-700,
.border-orangel,
.border-oranger,
.border-greenl,
.border-greenr,
.border-HP,
.border-Dell {
  border-color: var(--rt-border-strong) !important;
}

.hover\:border-black:hover,
.hover\:border-gray-300:hover,
.hover\:border-gray-400:hover,
.hover\:border-orange-300:hover,
.hover\:border-orange-600:hover,
.hover\:border-orange-700:hover,
.hover\:border-orangel:hover,
.hover\:border-oranger:hover,
.hover\:border-purple-600:hover,
.hover\:border-purple-700:hover,
.focus\:border-orange-500:focus,
.focus\:border-orange-600:focus,
.focus\:border-purple-500:focus,
.focus\:border-purple-600:focus,
.focus\:ring-purple-500:focus,
.focus\:ring-purple-600:focus,
.focus\:ring-orange-500:focus,
.focus\:ring-orange-600:focus {
  border-color: var(--rt-border-strong) !important;
  --tw-ring-color: var(--rt-border-strong) !important;
}

/* ...existing code... */

.border-HP{
  border: 2px solid var(--rt-primary);
  color: var(--rt-text-dark);
}

.border-Dell{
  border: 2px solid var(--rt-primary);
  color: var(--rt-text-dark);
}

.nav-build-Dell{
  background-color: var(--rt-accent);
}

.nav-build-HP{
  background-color: var(--rt-accent);
}

/* Remove all borders except the intended one for the Custom Builders button */
.no-extra-border {
  box-shadow: none !important;
  border-width: 2px !important;
  border-style: solid !important;
  border-color: var(--rt-border-strong) !important;
}

/* ...existing code... */

.slick-prev:before{
  content: '' !important;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 30px 15px 30px 0;
  border-color: transparent var(--rt-primary) transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.slick-next:before{
  content: '' !important;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 30px 15px 30px 0;
  border-color: transparent var(--rt-primary) transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* ...existing code... */

/* ============================================================
 * Custom Rack Builder dropdown CTA (added with /build/rack feature)
 * ============================================================ */
.rt-builder-dropdown-rack-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.65rem 0 0;
    padding: 0.55rem 0.75rem;
    border-radius: 0.5rem;
    background: linear-gradient(90deg, #6d28d9, #4338ca);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 0.85rem;
    box-shadow: 0 2px 6px rgba(76, 29, 149, 0.25);
    transition: filter 0.15s, transform 0.15s;
}
.rt-builder-dropdown-rack-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}
.rt-builder-dropdown-rack-cta strong {
    display: block;
    font-weight: 700;
    line-height: 1.1;
}
.rt-builder-dropdown-rack-cta small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.9;
    margin-top: 1px;
}
.rt-builder-dropdown-rack-cta-icon {
    font-size: 1.1rem;
    line-height: 1;
}
