/* B&M Trade identity: the supplied logo uses orange (#f18b17) and graphite. */
:root {
  --lime: #f18b17;
  --brand-orange: #f18b17;
  --brand-orange-dark: #a64e00;
  --brand-orange-pale: #fff1e4;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--brand-orange-dark);
}

.button-lime:hover {
  background: #ffa437;
}

.quick-nav {
  background: var(--brand-orange-pale);
}

.quick-nav a {
  border-color: #edc9a4;
}

.quick-nav a:hover {
  background: #ffe2c2;
}

.use-number,
.card-kicker,
.steps span,
.check-list b,
.compare-grid span,
.selection-row b,
.info-grid span {
  color: var(--brand-orange-dark);
}

.feature-panel {
  background: var(--brand-orange-pale);
  border-top: 4px solid var(--brand-orange);
}

.notice {
  background: #fff2e4;
}

.product-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 269px;
  max-width: none;
  transform: translate(-50%, -55%);
}

.product-photo-wide {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transform: none;
  object-fit: cover;
  object-position: center;
}

.pallet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pallet-grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 28px;
  background: #f6f8f7;
  border: 1px solid #e3e8e5;
}

.pallet-grid span {
  color: var(--brand-orange-dark);
  font-size: .85rem;
  font-weight: 800;
}

.pallet-grid h3 {
  margin: 0;
}

.ground-feature {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  color: #fff;
  background: var(--navy);
}

.ground-feature .eyebrow {
  color: var(--brand-orange);
}

.ground-feature p {
  max-width: 760px;
  margin-bottom: 0;
  color: #d2e0e3;
}

.ground-feature .text-link {
  flex: none;
  color: var(--brand-orange);
}

.configurator {
  padding: 32px;
  background: #f6f8f7;
  border: 1px solid #e3e8e5;
}

.config-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.config-grid label {
  display: block;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.3;
}

.config-grid select {
  display: block;
  width: 100%;
  min-height: 50px;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid #cbd7d3;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
}

.config-grid select:focus-visible {
  outline: 2px solid var(--brand-orange-dark);
  outline-offset: 2px;
}

.config-note {
  max-width: 760px;
  margin: 28px 0;
  color: var(--muted);
  font-size: .94rem;
}

@media (max-width: 920px) {
  .pallet-grid,
  .config-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .pallet-grid,
  .config-grid {
    grid-template-columns: 1fr;
  }

  .pallet-grid article {
    min-height: 135px;
    padding: 23px;
  }

  .ground-feature {
    display: block;
    padding: 28px;
  }

  .ground-feature .text-link {
    display: inline-block;
    margin-top: 24px;
  }

  .configurator {
    padding: 20px;
  }
}
