.product-detail-breadcrumb-link {
  color: #203040;
  text-decoration: none;
}

.product-detail-breadcrumb-link:hover {
  color: #203040;
  text-decoration: underline;
}
.peripherals-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .peripherals-row {
    grid-template-columns: 1fr;
  }
}

.peripherals-section-gap {
  height: 48px;
}

.peripherals-cta-gap {
  padding-top: 40px;
}

.shelfbuilder-cta-gap {
  padding-top: 40px;
}

.basket-page .basket-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 0.6rem;
  padding: 1rem;
}

.basket-page .basket-hero {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.basket-page .basket-hero__form {
  flex: 1 1 auto;
}

.basket-page .basket-hero__promo {
  flex: 0 0 260px;
  max-width: 260px;
}

.basket-page .basket-promo-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.6rem;
  border: 1px solid #e1e4ea;
}

.basket-page .basket-plan-fields {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.basket-page .basket-plan-label {
  font-weight: 600;
  color: #203040;
}

.basket-page .basket-plan-input {
  max-width: 200px;
}

.basket-page .basket-plan-button {
  white-space: nowrap;
}

.basket-page .basket-plan-strip {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.basket-page .basket-empty {
  padding: 1rem;
  border: 1px dashed #d6dbe2;
  border-radius: 0.6rem;
  color: #6b7280;
  margin-bottom: 1rem;
  background: #f9fafb;
}

.basket-page .basket-plan-cta {
  display: grid;
  gap: 0.6rem;
}

.basket-page .basket-plan-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 8px;
  border: 1px solid #e1e4ea;
  background: #ffffff;
  color: #203040;
  padding: 0.7rem 0.9rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  max-width: 260px;
  width: auto;
}

.basket-page .basket-plan-cta__button:hover {
  border-color: #203040;
  background: #f4f4f4;
}

.basket-page .basket-plan-cta__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #f1f3f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #455565;
}

.basket-page .basket-plan-cta__note {
  color: #6b7280;
  font-size: 0.85rem;
}

.basket-plan-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1.5rem;
}

.basket-plan-modal.is-open {
  display: flex;
}

.basket-plan-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.basket-plan-modal__dialog {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 0.8rem;
  width: 100%;
  max-width: 420px;
  padding: 1.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.basket-plan-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.basket-plan-modal__close {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
}

.basket-plan-modal__form {
  display: grid;
  gap: 0.75rem;
  width: 100%;
}

.basket-plan-modal__form .basket-plan-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.basket-plan-modal__form .textbox {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

.basket-plan-modal__dialog input,
.basket-plan-modal__dialog select,
.basket-plan-modal__dialog textarea {
  max-width: 100%;
  box-sizing: border-box;
}

.basket-plan-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .basket-plan-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.basket-page .basket-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.basket-page .basket-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 42rem;
}

.basket-page .basket-table .menu td {
  background-color: #f1f3f6;
  color: #203040;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  padding: 0.6rem 0.5rem;
  text-align: center;
  border-bottom: 0;
}

.basket-page .basket-table .menu {
  border-bottom: 1em solid transparent;
}

.basket-page .basket-table .menu + tr td {
  padding-top: 0.75rem;
}

.basket-page .basket-table .menu td:first-child {
  border-top-left-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
  border-left: 0;
}

.basket-page .basket-table .menu td:last-child {
  border-top-right-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
  border-right: 0;
}

.basket-page .basket-table td {
  vertical-align: middle;
}

.basket-page .basket-item-remove-button {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid #e1e4ea;
  background: #ffffff;
  color: #455565;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.basket-page .basket-item-remove-button:hover {
  background: #f4f4f4;
  border-color: #203040;
}

.basket-page .basket-item-row td.basket-item-code {
  padding-left: 0.4rem;
}

.basket-page .basket-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.basket-page .basket-checkout-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.basket-page .basket-cta-gap {
  padding-top: 32px;
}

.basket-page .basket-cta-row--outer {
  justify-content: space-between;
}

.basket-page .basket-summary {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #e1e4ea;
  border-radius: 0.6rem;
  background: #ffffff;
  display: grid;
  gap: 0.75rem;
}

.basket-page .basket-summary-actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.basket-page .basket-summary__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.basket-page .basket-recalc-note {
  font-size: 0.85rem;
  color: #455565;
}

.basket-page .basket-summary__line,
.basket-page .basket-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.basket-page .basket-summary__label select {
  width: 100%;
  max-width: 220px;
}

.basket-page .basket-summary__total {
  font-weight: 700;
  font-size: 1.05rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e1e4ea;
}

/* Desktop: hide per-row cost/total labels (keep for mobile) */
.basket-page .basket-item-label {
  display: none;
}

@media (max-width: 900px) {
  .basket-page .basket-hero {
    flex-direction: column;
  }

  .basket-page .basket-hero__promo {
    max-width: 100%;
  }

  .basket-page .basket-plan-fields {
    flex-direction: column;
    align-items: stretch;
  }

  .basket-page .basket-plan-input {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .basket-page {
    overflow-x: hidden;
  }

  .basket-page .basket-table {
    min-width: 0;
  }

  .basket-page .basket-table .menu,
  .basket-page .basket-item-sep {
    display: none;
  }

  .basket-page .basket-item-row {
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-template-areas:
      "qty code remove"
      "desc desc desc"
      "cost cost total";
    gap: 0.3rem 0.2rem;
    padding: 0.75rem;
    border: 1px solid #e1e4ea;
    border-radius: 0.6rem;
    margin-bottom: 0.75rem;
  }

  .basket-page .basket-item-row td {
    padding: 0;
    background: transparent;
    border: 0;
  }

  .basket-page .basket-item-row td.basket-item-code {
    padding-left: 0.4rem;
  }

  .basket-page .basket-item-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    margin-bottom: 0.2rem;
  }

  .basket-page .basket-item-cost .basket-item-label,
  .basket-page .basket-item-total .basket-item-label {
    display: inline-block;
    margin-right: 0.35rem;
    margin-bottom: 0;
  }

  .basket-page .basket-item-label {
    display: inline-block;
  }

  .basket-page .basket-item-code {
    grid-area: code;
  padding-left: 0.4rem;
  }

  .basket-page .basket-item-code {
    display: block;
  }

  .basket-page .basket-item-remove {
    grid-area: remove;
    justify-self: end;
    align-self: start;
  }

  .basket-page .basket-item-cost {
    grid-area: cost;
    justify-self: start;
  }

  .basket-page .basket-item-total {
    grid-area: total;
    justify-self: end;
  }

  .basket-page .basket-item-qty,
  .basket-page .basket-item-code {
    align-self: center;
  }

  .basket-page .basket-item-code {
    display: flex;
    align-items: center;
    white-space: nowrap;
  }

  .basket-page .basket-item-qtyline {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }

  .basket-page .basket-item-code-inline {
    font-weight: 600;
  }

  .basket-page .basket-item-code-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .basket-page .basket-item-desc-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .basket-page .basket-item-desc-text {
    flex: 1 1 auto;
  }

  .basket-page .basket-item-dims {
    color: #6b7280;
    font-size: 0.8rem;
    text-align: right;
    white-space: nowrap;
  }

  .basket-page .basket-item-desc {
    grid-area: desc;
    color: #455565;
  }

  .basket-page .basket-item-qty {
    grid-area: qty;
    margin-right: 0.1rem;
  }

  .basket-page .basket-item-cost {
    grid-area: cost;
    text-align: left;
  }

  .basket-page .basket-item-total {
    grid-area: total;
    text-align: right;
    justify-content: flex-end;
  }

  .basket-page .basket-item-qty,
  .basket-page .basket-item-cost,
  .basket-page .basket-item-total {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .basket-page .basket-item-remove {
    grid-area: remove;
    text-align: right;
  }

  .basket-page .basket-item-qty {
    justify-content: flex-start;
  }

  .basket-page .basket-item-remove-button {
    width: 2.2rem;
    height: 2.2rem;
  }

  .basket-page .basket-item-height,
  .basket-page .basket-item-width,
  .basket-page .basket-item-depth {
    display: none;
  }

  .basket-page .basket-table td,
  .basket-page .basket-table th {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .basket-page .basket-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .basket-page .basket-cta-row .anchor-button-secondary,
  .basket-page .basket-cta-row .anchor-button-primary {
    width: 100%;
  }

  .basket-page .basket-table-scroll {
    overflow-x: hidden;
  }

  .basket-page .basket-summary__line,
  .basket-page .basket-summary__total {
    flex-direction: row;
    align-items: center;
  }

  .basket-page .basket-summary__label select {
    width: auto;
    max-width: 100%;
  }
}

@media (min-width: 769px) {
  .shelfbuilder-cta-stack tr {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  .shelfbuilder-cta-stack td {
    width: auto;
    text-align: left;
  }

  .summary-cta-actions {
    flex-direction: row-reverse;
  }
}
.site-header__phone {
  text-align: right;
  display: block;
}
html {
  overflow: -moz-scrollbars-vertical;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
}

td {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

hr {
  color: #ddd;
  background-color: #ffffff;
  border-top: 1px solid;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  color: #444;
}

img {
  border: none;
  border-color: #888888;
}

A {
  color: #4b6478;
}

A:hover {
  text-decoration: underline;
  color: #000000;
}

.field-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #203040;
  margin: 0 0 0.35rem 0;
}

A.whiteLink {
  color: #ffffff;
}

A.whiteLink:hover {
  text-decoration: underline;
  color: #ffffaa;
}

A.nu {
  text-decoration: none;
  color: #000000;
}

A.nu:hover {
  text-decoration: underline;
  color: #7f6057;
}

A.nu2 {
  text-decoration: none;
  color: #ffffff;
}

A.nu2:hover {
  text-decoration: underline;
  color: #ffffff;
}

A.menuLink {
  text-decoration: none;
  color: #000000;
}

A.menuLink:hover {
  text-decoration: underline;
  color: #000000;
}

A.shelvingLink {
  text-decoration: none;
  color: #222222;
}

A.shelvingLink:hover {
  text-decoration: none;
  color: #9f7e52;
}

input {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  padding: 0.25rem;
  color: #444;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.2;
}

.textbox {
  width: 100%;
  height: auto;
  border-width: 1px;
  border-style: solid;
  border-color: #c7ccd4;
  border-radius: 8px;
  padding: 0.55rem 0.6rem;
  font-size: 0.9rem;
  line-height: 1.2;
  background-color: #ffffff;
  color: #203040;
}

.mainTable {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 1.5rem 2rem;
}

.checkout-page .checkout-title-row td.pageTitle {
  padding-bottom: 0.25rem;
}

.checkout-page .checkout-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 0.9rem;
  padding: 0.5rem 0.75rem;
  margin-top: 0.75rem;
  display: block;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
}

.checkout-page .checkout-card .subTitle h2,
.checkout-page .checkout-card h2 {
  margin: 0;
}

.checkout-page .checkout-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.6rem;
  border-radius: 0.6rem;
  background: #f1f3f6;
  border: 1px solid #e1e4ea;
}

.checkout-page .checkout-card__header h2 {
  margin: 0;
  font-size: 1.05rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #203040;
}

.checkout-page .checkout-card--summary {
  padding: 1rem;
  margin-bottom: 1rem;
}

.checkout-page .checkout-summary-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "invoice delivery"
    "details details";
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.checkout-page .checkout-summary-block {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 0.75rem;
  padding: 0.9rem;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
}

.checkout-page .checkout-summary-block h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.checkout-page .checkout-summary-block--invoice {
  grid-area: invoice;
}

.checkout-page .checkout-summary-block--delivery {
  grid-area: delivery;
}

.checkout-page .checkout-summary-block--details {
  grid-area: details;
}

.checkout-page .checkout-summary-contact {
  margin-top: 1rem;
  padding-top: 0.75rem;
}

.checkout-page .checkout-summary-contact .checkout-info-list {
  display: grid;
  gap: 0.4rem 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-page .checkout-summary-contact .checkout-info-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.checkout-page .checkout-summary-contact .checkout-info-label {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.9rem;
  color: #203040;
  font-weight: 500;
}

.checkout-page .checkout-summary-contact .checkout-info-value {
  font-weight: 500;
  color: #203040;
  font-size: 0.9rem;
}

.checkout-page .checkout-table-scroll {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .checkout-page .checkout-summary-contact .checkout-info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.checkout-page .checkout-summary-totals {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #e1e4ea;
  border-radius: 0.6rem;
  background: #ffffff;
  display: grid;
  gap: 0.6rem;
}

.checkout-page .checkout-summary-totals__line,
.checkout-page .checkout-summary-totals__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.checkout-page .checkout-summary-totals__total {
  font-weight: 700;
  font-size: 1.05rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e1e4ea;
}

.checkout-page .checkout-card--delivery {
  padding: 1rem;
}

.checkout-page .checkout-delivery-pill-top {
  margin: 1rem 0 0.9rem;
}

@media (max-width: 768px) {
  .checkout-page .checkout-delivery-pill-top {
    margin-top: 0.35rem;
  }
}

.checkout-page .checkout-delivery-intro {
  margin-top: 0.75rem;
  color: #5b6776;
}

.checkout-page .checkout-delivery-divider {
  height: 1px;
  background: #e1e4ea;
  margin: 1rem 0;
}

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

.checkout-page .checkout-info-list {
  display: grid;
  gap: 0.45rem;
}

.checkout-page .checkout-info-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #203040;
}

.checkout-page .checkout-info-label {
  color: #1f2937;
  background: #f1f3f6;
  border: 1px solid #e1e4ea;
  padding: 0.15rem 0.45rem;
  border-radius: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  min-width: 120px;
}

.checkout-page .checkout-summary-block--details .checkout-info-label {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.9rem;
  color: #203040;
}

.checkout-page .checkout-summary-block--details .checkout-info-list {
  display: grid;
  gap: 0.4rem 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-page .checkout-card--details .checkout-info-row {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.checkout-page .checkout-card--details .field-label {
  min-width: 140px;
  margin: 0;
}

.checkout-page .checkout-summary-block--details .checkout-info-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.checkout-page .checkout-summary-block--details .checkout-info-label {
  font-weight: 500;
}

.checkout-page .checkout-summary-block--details .checkout-info-value {
  font-weight: 500;
  color: #203040;
}

.checkout-page .checkout-info-sub {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #5b6776;
}

@media (max-width: 768px) {
  .checkout-page .checkout-summary-block--details .checkout-info-list {
    grid-template-columns: 1fr;
  }

  .checkout-page .checkout-summary-block--details .checkout-info-row {
    flex-direction: row;
    align-items: center;
  }

  .checkout-page .checkout-card--details .checkout-info-row {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .checkout-page .checkout-summary-block--details .checkout-info-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .checkout-page .checkout-summary-block--details .checkout-info-row {
    flex: 1 1 auto;
    min-width: 0;
  }
}

.checkout-page .checkout-info-value {

}

.account-page {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 1rem;
}

.account-page__title {
  margin-bottom: 1.25rem;
}

.account-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.account-action-label {
  font-size: 0.75rem;
  line-height: 1;
  color: #203040;
}

.invoice-page {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.invoice-page__title {
  margin-bottom: 1.5rem;
}

.invoice-page__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.components-page {
  max-width: 1200px;
  margin: 0 auto;
}

.components-title {
  margin-bottom: 1.25rem;
}

.components-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.components-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 0.9rem;
  padding: 0 1.1rem 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(23, 37, 84, 0.06);
}

.components-card p:last-child {
  margin-bottom: 0;
}

.components-subtitle {
  margin: 0 0 1rem 0;
  font-size: 1.05rem;
  color: #203040;
}

.components-sections {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.components-section {
  border: 1px solid #e1e4ea;
  border-radius: 0.9rem;
  background: #ffffff;
  padding: 1rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 24px rgba(23, 37, 84, 0.06);
}

.components-section__header {
  border-bottom: 1px solid #e1e4ea;
  padding-bottom: 0.6rem;
  margin-bottom: 0.8rem;
}

.components-section__header.pageTitle {
  background: none;
  padding: 0 0 0.6rem 0;
  margin: 0 0 0.8rem 0;
}

.components-section__header h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  color: #203040;
}

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

.components-card-item {
  border: 1px solid #e1e4ea;
  border-radius: 0.75rem;
  padding: 0.6rem;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(23, 37, 84, 0.06);
  text-align: center;
}

.components-card-item__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  overflow: hidden;
}

.components-card-item__image {
  width: 80px;
  border: solid #eee 1px;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.components-card-item__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100px;
  height: 100%;
  border-radius: 10px;
  border: 1px dashed #d6deea;
  background: #f7f8fb;
  color: #5b6776;
  font-size: 0.75rem;
  text-align: center;
  padding: 8px;
  box-sizing: border-box;
}

.components-card-item__title h2 {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  line-height: 1.2;
}

.components-card-item__title a {
  color: #203040;
  text-decoration: none;
}

.components-card-item__title a:hover {
  text-decoration: underline;
}

.product-detail-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.product-detail-section {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(23, 37, 84, 0.06);
  margin-bottom: 1.5rem;
}

.product-detail-section__header {
  margin-bottom: 0.75rem;
}

.product-detail-section__header h2 {
  margin: 0;
  font-size: 1.1rem;
  color: #203040;
}

.product-detail-table-scroll {
  overflow-x: auto;
}

.product-detail-table {
  width: 100%;
  border-collapse: collapse;
}

.product-detail-table .menu_header td {
  background: #203040;
  color: #ffffff;
}

.product-detail-table .menu td {
  background: #f1f3f6;
  color: #203040;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-detail-table td {
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid #e1e4ea;
}

.product-detail-sizes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-detail-size-group {
  border: 1px solid #e1e4ea;
  border-radius: 0.75rem;
  padding: 0.8rem;
  background: #ffffff;
}

.product-detail-size-header {
  margin-bottom: 0.6rem;
}

.product-detail-size-header h3 {
  margin: 0;
  font-size: 1rem;
  color: #203040;
}

.data-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0.6rem;
  border-radius: 0.6rem;
  background-color: #f1f3f6;
  border: 1px solid #e1e4ea;
}

.data-section-header h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #203040;
}

.product-detail-size-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.product-detail-size-links__label {
  font-weight: 600;
  color: #203040;
}

.product-detail-size-links__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-detail-size-links__items a {
  color: #203040;
  text-decoration: none;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #d6deea;
  background: #ffffff;
  font-size: 0.8rem;
}

.product-detail-size-links__items a:hover {
  background: #f1f3f6;
  text-decoration: none;
}

.product-detail-size-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr)) 120px;
  gap: 0.75rem;
  align-items: center;
}

.product-detail-size-grid--head {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #203040;
  margin-bottom: 0.35rem;
}

.product-detail-size-row {
  padding: 0.5rem 0;
}

.product-detail-size-rows {
  display: grid;
  gap: 0.6rem;
}

.product-detail-size-row {
  padding: 0.6rem 0.75rem;
  border: 1px solid #e1e4ea;
  border-radius: 0.6rem;
  background: #ffffff;
}

.product-detail-size-cell--action {
  text-align: right;
}

.product-detail-add-button {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #d6deea;
  background: #f7f8fb;
  color: #203040;
  text-decoration: none;
}

.product-detail-add-button:hover {
  background: #e9eef5;
  color: #203040;
  text-decoration: none;
}

.planner-card {
  margin-bottom: 1.5rem;
}

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

.planner-layout > .home-delivery-pill {
  grid-column: 1 / -1;
  justify-self: start;
  margin-bottom: 0;
}

.planner-card--recall {
  margin-bottom: 0;
}

.planner-card__intro {
  margin: 0.75rem 0 1rem;
  color: #203040;
}

.planner-depth-grid {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.planner-depth-media img {
  width: 100%;
  max-width: 180px;
  padding: 10px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e1e4ea;
  box-shadow: 0 8px 18px rgba(23, 37, 84, 0.06);
}

.planner-depth-title {
  font-weight: 600;
  color: #203040;
  margin-bottom: 0.5rem;
}

.planner-depth-options {
  display: grid;
  gap: 0.35rem;
}

.planner-depth-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #203040;
}

.planner-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.planner-recall {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: stretch;
}

.planner-recall__label {
  color: #203040;
}

.planner-recall__input {
  width: 100%;
  min-width: 0;
}

.planner-recall-header h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.planner-recall .basket-plan-input {
  max-width: 200px;
}

.planner-info {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.planner-info__section {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(23, 37, 84, 0.06);
}

.planner-info__section h3 {
  margin: 0 0 0.6rem 0;
  font-size: 1.05rem;
  color: #203040;
}

.planner-info__section p {
  margin: 0 0 0.5rem 0;
  color: #203040;
}

.planner-info__section p:last-child {
  margin-bottom: 0;
}

.system-page {
  max-width: 60rem;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.system-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.system-hero__media {
  border: 1px solid #e1e4ea;
  border-radius: 12px;
  background: #ffffff;
  height: 275px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(23, 37, 84, 0.06);
}

.system-hero__media--stacked {
  height: auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.6rem;
}

.system-hero__media--stacked img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.system-hero__card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(23, 37, 84, 0.06);
}

.system-hero__card h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
  font-family: "Sora", sans-serif;
  color: #203040;
}

.system-hero__card--pdf h3 {
  margin-bottom: 0.35rem;
}

.system-hero__card--pdf p {
  margin: 0;
  color: #5b6776;
}

.system-hero__card-header {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.system-hero__unit-breakdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  color: #5b6776;
  font-size: 0.85rem;
  font-weight: 600;
  background: #f7f8fb;
  border: 1px solid #e1e4ea;
  border-radius: 0.6rem;
  padding: 0.6rem 0.75rem;
  align-self: stretch;
  flex: 1 1 0;
}

.system-hero__card-action {
  margin-bottom: 0.85rem;
}

.system-hero__download {
  border: 1px solid #e1e4ea;
  background: #f7f8fb;
  border-radius: 0.6rem;
  padding: 0.65rem 0.75rem;
}

.system-stat--headline {
  margin: 0;
  align-self: stretch;
  flex: 1 1 0;
}

.system-pdf-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.4rem;
  color: #203040;
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.system-pdf-link i {
  font-size: 1.35rem;
  color: #5a7fa6;
}

.system-pdf-link:hover {
  text-decoration: underline;
}

.system-hero__stats {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.system-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #203040;
  font-weight: 600;
  min-width: 0;
}

.system-stat__image {
  display: block;
  max-width: 110px;
  height: auto;
  border-radius: 0.35rem;
}

.system-stat--highlight {
  background: #f7f8fb;
  border: 1px solid #e1e4ea;
  border-radius: 0.6rem;
  padding: 0.5rem 0.75rem;
  gap: 0.35rem;
}

.system-stat--celebrate {
  background: linear-gradient(135deg, #fff4d7, #ffe2a3);
  border-color: #f0c36d;
  box-shadow: 0 12px 26px rgba(240, 195, 109, 0.35);
  padding: 0.7rem 1.2rem;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}

.system-stat--celebrate .system-stat__number {
  color: #1f3b66;
  animation: systemPulse 2.6s ease-in-out infinite;
}

@keyframes systemPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.92;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.system-stat__number {
  font-size: 2.6rem;
  font-weight: 700;
}

.system-stat__label {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  color: #3a4b5c;
  display: block;
  line-height: 1.2;
  white-space: normal;
}

.system-hero__sizes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.system-hero__sizes-grid--inline .system-size-values {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.system-size-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  color: #203040;
  font-weight: 600;
  justify-content: center;
}

.system-size-block {
  background: #f7f8fb;
  border: 1px solid #e1e4ea;
  border-radius: 0.6rem;
  padding: 0.5rem 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.shelving-ideas-hero .system-size-block {
  padding: 0.35rem 0.5rem;
  gap: 0.2rem;
}

.system-size-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5b6776;
  min-width: 165px;
}

.shelving-ideas-hero .system-size-title {
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.system-size-unit {
  margin-left: 0.2rem;
  font-size: 0.7em;
  color: #5b6776;
  font-weight: 600;
}

.system-size-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 70px;
  min-height: 32px;
  padding: 0.2rem 0.35rem;
  border: 1px solid #e1e4ea;
  border-radius: 0.45rem;
  background: #ffffff;
}

.shelving-ideas-hero .system-size-value {
  min-height: 26px;
  padding: 0.15rem 0.3rem;
  font-size: 0.85rem;
}

.system-size-values {
  color: #203040;
  font-weight: 600;
}

.system-hero__sizes div {
  margin-bottom: 0.35rem;
  color: #203040;
}

.system-content {
  display: grid;
  gap: 1.5rem;
}

.system-intro p {
  margin: 0 0 0.6rem 0;
  color: #203040;
}

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

.system-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.system-section-grid--parts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.system-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(23, 37, 84, 0.06);
}

.system-card--split {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: space-between;
}

.system-card--split img {
  width: 140px;
  max-width: 40%;
  height: auto;
  border-radius: 0.6rem;
  flex: 0 0 auto;
}

.system-section-grid--parts .system-card--split {
  gap: 0.75rem;
  align-items: center;
}

.system-section-grid--parts .system-card--split img {
  width: 90px;
  max-width: 35%;
  border-radius: 0.5rem;
}

.system-section-grid--parts .system-card--split h3 {
  font-size: 1.05rem;
}

.system-card--split .system-card__content {
  flex: 1 1 0;
  min-width: 0;
}

.system-card--compact {
  text-align: center;
}

.system-card h3 {
  margin: 0.6rem 0 0.5rem 0;
  font-family: "Sora", sans-serif;
  color: #203040;
}

.system-card--split h3 {
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 0.75rem;
}

.system-card--split .system-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.system-card--split .system-card__content h3 {
  padding-bottom: 0;
  margin: 0;
}

.system-card p {
  margin: 0 0 0.5rem 0;
  color: #203040;
}

.system-video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #203040;
  text-decoration: none;
  margin-top: 0.4rem;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #d6deea;
  background: #f7f8fb;
}

.system-video-link i {
  font-size: 1rem;
  color: #1f3b66;
}

.system-video-link:hover {
  background: #e9eef5;
  text-decoration: none;
}

.system-video-link:hover {
  text-decoration: underline;
}

.system-dimensions {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.system-dimensions img {
  width: 100%;
  height: auto;
  display: block;
}

.system-cta {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(23, 37, 84, 0.06);
}

.system-dimensions-card {
  background: #f7f8fb;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1rem;
}

@media (max-width: 900px) {
  .system-page {
    padding: 0;
  }

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

  .system-hero__card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .system-section-grid,
  .system-section-grid--parts {
    grid-template-columns: 1fr;
  }

  .system-highlights {
    grid-template-columns: 1fr;
  }

  .system-dimensions {
    grid-template-columns: 1fr;
  }

  .system-hero__sizes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .planner-layout {
    grid-template-columns: 1fr;
  }

  .planner-depth-grid {
    grid-template-columns: 1fr;
  }

  .planner-actions {
    justify-content: flex-start;
  }

  .planner-recall {
    align-items: flex-start;
  }
}

.product-detail-size-cell--dims {
  display: none;
}

.product-detail-size-abbr {
  display: none;
  margin-right: 0.35rem;
  font-weight: 600;
  color: #5b6776;
}

@media (max-width: 900px) {
  .product-detail-assets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-size-grid {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "code cost"
      "dims action";
    gap: 0.5rem 0.75rem;
  }

  .product-detail-size-grid--head {
    display: none;
  }

  .product-detail-size-cell {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .product-detail-size-cell--code {
    grid-area: code;
    font-weight: 600;
  }

  .product-detail-size-cell--cost {
    grid-area: cost;
    justify-content: flex-end;
  }

  .product-detail-size-cell--action {
    grid-area: action;
    justify-content: flex-end;
  }

  .product-detail-size-cell--dims {
    grid-area: dims;
    display: flex;
    gap: 0.6rem;
    align-items: center;
  }

  .product-detail-size-cell--height,
  .product-detail-size-cell--width,
  .product-detail-size-cell--depth {
    display: none;
  }

  .product-detail-size-abbr {
    display: inline;
  }
}

.product-detail-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 0;
  align-items: start;
}

.product-detail-media__image {
  width: 100%;
  max-width: 240px;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e1e4ea;
  box-shadow: 0 8px 18px rgba(23, 37, 84, 0.06);
}

.product-detail-media__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  min-height: 180px;
  padding: 10px;
  border-radius: 12px;
  border: 1px dashed #d6deea;
  background: #f7f8fb;
  color: #5b6776;
  font-size: 0.85rem;
  text-align: center;
}

.product-detail-description {
  display: block;
  margin: 0;
  padding-bottom: 1rem;
  color: #203040;
}

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

.product-detail-assets__col {
  display: grid;
  gap: 0.6rem;
}

.product-detail-section--hero {
  margin-bottom: 1.5rem;
}

.product-detail-asset {
  margin-bottom: 0.5rem;
}

.product-detail-asset i {
  font-size: 1.5rem;
  color: #203040;
}

.product-detail-asset a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #203040;
  text-decoration: none;
}

.product-detail-asset a:hover {
  text-decoration: underline;
}

.product-detail-gallery ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem 0;
}

.product-detail-gallery li {
  margin: 0;
}

@media (max-width: 900px) {
  .product-detail-hero {
    grid-template-columns: 1fr;
  }

  .product-detail-media__image {
    max-width: 200px;
  }

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

  .product-detail-page {

  }
}

.invoice-action-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.invoice-status-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.invoice-status-panel {
  background: #f5f7fb;
  border: 1px solid #d6deea;
  border-radius: 0.75rem;
  padding: 0.7rem 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  box-sizing: border-box;
  box-shadow: 0 8px 18px rgba(32, 48, 64, 0.08);
}

.invoice-status-panel__icon {
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.invoice-status-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.invoice-status-icon--complete {
  background: #e7f6ea;
  color: #067647;
  border: 1px solid #a6e3c1;
}

.invoice-status-icon--active {
  background: #eef4ff;
  color: #2f5bb7;
  border: 1px solid #c7d7ff;
}

.invoice-status-panel__text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #203040;
}

.invoice-status-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #203040;
}

.invoice-status-panel__note {
  color: #5b6776;
  font-size: 0.85rem;
}

.invoice-status-panel__note p {
  margin: 0;
}

.invoice-info-list .checkout-info-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-start;
}

.invoice-info-list .field-label {
  margin: 0;
  min-width: 160px;
  width: 160px;
  flex: 0 0 160px;
}

.invoice-info-list .checkout-info-value {
  font-weight: 500;
}

.checkout-info-row--alert .field-label {
  color: #b42318;
}

.checkout-info-row--alert .checkout-info-value {
  color: #b42318;
  font-weight: 600;
}

.invoice-track-link {
  color: #b42318;
  text-decoration: none;
}

.invoice-track-link:hover {
  text-decoration: underline;
}

.invoice-details-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: none;
}

.invoice-items-card {
  margin-top: 1rem;
}

.invoice-item-qty {
  display: none;
}

.invoice-item-sep {
  display: none;
}

.invoice-summary-totals {
  margin-top: 1rem;
}

.invoice-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e1e4ea;
  text-align: center;
}

@media (max-width: 900px) {
  .invoice-page {

  }

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

  .invoice-status-grid {
    grid-template-columns: 1fr;
  }

  .invoice-details-grid {
    grid-template-columns: 1fr;
  }

  .invoice-info-list .field-label {
    min-width: 130px;
    width: 130px;
    flex-basis: 130px;
  }

  .invoice-col-line,
  .invoice-col-qty {
    display: none;
  }

  .invoice-item-qty {
    display: inline;
  }

  .invoice-item-sep {
    display: inline;
  }

  .components-page {

  }

  .components-intro {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .components-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.account-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(23, 37, 84, 0.06);
}

.account-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.account-card__header h2 {
  margin: 0;
  font-size: 1.1rem;
  color: #203040;
}

.account-info-list .checkout-info-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
  flex-direction: row;
  flex-wrap: nowrap;
}

.account-page .account-info-list .field-label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  width: 160px;
  min-width: 160px;
  flex: 0 0 160px;
  white-space: nowrap;
}

.account-page .account-info-list .checkout-info-value {
  white-space: nowrap;
  flex: 1 1 auto;
}

.account-page .account-info-list .checkout-info-value {
  font-weight: 500;
}

.account-table-scroll {
  overflow-x: auto;
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.account-table td {
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid #e1e4ea;
}

.account-table tr.menu td {
  background: #f1f3f6;
  color: #203040;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.account-activity-list {
  display: grid;
  gap: 0.65rem;
}

.account-activity-row {
  display: grid;
  grid-template-columns: 120px 110px 1fr 140px 90px 110px;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border: 1px solid #e1e4ea;
  border-radius: 0.75rem;
  background: #ffffff;
}

.account-activity-row--head {
  background: #f1f3f6;
  border-color: #e1e4ea;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #203040;
}

.account-activity-cell--amount {
  text-align: right;
  font-weight: 600;
}

.account-activity-cell--actions {
  text-align: right;
  white-space: nowrap;
}

.account-activity-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.account-activity-action {
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #d6deea;
  color: #203040;
  text-decoration: none;
}

.account-activity-action:hover {
  background: #f1f3f6;
  color: #203040;
  text-decoration: none;
}

.account-activity-divider {
  color: #98a3b3;
  margin: 0 0.2rem;
}

@media (max-width: 900px) {
  .account-activity-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.4rem;
  }

  .account-activity-row--head {
    display: none;
  }

  .account-activity-cell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.95rem;
  }

  .account-activity-cell::before {
    content: attr(data-label);
    color: #5b6776;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .account-activity-cell--amount,
  .account-activity-cell--actions {
    text-align: left;
  }

  .account-activity-cell--actions {
    flex-direction: row;
    align-items: center;
  }

  .account-activity-actions {
    margin-left: auto;
  }
}

@media (max-width: 900px) {
  .account-page {

  }

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

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

  .account-page .account-info-list .field-label {
    width: 140px;
    min-width: 140px;
  }
}

.checkout-page .checkout-section {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid #e1e4ea;
}

.checkout-page .checkout-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.checkout-page .checkout-section__header h3 {
  margin: 0;
  font-size: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.checkout-page .checkout-address-list {
  display: grid;
  gap: 0.25rem;
  color: #203040;
}

.checkout-page .checkout-edit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #eef2f7;
  color: #1f4b6e;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.checkout-page .checkout-edit-link i {
  font-size: 0.85rem;
}

.checkout-page .checkout-edit-link:hover {
  background: #e3e8f0;
  color: #16354f;
}

.checkout-page .checkout-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.checkout-page .checkout-actions--right {
  justify-content: flex-end;
}

.checkout-page .checkout-note {
  color: #5b6776;
  font-size: 0.9rem;
}

.checkout-page .checkout-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.checkout-page .checkout-table {
  min-width: 420px;
}

@media (min-width: 769px) {
  .checkout-page .checkout-table--summary {
    border-collapse: separate;
    border-spacing: 0 0.35rem;
  }
}

.checkout-page .checkout-item-label {
  display: none;
}

.checkout-page .checkout-item-cost .checkout-item-label,
.checkout-page .checkout-item-total .checkout-item-label {
  display: none;
}

.checkout-page .checkout-item-code {
  font-weight: 600;
}

.checkout-page .checkout-item-sep td {
  display: none;
}

.checkout-page .checkout-table .menu td {
  background-color: #f1f3f6;
  color: #203040;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.7rem;
  padding: 0.5rem 0.4rem;
  border-bottom: 0;
}

.checkout-page .checkout-payment-iframe {
  border: 0;
  width: 100%;
  min-height: 420px;
  height: 60vh;
}

.checkout-page .checkout-card--payment {
  padding: 1rem;
}

.checkout-page .checkout-payment-note {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  color: #5b6776;
}

.checkout-page .checkout-payment-error {
  background: #fff6f1;
  border: 1px solid #f3c9b3;
  border-radius: 0.75rem;
  padding: 0.9rem;
  color: #7a2b0e;
}

.checkout-page .checkout-payment-error h2 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.checkout-page .checkout-payment-error .error {
  margin: 0.35rem 0 0;
}

.checkout-page .checkout-calendar {
  width: 100%;
  overflow-x: auto;
}

.checkout-page .checkout-calendar-info {
  margin-bottom: 0.75rem;
  color: #5b6776;
}

.checkout-page .checkout-calendar-info b {
  display: block;
  color: #203040;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.checkout-page .checkout-delivery-pill-row {
  margin: 0;
}

.checkout-page .checkout-calendar-info p {
  margin: 0.4rem 0 0;
}

.checkout-page .checkout-calendar-table-wrap {
  width: 100%;
}

.checkout-page .checkout-calendar table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

.checkout-page .checkout-delivery-note {
  margin-top: 0.85rem;
  color: #5b6776;
}

.checkout-page .checkout-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .checkout-page .checkout-title-row td.pageTitle {
    display: block;
    width: 100%;
    text-align: left;
  }

  .checkout-page .checkout-title-row td.pageTitle:last-child {
    margin-top: 0.5rem;
  }

  .checkout-page .checkout-card {
    padding: 0.6rem 0.7rem;
  }

  .checkout-page .checkout-card table:not(.checkout-table):not(.checkout-calendar-table) {
    width: 100%;
  }

  .checkout-page .checkout-card > tbody > tr > td {
    display: block;
    width: 100% !important;
  }

  .checkout-page .checkout-table {
    min-width: 0;
  }

  .checkout-page .checkout-table .menu,
  .checkout-page .checkout-item-sep {
    display: none;
  }

  .checkout-page .checkout-item-row {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "code code"
      "desc desc"
      "cost total";
    gap: 0.35rem 0.5rem;
    padding: 0.75rem;
    border: 1px solid #e1e4ea;
    border-radius: 0.6rem;
    margin-bottom: 0.75rem;
    background: #ffffff;
  }

  .checkout-page .checkout-item-row td {
    padding: 0;
    background: transparent;
    border: 0;
  }

@media (min-width: 769px) {
  .checkout-page .checkout-item-row {
    height: auto;
  }

  .checkout-page .checkout-item-row td {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }
}

  .checkout-page .checkout-item-code { grid-area: code; }
  .checkout-page .checkout-item-desc { grid-area: desc; }
  .checkout-page .checkout-item-cost { grid-area: cost; }
  .checkout-page .checkout-item-total { grid-area: total; }

  .checkout-page .checkout-item-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    margin-bottom: 0.15rem;
  }

  .checkout-page .checkout-summary-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "invoice"
      "delivery"
      "details";
  }
  .checkout-page .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-page .checkout-info-row {
    flex-direction: row;
    align-items: center;
  }

  .checkout-page .checkout-info-label {
    min-width: 120px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .checkout-page .checkout-address-grid td:empty {
    display: none;
  }

  .checkout-page .checkout-address-grid table {
    width: 100%;
  }

  .checkout-page .checkout-inline-table td {
    width: auto !important;
    display: table-cell;
    vertical-align: top;
  }

  .checkout-page .checkout-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-page .checkout-payment-iframe {
    height: 70vh;
  }

  .checkout-page .checkout-link-row {
    flex-direction: column;
  }
}

.customer-login-page .customer-login-wrap {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.75rem;
}

.customer-login-page .customer-login-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 0.9rem;
  padding: 1.5rem;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
}

.customer-login-page .customer-login-card__header h3 {
  margin: 0;
}

.customer-login-page .customer-login-card__header p {
  margin: 0.35rem 0 0;
  color: #5b6776;
}

.customer-login-page .customer-login-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.customer-login-page .customer-login-form .textbox {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.customer-login-page .customer-login-label {
  font-size: 0.85rem;
  color: #455565;
}

.customer-login-page .customer-login-password-row {
  display: block;
}

.customer-login-page .customer-login-password-row .textbox {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.customer-login-page .customer-login-submit {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

.customer-login-page .customer-login-help a {
  color: #3b5c7d;
}

.account-form {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.75rem;
  max-width: 52rem;
}

.account-form__note {
  color: #5b6776;
  font-size: 0.9rem;
}

.account-form__error {
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
}

.account-form__section {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 0.9rem;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
}

.account-form__section-row {
  display: grid;
  gap: 1.25rem;
}

.account-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.account-form__header h3 {
  margin: 0;
  font-size: 1.05rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.account-form__meta {
  color: #5b6776;
  font-size: 0.85rem;
}

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

.account-form__field {
  display: grid;
  gap: 0.35rem;
}

.account-form__field label {
  font-size: 0.85rem;
  color: #455565;
}

.account-form__hint {
  color: #7a8796;
  font-size: 0.8rem;
  margin-left: 0.3rem;
}

.account-form__field--full {
  grid-column: 1 / -1;
}

.account-form__field select,
.account-form__field input {
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .account-form__field select,
  .account-form__field input {
    max-width: 26rem;
  }

  .account-form__field--full select,
  .account-form__field--full input {
    max-width: 36rem;
  }
}

.account-form__inline {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.account-form__inline .textbox {
  flex: 1 1 auto;
}

.account-form__button {
  white-space: nowrap;
}

.account-form__help {
  margin: 0.5rem 0 0;
  color: #5b6776;
  font-size: 0.85rem;
}

.account-form__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.account-form__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #eef2f7;
  color: #1f4b6e;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid #d7dee8;
}

.account-form__link:hover {
  color: #203040;
  background: #e3e8f0;
}

@media (max-width: 768px) {
  .account-form__grid {
    grid-template-columns: 1fr;
  }

  .account-form__inline {
    flex-direction: column;
    align-items: stretch;
  }

  .account-form__actions {
    flex-direction: column;
  }
}

@media (min-width: 900px) {
  .account-form__section-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (min-width: 900px) {
  .customer-login-page .customer-login-wrap {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

@media (max-width: 600px) {
  .customer-login-page .customer-login-card {
    padding: 1.2rem;
  }
}

.roTextbox {
  width: 100%;
  height: auto;
  border-width: 1px;
  border-style: solid;
  border-color: #c7ccd4;
  background-color: #f1f3f6;
  border-radius: 8px;
  padding: 0.55rem 0.6rem;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #203040;
}

.textbox2 {
  width: 100%;
  height: auto;
  border-width: 1px;
  border-style: solid;
  border-color: #c7ccd4;
  border-radius: 8px;
  padding: 0.55rem 0.6rem;
  font-size: 0.9rem;
  line-height: 1.2;
  background-color: #ffffff;
  color: #203040;
  text-align: right;
}

textarea {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  width: 100%;
  height: 160px;
  border-width: 1px;
  border-style: solid;
  border-color: #aaaaaa;
  border-radius: 3px;
}

select {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #c7ccd4;
  border-radius: 8px;
  padding: 0.55rem 0.6rem;
  line-height: 1.2;
  background-color: #ffffff;
  color: #203040;
}

.select_large {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  height: 20px;
}

.check {
  height: 15px;
  width: 15px;
}

.button {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  width: 100%;
  height: 28px;
}

.button_large {
  font-family: "Inter", sans-serif;
  width: 100%;
  font-size: 0.75rem;
  height: 23px;
  padding: 0;
  margin: 0;
  background-image: url(../images/bar_red.gif);
  color: #ffffff;
  border-style: ridge;
  border-width: 1px;
}

.submitButton {
  font-family: "Inter", sans-serif;
  width: 100%;
  font-size: 0.75rem;
  height: 23px;
  padding: 0;
  margin: 0;
  background-image: url(../images/bar_red.gif);
  color: #ffffff;
  border-style: ridge;
  border-width: 1px;
}

.button_invoice {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  width: 120px;
  height: 30px;
}

.menu {
  background-color: #455565;
  color: #ffffff;
  /* BACKGROUND-IMAGE: url(../images/bar_menu_detail.gif); */
  height: 27px;
  border-radius: 4px;
}

.menu_header {
  background-color: #203040;
  color: #ffffff;
  /* BACKGROUND-IMAGE: url(../images/bar_red.gif); */
}

.pageTitle {
  background: none;
  color: #203040;
  border-bottom: 0;
  padding: 1rem 0 0.75rem 0;
  margin: 0 0 1rem 0;
  height: auto;
}

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

.pageTitle__subtitle {
  margin: 0;
  color: #5b6776;
  font-size: 0.95rem;
  max-width: 720px;
}

.shelving-search-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.search-error {
  background: #fff2f2;
  border: 1px solid #f0c2c2;
  color: #9b1c1c;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
}

.search-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.5rem;
  background: #f7f8fb;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1.25rem;
}

.search-hero__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #203040;
}

.search-hero__count {
  color: #c23b3b;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0.2rem;
}

.search-hero__media img {
  max-width: 170px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 0.75rem;
  background: #ffffff;
  border: 1px solid #e1e4ea;
  padding: 1.1rem;
}

.search-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.search-form__row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  color: #203040;
  font-weight: 600;
}

.search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.45rem 0.6rem;
  border: 1px solid #d6dbe2;
  border-radius: 0.5rem;
  background: #ffffff;
  font-size: 0.95rem;
}

.search-planner-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
}

.search-planner-cta h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #203040;
  padding-bottom: 0.75rem;
  display: block;
}

.search-planner-cta p {
  margin: 0;
  color: #5b6776;
}

.search-planner-cta__button {
  background: #203040;
  color: #ffffff;
  text-decoration: none;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.search-planner-cta__button:hover {
  background: #182634;
  color: #ffffff;
}

.search-planner-cta__button:focus,
.search-planner-cta__button:focus-visible {
  color: #ffffff;
}

.brochures-page {
  display: grid;
  gap: 1rem;
}

.brochures-note {
  margin: 0;
  color: #5b6776;
}

.brochures-note a {
  color: #203040;
  font-weight: 600;
}

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

.brochure-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #e1e4ea;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
  text-decoration: none;
  color: #203040;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.brochure-card:hover {
  border-color: #cfd6df;
  box-shadow: 0 12px 24px rgba(23, 37, 84, 0.1);
  transform: translateY(-2px);
}

.brochure-card__icon {
  width: 48px;
  height: 48px;
}

.brochure-card__body h3 {
  margin: 0 0 0.4rem 0;
  font-size: 1.1rem;
}

.brochure-card__meta {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  color: #6b7684;
}

.brochure-card__body p {
  margin: 0;
  color: #5b6776;
}

@media (max-width: 700px) {
  .brochures-grid {
    grid-template-columns: 1fr;
  }

  .brochure-card {
    padding: 0.9rem;
  }
}

.assembly-page {
  display: grid;
  gap: 1.5rem;
}

.assembly-intro {
  margin: 0;
  color: #5b6776;
}

.assembly-intro-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
  display: grid;
  gap: 0.8rem;
}

.corner-page {
  display: grid;
  gap: 1.5rem;
}

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

.corner-video h3 {
  margin: 0 0 0.6rem 0;
  font-size: 1.1rem;
  color: #203040;
}

.corner-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0.8rem;
}

.corner-guide {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.corner-guide__text p {
  margin: 0 0 0.8rem 0;
  color: #5b6776;
}

.corner-guide__media {
  display: grid;
  gap: 1rem;
}

.corner-figure {
  margin: 0;
  text-align: center;
}

.corner-figure img,
.corner-guide__full img {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
  border: 1px solid #e1e4ea;
  background: #ffffff;
}

.corner-figure figcaption {
  margin-top: 0.35rem;
  color: #6b7684;
  font-size: 0.9rem;
}

.corner-guide__full {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .corner-video-grid {
    grid-template-columns: 1fr;
  }

  .corner-guide {
    grid-template-columns: 1fr;
  }
}

.specs-page {
  display: grid;
  gap: 1.5rem;
}

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

.specs-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-rows: auto 1fr;
}

.specs-card .data-section-header {
  align-self: start;
}


.specs-card__body {
  display: grid;
  gap: 0.75rem;
  color: #5b6776;
  align-content: start;
}

.specs-card__body img {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
  border: 1px solid #e1e4ea;
  background: #ffffff;
}

.specs-card__body p {
  margin: 0;
}

.specs-note {
  background: #f8fafc;
  border: 1px solid #e1e4ea;
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
  color: #5b6776;
}

@media (max-width: 800px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }
}

.videos-page {
  display: grid;
  gap: 1.5rem;
}

.videos-layout {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.videos-list-card,
.videos-grid-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
  display: grid;
  gap: 0.9rem;
}

.videos-list-card #div-videos-list a {
  display: inline-block;
  padding: 0 0.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: #203040;
  font-weight: 600;
  border: 1px solid transparent;
  align-self: flex-start;
  line-height: 1.2;
}

.videos-list-card #div-videos-list a:hover {
  border-color: #e1e4ea;
  background: #f8fafc;
}

.videos-grid-card #div-videos > ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .videos-layout {
    grid-template-columns: 1fr;
  }
}

.delivery-page {
  display: grid;
  gap: 1.5rem;
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.delivery-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
  display: grid;
  gap: 0.9rem;
}

.delivery-card h4 {
  margin: 0;
  color: #203040;
}

.delivery-card p {
  margin: 0;
  color: #5b6776;
}

.delivery-details {
  color: #5b6776;
}

.delivery-details p {
  margin: 0 0 0.75rem 0;
}

.delivery-details p:last-child {
  margin-bottom: 0;
}

.delivery-details .delivery-subtitle {
  margin: 1rem 0 0.4rem 0;
  font-size: 1.05rem;
  color: #203040;
}

.delivery-faq {
  display: grid;
  gap: 0.75rem;
}

.delivery-faq h4 {
  margin: 0;
  color: #203040;
}

.delivery-faq__item {
  display: grid;
  gap: 0.5rem;
}

.delivery-faq__question {
  border: 1px solid #e1e4ea;
  border-radius: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: #f8fafc;
  text-align: left;
  font-weight: 600;
  color: #203040;
  cursor: pointer;
}

.delivery-faq__answer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .delivery-layout {
    grid-template-columns: 1fr;
  }
}

.contact-page {
  display: grid;
  gap: 1.5rem;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #e1e4ea;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
}

.contact-hero img {
  width: 100%;
  height: auto;
  border-radius: 0.9rem;
  border: 1px solid #e1e4ea;
  display: block;
}

.contact-hero__content h2 {
  color: #203040;
  font-size: 1.6rem;
  margin: 0 0 0.35rem 0;
  display: block;
}

.contact-hero__content p {
  margin: 0;
  color: #5b6776;
}

.contact-hero__highlights {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.75rem;
  color: #203040;
  font-weight: 600;
}

.contact-hero__highlights span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-hero__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
  display: grid;
  gap: 0.9rem;
}

.contact-form-body {
  display: grid;
  gap: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form,
.contact-form-row,
.contact-form-card {
  min-width: 0;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 0.35rem 0.75rem;
  align-items: center;
}

.contact-form-row--textarea {
  align-items: start;
}

.contact-form-label {
  color: #203040;
  font-weight: 600;
  white-space: nowrap;
}

.contact-form .textbox,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #c7ccd4;
  padding: 0.55rem 0.6rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #203040;
}

.contact-submit {
  display: flex;
  justify-content: flex-start;
  padding-left: calc(150px + 0.75rem);
}
@media (max-width: 900px) {
  .contact-submit {
    padding-left: 0;
  }
}

.contact-note {
  display: grid;
  gap: 0.4rem;
  color: #5b6776;
  font-size: 0.9rem;
}

.contact-note__row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.contact-note__mark {
  font-weight: 700;
  color: #203040;
}

.contact-info-block {
  display: grid;
  gap: 0.4rem;
  color: #5b6776;
}

.contact-info-block p {
  margin: 0;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 0.5rem;
  align-items: center;
}

.contact-info-label {
  font-weight: 700;
  color: #203040;
}

.contact-info-block--highlight {
  background: #f8fafc;
  border: 1px solid #e1e4ea;
  border-radius: 0.8rem;
  padding: 0.75rem;
}

.contact-info-block h4 {
  margin: 0;
  color: #203040;
}

.contact-hours {
  display: grid;
  gap: 0.35rem;
}

.contact-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-form-label {
    white-space: normal;
  }
}

.about-page {
  display: grid;
  gap: 1.5rem;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #e1e4ea;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
  align-items: start;
}

.about-hero__content {
  display: grid;
  gap: 0.6rem;
}

.about-hero__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 0.9rem;
  align-items: start;
}

.about-hero__media img {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
  border: 1px solid #e1e4ea;
  display: block;
}

.about-hero__content p {
  margin: 0;
  color: #5b6776;
}

.about-hero__highlights {
  display: grid;
  gap: 0.6rem;
}

.about-highlight {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: center;
  padding: 0.6rem 0.75rem;
  border-radius: 0.85rem;
  background: #f8fafc;
  border: 1px solid #e1e4ea;
}

.about-highlight__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e1e4ea;
  display: grid;
  place-items: center;
  color: #203040;
  font-size: 1rem;
}

.about-highlight strong {
  font-size: 1.1rem;
  color: #203040;
}

.about-highlight span {
  color: #5b6776;
  font-size: 0.95rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.about-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
  display: grid;
  gap: 0.9rem;
  color: #5b6776;
  align-content: start;
}

.about-card .data-section-header {
  padding: 0.4rem 0.6rem;
}

.about-card p {
  margin: 0;
}

@media (max-width: 900px) {
  .about-hero,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-hero__summary {
    grid-template-columns: 1fr;
  }
}

.privacy-page {
  display: grid;
  gap: 1.5rem;
}

.privacy-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
  display: grid;
  gap: 0.9rem;
}

.privacy-content {
  color: #5b6776;
}

.privacy-content p {
  margin: 0 0 0.8rem 0;
}

.privacy-content p:last-child {
  margin-bottom: 0;
}

.privacy-content ul {
  padding-top: 0;
  padding-left: 1.2rem;
  margin: 0 0 0.8rem 0;
  list-style-position: inside;
}

.privacy-content li {
  margin: 0.2rem 0;
}

.assembly-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.assembly-nav a {
  background: #f1f5f9;
  border: 1px solid #e1e4ea;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  color: #203040;
  font-weight: 600;
}

.assembly-sections {
  display: grid;
  gap: 1.5rem;
}

.assembly-section {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #e1e4ea;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
}

.assembly-section__content {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.assembly-section__details {
  display: grid;
  gap: 0.9rem;
}

.assembly-section__thumb img {
  width: auto;
  max-width: 100%;
  border-radius: 0.8rem;
  border: 1px solid #e1e4ea;
  padding: 0.5rem;
  background: #ffffff;
  box-sizing: border-box;
  display: block;
}

.assembly-section__title {
  display: grid;
  gap: 0.4rem;
}

.assembly-section__title h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #203040;
}

.assembly-section__pdf {
  text-decoration: none;
  color: #203040;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.assembly-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.75rem;
  justify-items: start;
}

.assembly-step {
  display: grid;
  gap: 0.4rem;
  text-decoration: none;
  color: #203040;
  text-align: center;
  justify-items: center;
}

.assembly-step img {
  width: 88px;
  border-radius: 0.6rem;
  border: 1px solid #e1e4ea;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(23, 37, 84, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.assembly-step span {
  font-size: 0.9rem;
  color: #5b6776;
}

.assembly-step:hover img {
  transform: translateY(-2px);
  border-color: #cfd6df;
  box-shadow: 0 10px 18px rgba(23, 37, 84, 0.18);
}


.assembly-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 1rem;
  width: 100%;
  justify-items: start;
}

.assembly-videos iframe {
  width: 240px;
  height: 180px;
  max-height: 180px;
  border: 0;
  border-radius: 0.8rem;
}

@media (max-width: 700px) {
  .assembly-section__content {
    grid-template-columns: 1fr;
  }

  .assembly-videos {
    grid-template-columns: minmax(0, 240px);
  }
}

.search-form__actions {
  display: flex;
  justify-content: flex-start;
}

.search-button {
  border: 0;
  border-radius: 999px;
  background: #203040;
  color: #ffffff;
  padding: 0.55rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.search-button:hover {
  background: #182634;
}

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

.search-results-header {
  font-size: 1.15rem;
  font-weight: 700;
  color: #203040;
}

.search-results-count {
  color: #c23b3b;
}

.search-pagination {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.search-page {
  border: 1px solid #d6dbe2;
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 0.35rem 0.6rem;
  font-weight: 600;
  color: #203040;
}

.search-page--active {
  background: #203040;
  color: #ffffff;
  border-color: #203040;
}

.search-page:hover {
  background: #e9eef5;
}

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

.search-result-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 0.9rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
}

.search-result-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.search-result-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  background: #f7f8fb;
  border-bottom: 1px solid #e1e4ea;
}

.search-result-card__image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 8px;
  background: #ffffff;
}

.search-result-card__body {
  padding: 0.85rem;
  display: grid;
  gap: 0.4rem;
  color: #203040;
}

.search-result-card__ref {
  font-weight: 700;
}

.search-result-card__price {
  font-weight: 700;
}

.search-result-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.search-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid #d6dbe2;
  background: #ffffff;
  color: #203040;
  font-weight: 600;
  text-decoration: none;
}

.search-action--primary {
  background: #203040;
  color: #ffffff;
  border-color: #203040;
}

.search-action:hover {
  background: #e9eef5;
}

.search-action--primary:hover {
  background: #182634;
}

.search-no-results {
  padding: 1rem;
  border-radius: 0.75rem;
  background: #f7f8fb;
  border: 1px solid #e1e4ea;
  color: #5b6776;
  font-weight: 600;
}

.sample-page {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.sample-hero {
  background: #f7f8fb;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sample-content {
  display: grid;
  gap: 1.5rem;
}

.sample-hero img {
  width: 220px;
  max-width: 100%;
  margin-right: 0.75rem;
  box-sizing: border-box;
  border-radius: 0.75rem;
  border: 1px solid #e1e4ea;
  background: #ffffff;
  padding: 0.6rem;
}

.sample-hero__content h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  color: #203040;
}

.sample-hero__content p {
  margin: 0;
  color: #5b6776;
}

.sample-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 1.5rem;
  align-items: start;
}

.sample-layout .sample-form-card,
.sample-layout .sample-sidebar-card {
  height: 100%;
}

.sample-layout .sample-divider {
  display: none;
}

.sample-form-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
}

.sample-form-card__header {
  font-size: 1.15rem;
  font-weight: 700;
  color: #203040;
  margin-bottom: 0.75rem;
}

.sample-form-card__body {
  min-width: 0;
}

.sample-form {
  display: grid;
  gap: 0.6rem;
  min-width: 0;
}

.sample-form-divider {
  height: 1px;
  background: #e6e9ef;
  margin: 0.35rem 0;
}

.sample-form-error {
  margin-bottom: 0.35rem;
}

.sample-form-table td {
  padding: 0.3rem 0.2rem;
  color: #203040;
}

.sample-form-table td:first-child {
  width: 150px;
  white-space: nowrap;
}

.sample-form-table select,
.sample-form-table .textbox {
  width: 100%;
  box-sizing: border-box;
}

.sample-submit {
  display: flex;
  justify-content: flex-start;
  padding-top: 0.5rem;
  padding-left: calc(150px + 0.75rem);
}
@media (max-width: 900px) {
  .sample-submit {
    padding-left: 0;
  }
}

.sample-submit__button {
  min-width: 160px;
}

.sample-country-input {
  max-width: 220px;
}

.sample-postcode-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.sample-postcode-row .textbox {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 600px) {
  .sample-postcode-row {
    flex-direction: column;
    align-items: stretch;
  }

  .sample-postcode-row .textbox {
    width: 100%;
  }

  .sample-postcode-row .anchor-button-primary {
    width: 100%;
  }
}

.sample-form-block {
  display: grid;
  gap: 0.6rem;
  width: 100%;
  min-width: 0;
}

.sample-form-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 0.25rem 0.75rem;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.sample-form-row > * {
  min-width: 0;
}

.sample-form-label {
  color: #203040;
  font-weight: 600;
  white-space: nowrap;
}

.sample-form .textbox,
.sample-form .roTextbox,
.sample-form select,
.sample-form input {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.sample-form .sample-country-input {
  max-width: 100%;
}

.sample-form-row .sample-postcode-row {
  width: 100%;
}

@media (max-width: 600px) {
  .sample-form-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .sample-form-label {
    white-space: normal;
  }
}

.sample-privacy {
  display: flex;
  gap: 0.4rem;
  margin-top: 12px;
  align-items: flex-start;
  width: 100%;
  color: #203040;
}

.sample-privacy__mark {
  font-weight: 700;
}

.sample-privacy-cell {
  width: 100%;
  display: block;
}

.sample-sidebar-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
}

.sample-sidebar-card h3 {
  margin: 0;
  padding-bottom: 0.85rem;
  color: #203040;
  font-size: 1.2rem;
}

.sample-sidebar-card h3 + p {
  margin-top: 0.85rem;
}
.sample-sidebar-card p {
  margin: 0 0 0.6rem 0;
  color: #5b6776;
}

.sample-sidebar-callout {
  background: #f7f8fb;
  border: 1px solid #e1e4ea;
  border-radius: 0.7rem;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  color: #203040;
  display: inline-flex;
}

.sample-accordion {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
}

.sample-info {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
}

.sample-info__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.sample-info__card h3 {
  margin: 0;
  padding-bottom: 0.85rem;
  color: #203040;
  font-size: 1.15rem;
}

.sample-info__card h3 + p {
  margin-top: 0.85rem;
}

.sample-info__title {
  padding-bottom: 0.85rem;
  display: block;
}
.sample-info__card p {
  margin: 0 0 0.6rem 0;
  color: #5b6776;
}

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

.sample-info__gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.6rem;
  border: 1px solid #e1e4ea;
}

@media (max-width: 900px) {
  .sample-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .sample-hero img {
    width: 100%;
    max-width: none;
  }

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

  .sample-form-table,
  .sample-form-table td {
    width: 100%;
    box-sizing: border-box;
  }

  .sample-form-table tr,
  .sample-form-table td {
    display: block;
  }

  .sample-form-table td:first-child {
    white-space: normal;
  }

  .sample-form-table input,
  .sample-form-table select {
    width: 100%;
    max-width: 100%;
  }

#block-address table,
#block-postcode table {
  width: 100%;
}

#block-address input,
#block-postcode input,
#block-address .textbox,
#block-postcode .textbox,
#block-address .roTextbox,
#block-postcode .roTextbox {
  width: 100%;
  box-sizing: border-box;
}

  #block-address table tr,
  #block-address table td,
  #block-postcode table tr,
  #block-postcode table td {
    display: block;
    width: 100%;
  }

  #block-address table {
    table-layout: fixed;
  }

  #block-address input,
  #block-address .textbox,
  #block-address .roTextbox {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .sample-form-table {
    table-layout: fixed;
  }

  .sample-form-card {
    overflow: hidden;
  }

  .sample-layout .sample-form-card {
    margin-bottom: 0.75rem;
  }

  .sample-sidebar-card {
    margin-top: 0;
  }

  .sample-page {
    gap: 1rem;
  }

  .sample-layout {
    margin-top: 0.75rem;
  }

  .sample-accordion {
    margin-top: 1rem;
  }

  .sample-info__grid {
    grid-template-columns: 1fr;
  }
}

.shelving-ideas-page {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.shelving-ideas-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1.25rem;
}

.shelving-ideas-hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 1.5rem;
  align-items: start;
}

.shelving-ideas-tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-content: start;
}

.shelving-ideas-tools .home-plan__content {
  flex-direction: column;
}

.shelving-ideas-tools .home-plan__media img {
  width: 100%;
  max-width: 12rem;
}


.shelving-ideas-tools .home-plan__radios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.shelving-ideas-tools__spacer {
  display: none;
}

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

.shelving-ideas-card {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 0.9rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
}

.shelving-ideas-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  background: #f7f8fb;
  border-bottom: 1px solid #e1e4ea;
}

.shelving-ideas-card__image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 8px;
  background: #ffffff;
}

.shelving-ideas-card__body {
  padding: 0.85rem;
  display: grid;
  gap: 0.6rem;
  color: #203040;
}

.shelving-ideas-card__dims {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
}

.shelving-ideas-card__dims div {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.shelving-ideas-card__dims span {
  color: #5b6776;
  font-weight: 600;
}

.shelving-ideas-card__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.shelving-ideas-article {
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
}

.shelving-ideas-article__header {
  margin-bottom: 0.85rem;
}

.shelving-ideas-article__header h2 {
  margin: 0 0 0.35rem 0;
  color: #203040;
  font-size: 1.35rem;
}

.shelving-ideas-article__header p {
  margin: 0;
  color: #5b6776;
}

.shelving-ideas-article__content {
  column-count: 2;
  column-gap: 2rem;
  color: #203040;
}

.shelving-ideas-article__content p {
  break-inside: avoid;
}

@media (max-width: 1100px) {
  .shelving-ideas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .shelving-ideas-hero-wrap {
    grid-template-columns: 1fr;
  }

  .shelving-ideas-tools {
    grid-template-columns: 1fr;
  }

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

  .shelving-ideas-article__content {
    column-count: 1;
  }
}

@media (max-width: 600px) {
  .shelving-ideas-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .search-results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .search-hero {
    grid-template-columns: 1fr;
  }

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

  .search-planner-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 600px) {
  .search-results-grid {
    grid-template-columns: 1fr;
  }
}

.pageTitle h1,
.pageTitle h2,
.pageTitle h3 {
  font-family: "Sora", sans-serif;
}

.subTitle {
  background: none;
  color: #203040;
  font-family: "Sora", sans-serif;
  border-bottom: 1px solid #d6dbe2;
  padding: 0.8rem 0 0.6rem 0;
  margin: 0 0 0.8rem 0;
  height: auto;
}

.subTitle h1,
.subTitle h2,
.subTitle h3 {
  font-family: "Sora", sans-serif;
}

.topMenu {
  background-color: #455565;
  color: #cccccc;
  border: 0;
  height: 27px;
}

.smallText {
  font-family: "Inter", sans-serif;
  font-size: 0.55rem;
  font-weight: normal;
}

.whiteText {
  color: #ffffff;
}

.blackText {
  color: #000000;
}

.smallText2 {
  font-size: 0.55rem;
  color: #999999;
}

.reference {
  color: #e70000;
}

.ok {
  color: #00cc00;
}

.error {
  color: #cc2222;
  font-size: 0.8rem;
}

.errorBox {
  font-size: 0.85rem;
  color: #9b1c1c;
  line-height: 1.3;
  background-color: #fff3f3;
  border: 1px solid #f2b8b8;
  border-left: 4px solid #e23c3c;
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
  font-weight: 600;
}

p.error,
td.error,
h1.error {
  font-size: 0.85rem;
  color: #9b1c1c;
  line-height: 1.3;
  background-color: #fff3f3;
  border: 1px solid #f2b8b8;
  border-left: 4px solid #e23c3c;
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
  font-weight: 600;
}

.tableHeader {
  background-color: #104d87;
  color: #ffffff;
}

.tableRow {
  background-color: #e3e3e3;
}

.tdSummation {
  border-width: 1px;
  border-style: solid;
  border-color: #7799bb;
  border-left: 0px;
  border-right: 0px;
}

.footer {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  line-height: 0.8rem;
}

.site-footer {
  background-color: #203040;
  color: #ffffff;
}

.site-footer__inner {
  max-width: 60rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.site-footer__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

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

.site-footer__list li {
  margin: 0.4rem 0;
}

.site-footer__list a {
  color: #c7d3e0;
  text-decoration: none;
  font-size: 0.9rem;
}

.site-footer__list a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  padding-top: 1.2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.site-footer__social a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.site-footer__social i {
  font-size: 1rem;
}

.site-footer__legal {
  font-size: 0.9rem;
  color: #c7d3e0;
}

.copyright {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: #555555;
  background-color: #d3d3d3;
  height: 28px;
}

.headerText {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: #888888;
}

.topMenu {
  height: auto;
}

.side-menu-hidden {
  width: 0;
  padding: 0;
}

.site-nav {
  display: flex;
  align-items: center;

}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.35rem 0.55rem;
  border-radius: 0.35rem;
  transition: background-color 0.2s ease;
}

.site-nav__link:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
}

.site-nav__item.has-sub > .site-nav__link::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.65rem;
}

.site-nav__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 13rem;
  background-color: #203040;
  border-radius: 0.4rem;
  padding: 0.4rem 0;
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.2);
  z-index: 20;
  list-style: none;
  margin: 0;
}

.site-nav__submenu li {
  position: relative;
}

.site-nav__submenu a {
  display: block;
  padding: 0.45rem 0.8rem;
  color: #e6edf5;
  text-decoration: none;
  font-size: 0.82rem;
  white-space: nowrap;
}

.site-nav__submenu a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.site-nav__item:hover > .site-nav__submenu {
  display: block;
}

.site-nav__submenu .site-nav__submenu {
  top: 0;
  left: 100%;
  margin-left: 0.4rem;
}

.site-nav__submenu .has-sub > a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  float: right;
  font-size: 0.7rem;
  opacity: 0.7;
}

.site-nav__link--popular::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  background: linear-gradient(135deg, #fff2b3 0%, #f2c14e 45%, #c48a1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0.05rem 0.2rem rgba(0, 0, 0, 0.3);
  margin-right: 0;
  animation: nav-star-pulse 1.6s ease-in-out infinite;
}

.site-nav__submenu .site-nav__link--popular::before {
  margin-right: 0.35rem;
}

@keyframes nav-star-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.site-nav__submenu .has-sub:hover > .site-nav__submenu {
  display: block;
}


.site-header__phone {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: normal;
  padding: 0;
  display: block;
  text-align: right;
  margin: 0;
}

.site-header__meta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  gap: 0;
}

.site-nav__actions--header {
  padding-top: 0;
  align-self: flex-end;
  text-align: right;
  width: 100%;
}

.site-nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.site-nav__action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.35rem 0.55rem;
  border-radius: 0.35rem;
  transition: background-color 0.2s ease;
}

.site-nav__action:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
}

.site-header__mobile-actions {
  display: none;
}

ul {
  margin: 0;
  padding: 0.65rem 0.65rem 0 0;
}

h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  display: inline;
}

h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: normal;
  display: inline;
}

h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3em;
  font-weight: normal;
  display: inline;
}

.leftOutlinebox {
  border-color: #e3e3e3;
  border-style: dashed;
  border-width: 0px 0px 0px 1px;
}

.outlinebox {
  background-color: #eee;
  border-color: #aaaaaa;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
}

.outlineboxwhite {
  background-color: #ffffff;
  border-color: #aaaaaa;
  border-style: solid;
  border-width: 1px;
}

.stageBox {
  color: #ffffff;
  background-color: #686881;
  border-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  text-align: center;
  border-radius: 3px;
}

.stageBoxSelected {
  background-color: #44aa44;
  color: #ffffff;
  border-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  text-align: center;
  border-radius: 3px;
}

.stageBoxSelected2 {
  background-color: #00ba00;
  color: #ffffff;
  border-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  text-align: center;
  border-radius: 3px;
}

.stage-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #203040, #2f4760);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0.35rem 0.9rem rgba(32, 48, 64, 0.2);
}

@media (max-width: 768px) {
  .stage-indicator {
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    gap: 0.35rem;
    padding: 0.2rem 0.4rem;
  }

  .stage-indicator__label {
    font-size: 0.75rem;
  }

  .stage-indicator__steps {
    gap: 0.2rem;
  }

  .stage-indicator__step {
    width: 1.05rem;
    height: 1.05rem;
    font-size: 0.66rem;
  }

  .stage-indicator__step.is-complete::after {
    font-size: 0.5rem;
  }
}

.stage-indicator__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.stage-indicator__steps {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.stage-indicator__step {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.08);
  opacity: 0.85;
}

.stage-indicator__step.is-complete {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  color: transparent;
  opacity: 1;
  position: relative;
}

.stage-indicator__step.is-complete::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.65rem;
  color: #ffffff;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-indicator__step.is-active {
  background-color: #f7c84c;
  color: #203040;
  border-color: #f7c84c;
  opacity: 1;
}

.stabilise-sections {
  display: grid;
  gap: 1.5rem;
}

.stabilise-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0.6rem;
  border-radius: 0.6rem;
  background-color: #f1f3f6;
  border: 1px solid #e1e4ea;
}

.stabilise-header h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #203040;
}

.stabilise-note {
  font-size: 0.9rem;
  color: #203040;
}

.stabilise-cta-gap {
  padding-top: 24px;
}

.stabilise-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.8rem;
}

.stabilise-grid--wall {
  grid-template-columns: 2fr 1fr;
}

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

.stabilise-card {
  border: 1px solid #e1e4ea;
  border-radius: 0.6rem;
  padding: 1.2rem 0.9rem 0.9rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.stabilise-card--option {
  cursor: pointer;
  display: block;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.stabilise-card--option:hover {
  border-color: #8b98a8;
  box-shadow: 0 0.35rem 0.8rem rgba(32, 48, 64, 0.12);
  background-color: #f8fafc;
}

.stabilise-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.stabilise-card__media {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: flex;
  gap: 0.35rem;
}

.stabilise-card__media img {
  display: block;
  max-width: 52px;
  height: auto;
}

.stabilise-media--mini {
  max-width: 32px;
}

.stabilise-media--crossed {
  opacity: 0.5;
  filter: grayscale(100%);
  position: relative;
  display: inline-block;
}

.stabilise-media--crossed::after {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(45deg, transparent 45%, rgba(32, 48, 64, 0.55) 45%, rgba(32, 48, 64, 0.55) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(32, 48, 64, 0.55) 45%, rgba(32, 48, 64, 0.55) 55%, transparent 55%);
  pointer-events: none;
}


.stabilise-card__title {
  font-weight: 600;
  font-size: 1rem;
  color: #203040;
  padding-right: 5.5rem;
  margin-top: 0;
}

.stabilise-card__qty {
  font-size: 0.9rem;
  color: #203040;
  margin-top: 0.25rem;
}

.stabilise-card__details {
  margin-top: 0.35rem;
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.9rem;
}

.stabilise-card__price-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.stabilise-card__price {
  font-weight: 600;
  color: #203040;
}

.stabilise-card__meta {
  font-size: 0.85rem;
  color: #455565;
  margin-top: 0.4rem;
}

.stabilise-card__meta + .stabilise-card__meta {
  margin-top: 0.75rem;
}

.stabilise-card__cta {
  margin-top: 0.6rem;
}

.stabilise-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #203040;
  text-decoration: none;
  border-bottom: 1px solid rgba(32, 48, 64, 0.25);
}

.stabilise-card__link:hover {
  border-bottom-color: rgba(32, 48, 64, 0.6);
}

@media (max-width: 900px) {
  .peripherals-card-cell,
  .peripherals-card-cell--full {
    display: block;
    width: 100%;
  }

  .peripherals-card-cell .stabilise-card,
  .peripherals-card-cell--full .stabilise-card {
    width: 100%;
  }

  .peripherals-uprights {
    grid-template-columns: 1fr;
  }

  .peripherals-uprights__cards {
    grid-template-columns: 1fr;
    grid-column: auto;
  }
}

.peripherals-card-cell--full {
  width: 100%;
}

.peripherals-uprights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.peripherals-uprights__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  grid-column: 2 / span 2;
}

@media (max-width: 900px) {
  .peripherals-uprights {
    grid-template-columns: 1fr;
  }

  .peripherals-uprights__cards {
    grid-template-columns: 1fr;
    grid-column: auto;
  }
}

.stabilise-media img {
  display: block;
  max-width: 100%;
  height: auto;
}

.stabilise-control input,
.stabilise-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
}

.stabilise-card--selected {
  border-color: #203040;
  background-color: #f4f7fb;
  box-shadow: 0 0.5rem 1rem rgba(32, 48, 64, 0.12);
}

.stabilise-card--selected::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffffff;
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background-color: #2f6f4e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 0.2rem 0.5rem rgba(47, 111, 78, 0.35);
}

.stabilise-card--disabled {
  opacity: 0.6;
}

.stabilise-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #455565;
}

.stabilise-card__action i {
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .stabilise-grid--wall {
    grid-template-columns: 1fr;
  }

  .stabilise-grid--support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pageTitle {
    display: block;
    width: 100%;
  }

  .pageTitle + .pageTitle {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    text-align: left;
  }

  .stage-indicator {
    justify-content: flex-start;
  }

  .pageTitle {
    padding-top: 0.35rem;
    padding-bottom: 0;
  }

  .pageTitle .stage-indicator {
    margin-top: 0;
    margin-bottom: 0;
  }

  .shelfbuilder-render-cell {
    padding-bottom: 16px;
  }

  .shelfbuilder-bay-input-cell {
    padding-bottom: 16px;
  }

.shelfbuilder-bay-input-cell {
  max-width: 100%;
  min-width: 0;
  overflow: visible;
}

  .shelfbuilder-cta-cell {
    padding-top: 16px;
  }
}

.ss-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1.5rem;
}

.ss-modal.is-open {
  display: flex;
}

.ss-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.ss-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(90vw, 28rem);
  background: #ffffff;
  border-radius: 0.8rem;
  border: 1px solid #e1e4ea;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  padding: 1rem 1.25rem 1.1rem;
}

.ss-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.ss-modal__title {
  margin: 0;
  font-size: 1rem;
  color: #203040;
}

.ss-modal__close {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  color: #667085;
  cursor: pointer;
}

.ss-modal__message {
  color: #2b2b2b;
  font-size: 0.95rem;
  line-height: 1.4;
  white-space: pre-line;
}

.ss-modal__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
  gap: 0.5rem;
}

.ss-modal__action {
  min-width: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rowUnderline {
  border-color: #e3e3e3;
  border-style: solid;
  border-width: 0px 0px 1px 0px;
}

.menuBoxTitle {
  border-color: #e3e3e3;
}

.menuBox {
  border-style: solid;
  border-width: 1px;
  border-color: #ffffff;
  background-color: #ffffff;
}

.menuboxHover {
  /* BACKGROUND-IMAGE: url(../images/bar_grey.gif); */
  color: #ffffff;
  border-color: #f3f3f3;
  border-style: solid;
  border-width: 1px;
}

.menuboxSelected {
  color: #ffffff;
  border-color: #c3c3c3;
  border-style: solid;
  border-width: 1px;
}

#contentDiv {
  position: absolute;
  top: -1000px;
  left: 200px;
  width: 798px;
  height: 690px;
  background-color: #ffffff;
  border: 1px solid #4e1c89;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  z-index: 2;
  padding: 0.3rem;
  color: #000000;
}

.ui-accordion .ui-accordion-header {
  cursor: pointer;
  position: relative;
  margin-top: 0.05rem;
  zoom: 1;
}
.ui-accordion .ui-accordion-li-fix {
  display: inline;
}
.ui-accordion .ui-accordion-header-active {
  border-bottom: 0 !important;
}
.ui-accordion .ui-accordion-header a {
  display: block;
  font-size: 1em;
  padding: 0.5em 0.5em 0.5em 0.7em;
}
/* IE7-/Win - Fix extra vertical space in lists */
.ui-accordion a {
  zoom: 1;
}
.ui-accordion-icons .ui-accordion-header a {
  padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-icon {
  position: absolute;
  left: 0.5em;
  top: 50%;
  margin-top: -0.5rem;
}
.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  margin-top: -0.15rem;
  position: relative;
  top: 1px;
  margin-bottom: 0.15rem;
  overflow: auto;
  display: none;
  zoom: 1;
}
.ui-accordion .ui-accordion-content-active {
  display: block;
}

.boxRounded {
  color: #444;

  border: 1px solid #ccc;
  padding: 0.65rem;
  margin-bottom: 0.65rem;

  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 5px;
  text-align: center;
}

.videoContainerCell {
  width: 375px;
  height: 211px;
  background-position: center;
  background-image: url("../images/loading_animated.gif");
}

#socialmedialinks li {
  display: inline;
  list-style-type: none;
  padding-right: 0.2rem;
}

#socialmedialinks li img {
  border: #fff solid 1px;
  width: 20px;
  border-radius: 5px;
}

#socialmedialinks li a i {
  color: white;
  font-size: 1.75rem;
}

#div-videos > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#div-videos > ul > li {
  display: grid;
  gap: 0.6rem;
  padding: 0.9rem;
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
}

#div-videos > ul > li > a > img {
  width: 100%;
  border: 1px solid #e1e4ea;
  border-radius: 0.8rem;
  padding: 0;
}

#div-videos > ul > li > a:hover > img {
  border: 1px solid #cfd6df;
}

#div-videos > ul > li > a > span {
  position: absolute;
  inset: 0;
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../images/play_icon.png");
}

#div-videos > ul > li > a > p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

#div-videos > ul > li > a {
  text-decoration: none;
  position: relative;
  display: block;
}

#div-videos > ul > li > a:hover {
  text-decoration: underline;
}

#div-videos > ul > li > div {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

#div-videos > ul > li > div > p {
  display: block;
  width: auto;
  flex: 1 1 auto;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  margin-top: 0.3rem;
  color: #5b6776;
}

#div-videos > ul > li > div > p.item-number {
  display: block;
  width: 30px;
  flex: 0 0 30px;
  color: #203040;
  font-weight: 700;
}

#div-videos-list > ol {
  float: none;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: video-topic;
}

#div-videos-list > ol > li {
  float: none;
  padding: 0;
  width: auto;
  margin: 0 0 0.35rem 0;
  overflow-wrap: anywhere;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

#div-videos-list > ol > li,
#div-videos-list > ol > li > a {
  line-height: 1.2;
}

#div-videos-list > ol > li {
  padding-top: 0;
}

#div-videos-list > ol > li::before {
  counter-increment: video-topic;
  content: counter(video-topic) ".";
  width: 1.6rem;
  flex: 0 0 1.6rem;
  color: #203040;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

ol > li {
  padding: 0.2rem;
}

.faq-answer {
  display: none;
  margin-top: 0.5rem;
  padding: 0.8rem 1rem;
  background-color: #f8fafc;
  border: 1px solid #e1e4ea;
  border-radius: 0.75rem;
  box-shadow: 0 6px 16px rgba(23, 37, 84, 0.08);
  color: #344256;
}

.faq-answer p {
  margin: 0;
}

.help-tooltip {
  color: blue;
}

.ui-tooltip,
.arrow:after {
  background: black;
  border: 2px solid white;
}
.ui-tooltip {
  padding: 0.65rem 1.25rem;
  color: white;
  border-radius: 20px;
  font: bold 0.9rem "Inter", sans-serif;
  box-shadow: 0 0 7px black;
}
.arrow {
  width: 70px;
  height: 16px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  margin-left: -2.2rem;
  bottom: -1rem;
}
.arrow.top {
  top: -1rem;
  bottom: auto;
}
.arrow.left {
  left: 20%;
}
.arrow:after {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: -1.25rem;
  width: 25px;
  height: 25px;
  box-shadow: 6px 5px 9px -9px black;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.arrow.top:after {
  bottom: -1.25rem;
  top: auto;
}

#postcodeLookupError div {
  margin-bottom: 1.25rem;
}

.headerLogo {
  display: block;
  margin-top: 1.25rem;
  margin-left: 0;
}

.anchor-button-primary, .button-primary {
  background-color: #455565;
  color: white;
  border: solid 1px;
  border-radius: 12px;
  padding: 0.65rem;
  display: inline-block;
  text-decoration: none;
  min-width: 90px;
  text-align: center;
  font-size: 0.8rem;
}

.animateHighlight {
  animation: glowing 1300ms infinite;
}

@keyframes glowing {
  0% {
    background-color: #455565;
    box-shadow: 0 0 3px #455565;
  }
  50% {
    background-color: #2ba805;
    box-shadow: 0 0 10px #2ba805;
  }
  100% {
    background-color: #455565;
    box-shadow: 0 0 3px #455565;
  }
}

.anchor-button-primary:hover {
  background-color: #203040;
  color: white;
  text-decoration: none;
}

.anchor-button-secondary, .button-secondary {
  background-color: white;
  color: #455565;
  border: solid 1px;
  border-radius: 12px;
  padding: 0.65rem;
  display: inline-block;
  text-decoration: none;
  min-width: 90px;
  text-align: center;
  font-size: 0.8rem;
}

.anchor-button-secondary:hover {
  background-color: #f4f4f4;
  border-color: #203040;
  text-decoration: none;
}

.anchor-button-tertiary, .button-tertiary {
  background-color: #456555;
  color: white;
  border: solid 1px;
  border-radius: 12px;
  padding: 0.65rem;
  display: inline-block;
  text-decoration: none;
  min-width: 90px;
  text-align: center;
  font-size: 0.8rem;
}

.anchor-button-tertiary:hover {
  background-color: #3f5d4f;
  border-color: #3f5d4f;
  color: #ffffff;
  text-decoration: none;
}

.anchor-button-tertiary--glow {
  background-color: #c46a2f;
  border-color: #c46a2f;
  color: #ffffff;
  font-size: 0.9rem;
  box-shadow: 0 0.5rem 1.2rem rgba(196, 106, 47, 0.35);
  animation: ctaGlowPulse 2.2s ease-in-out infinite;
}

.anchor-button-tertiary--glow:hover {
  background-color: #b65f2a;
  border-color: #b65f2a;
  color: #ffffff;
}

@keyframes ctaGlowPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 0.4rem 0.9rem rgba(196, 106, 47, 0.25);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 0.8rem 1.6rem rgba(196, 106, 47, 0.45);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 0.4rem 0.9rem rgba(196, 106, 47, 0.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .anchor-button-tertiary--glow {
    animation: none;
  }
}

.link-button {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.button-min-width {
  min-width: 20px;
}

.button-low-profile {
  padding: 0.2rem 0.65rem;
}

/* Colours */

.colour-white {
  color: white;
}

.colour-document-background {
  background-color: #e8e4de;
}

.colour-main-background {
  background-color: #f7f7f7;
}

.image-rounded {
  border-radius: 5px;
}

.imageOuterContainer {
  width: 456px;
  height: 399px;
  position: relative;
  top: -50px;
}

.imageBannerTextContainer {
  display: inline-block;
  background-color: rgba(255,0,0,0.7);
  width: 100%;
  height: 50px;
  position: relative;
  bottom: -399px;
  z-index: 10;
}

.imageBannerText {
  color: white;
  font-size: 1.45rem;
  line-height: 3.15rem;
  text-align: center;
}

.site-shell {
  margin: 0 auto;
}

.site-shell-inner {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 0;
}

.site-header-shell {
  width: 100%;
}

.site-header__inner {
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}


img {
  max-width: 100%;
  height: auto;
}

.side-menu-table,
#my_menu {
  width: 100%;
}

.videoContainerCell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.gallery-item {
  display: block;
  border-radius: 0.6rem;
  overflow: hidden;
  background-color: #ffffff;
  border: 0.08rem solid #e1e4ea;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-0.15rem);
  box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #203040;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background-color: #ffffff;
  border: 0.08rem solid #e1e4ea;
  box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.gallery-instagram:hover {
  background-color: #f6f7f9;
  transform: translateY(-0.1rem);
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.12);
}

.gallery-instagram__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background-color: #203040;
  color: #ffffff;
}

.gallery-instagram__icon i {
  font-size: 1rem;
}

.gallery-instagram:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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

.home-hero {
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
}

.home-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-card {
  background-color: #ffffff;
  border: 0.08rem solid #e1e4ea;
  border-radius: 0.8rem;
  padding: 1.2rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.08);
}

.home-card h1,
.home-card h2,
.home-card h3 {
  margin-top: 0;
}

.home-intro h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 600;
  color: #203040;
}

.home-intro-text {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid #e1e4ea;
  box-shadow: 0 8px 20px rgba(23, 37, 84, 0.06);
}

.home-intro-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  color: #203040;
}

.home-intro-text .home-free-delivery--mobile {
  margin-top: 0.75rem;
}

.home-intro-text .home-delivery-pill {
  margin-top: 0.6rem;
  margin-bottom: 0;
}

.home-free-delivery__short,
.home-delivery-label--short {
  display: none;
}

.home-delivery-compact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

@media (min-width: 901px) {
  .home-delivery-compact {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.6rem;
  }

  .home-delivery-compact .home-free-delivery--sidebar,
  .home-delivery-compact .home-delivery-pill {
    margin-bottom: 0;
    flex: 1 1 0;
    width: 50%;
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: flex-start;
  }

  .home-delivery-compact .home-delivery-pill {
    margin-top: 0;
  }
}

.home-intro__lead {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  /* font-weight: 700; */
}

.home-plan {
  padding: 1.4rem 1.5rem;
  background: #ffffff;
  border: 0.1rem solid #e1e4ea;
  border-radius: 1rem;
  box-shadow: 0 0.8rem 2rem rgba(32, 48, 64, 0.12);
}

.home-plan__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: #6a7686;
  margin-bottom: 0.4rem;
}

.home-plan__eyebrow--promo {
  color: #c23b3b;
  font-weight: 800;
  letter-spacing: 0.06rem;
  font-size: 0.9rem;
  text-align: center;
  animation: homePlanPulse 1.8s ease-in-out infinite;
}

@keyframes homePlanPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.home-plan__title {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
  color: #203040;
}

.home-plan__lead {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #4b5a6b;
}

.home-plan__content {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.home-plan__media img {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
  margin: 0 auto;
  border-radius: 0.6rem;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.12);
  padding: 0.4rem;
  background: #ffffff;
  border: 1px solid #e1e4ea;
  aspect-ratio: auto;
  object-fit: contain;
}

.home-plan__options {
  flex: 1;
}

.home-plan__options-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #203040;
}

.home-plan__radios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(6.5rem, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.home-plan__radio {
  position: relative;
  cursor: pointer;
}

.home-plan__radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.home-plan__radio span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.4rem;
  border-radius: 0.6rem;
  border: 0.08rem solid #d6dbe2;
  background-color: #f6f7f9;
  font-weight: 600;
  color: #203040;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.home-plan__radio input:checked + span {
  border-color: #b68c44;
  background-color: #fff6e6;
  box-shadow: 0 0.3rem 0.8rem rgba(182, 140, 68, 0.25);
}

.home-plan__radio:hover span {
  border-color: #b68c44;
}

.home-plan__cta {
  width: 100%;
  height: 2.8rem;
  border-radius: 0.7rem;
  font-size: 1rem;
  font-weight: 600;
}

.home-plan__cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.home-plan--compact .home-plan__media {
  display: flex;
  justify-content: center;
}

.home-plan--compact .home-plan__content {
  flex-direction: column;
  align-items: stretch;
}

.home-plan--compact .home-plan__media img {
  margin: 0 auto;
}

.home-plan--compact .home-plan__options {
  width: 100%;
}

.home-plan--compact .home-plan__radios {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-plan--compact .home-plan__cta {
  width: 100%;
}

.home-plan__note {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #6a7686;
}

@media (max-width: 900px) {
  .home-plan {
    padding: 1.2rem;
  }

  .home-plan__content {
    flex-direction: column;
  }

  .home-plan__media img {
    width: 100%;
    max-width: 12rem;
  }

  .home-plan__options {
    width: 100%;
  }
}

.home-why__grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 1rem;
}

.home-why__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.home-why__icon {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 1.4rem;
  background: #dce5d8;
  color: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.08);
}

.home-why__icon i {
  font-size: 1.8rem;
}

.home-why__text h3 {
  display: inline-block;
  margin: 0 0 0.6rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background-color: #dce5d8;
  color: #2b2b2b;
  font-size: 1rem;
}

.home-why h1 {
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  margin-top: 0;
}

.home-why {
  padding: 1.4rem 1.5rem 1.6rem;
}

.home-delivery-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0.35rem 0.6rem;
  border-radius: 0.6rem;
  gap: 0.5rem;
  background: #fff4e6;
  color: #7a3e10;
  font-weight: 400;
  font-size: 0.9rem;
  border: 1px solid #f0c9a7;
  box-shadow: none;
  margin-bottom: 0.5rem;
}

.home-delivery-date {
  margin-left: 0.3rem;
  font-weight: 600;
}

.home-free-delivery {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.6rem;
  border-radius: 0.6rem;
  background: #eef5ff;
  color: #203040;
  font-size: 0.9rem;
  border: 1px solid #d6e3f5;
}

.home-free-delivery--sidebar {
  display: inline-flex;
}

.home-free-delivery--mobile {
  display: none;
}

.home-free-delivery--sidebar {
  display: inline-flex;
}

.home-free-delivery--mobile {
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .home-free-delivery--mobile {
    display: inline-flex;
  }

  .home-free-delivery--sidebar {
    display: none;
  }

  .home-delivery-compact {
    gap: 0.2rem;
    margin-top: 0.3rem;
  }

  .home-intro-text p {
    font-size: 0.92rem;
    line-height: 1.3;
  }

  .home-intro__lead {
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 0.2em;
  }

  .home-free-delivery--mobile {
    margin: 0;
    padding: 0.25rem 0.45rem;
    font-size: 0.78rem;
    gap: 0.35rem;
    width: auto;
    justify-content: center;
    text-align: center;
  }

  .home-free-delivery--mobile i {
    font-size: 1rem;
  }

  .home-delivery-pill {
    margin: 0;
    padding: 0.2rem 0.45rem;
    font-size: 0.75rem;
    letter-spacing: 0;
  }

  .home-free-delivery__full,
  .home-delivery-label--full {
    display: none;
  }

  .home-free-delivery__short,
  .home-delivery-label--short {
    display: inline;
  }
}
.home-free-delivery i {
  color: #2b5aa5;
  font-size: 1.5rem;
  line-height: 1;
}

.home-delivery-pill i {
  color: #c06422;
  font-size: 1.5rem;
  line-height: 1;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 0.08rem solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

.mobile-nav-toggle--header {
  display: inline-flex;
}

@media (min-width: 901px) {
  .mobile-nav-toggle {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-nav__action--desktop {
    display: none;
  }
}

.mobile-nav-toggle__icon {
  width: 1.2rem;
  height: 0.12rem;
  background: #ffffff;
  display: block;
  position: relative;
}

.mobile-nav-toggle__icon::before,
.mobile-nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.2rem;
  height: 0.12rem;
  background: #ffffff;
}

.mobile-nav-toggle__icon::before {
  top: -0.35rem;
}

.mobile-nav-toggle__icon::after {
  top: 0.35rem;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 9999;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
  text-align: left;
  box-sizing: border-box;
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.mobile-nav__close {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 0.08rem solid #e1e4ea;
  background: #ffffff;
  color: #203040;
  font-size: 1.6rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mobile-nav__close-icon {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
}

.mobile-nav__close-icon::before,
.mobile-nav__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 0.14rem;
  background: #203040;
  transform-origin: center;
}

.mobile-nav__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-open {
  overflow: hidden;
}

.mobile-nav .site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}

.mobile-nav .site-nav__item + .site-nav__item {
  margin-top: 0.8rem;
}

.mobile-nav .site-nav__link {
  color: #203040;
  display: inline-flex;
  font-weight: 600;
  padding: 0.4rem 0;
}

.mobile-nav .site-nav__item.has-sub > .site-nav__link::after {
  display: none;
}

.mobile-nav .site-nav__submenu {
  position: static;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 0.4rem 0 0;
  padding: 0 0 0.6rem;
  list-style: none;
}

.mobile-nav .site-nav__submenu li + li {
  margin-top: 0.35rem;
}

.mobile-nav .site-nav__submenu a {
  color: #203040;
  text-decoration: none;
  display: block;
  padding: 0.2rem 0;
}

.mobile-nav .site-nav__submenu a:hover {
  text-decoration: underline;
}

.home-why__text p {
  margin: 0;
  color: #4b5a6b;
}

@media (max-width: 720px) {
  .home-why__item {
    flex-direction: column;
  }

  .home-why__icon {
    width: 4.2rem;
    height: 4.2rem;
  }
}

.home-gallery {
  display: block;
  padding: 0.4rem;
  background-color: #ffffff;
  border: 0.08rem solid #e1e4ea;
  border-radius: 0.9rem;
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.1);
}

.home-gallery-mobile {
  display: none;
}

.home-video-mobile {
  display: none;
}

.home-gallery .home-feature {
  height: auto;
  margin-bottom: 0;
  border-radius: 0.6rem;
  box-shadow: none;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.home-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.home-gallery__thumbs img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .home-gallery {
    padding: 0.35rem;
  }

  .home-gallery-mobile {
    display: block;
    margin-top: 0.9rem;
    margin-bottom: 0.9rem;
  }

  .home-video-mobile {
    display: block;
    margin-bottom: 0.9rem;
  }

  .home-sidebar .home-gallery {
    display: none;
  }

  .home-sidebar .videoContainerCell {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-gallery {
    padding: 0.3rem;
  }
}

.home-feature {
  display: block;
  width: 100%;
  border-radius: 0.8rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
}

.home-carousel img {
  border-radius: 0.6rem;
}

.home-sidebar .videoContainerCell iframe {
  border-radius: 0.6rem;
}

.home-sidebar .boxRounded {
  background-color: #ffffff;
  border: 0.08rem solid #e1e4ea;
  border-radius: 0.8rem;
  padding: 1rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.08);
}

.home-sidebar h1 {
  font-size: 1.2rem;
}

.home-sidebar h1,
.home-sidebar h2,
.home-sidebar h3 {
  font-family: "Sora", sans-serif;
}

.home-sidebar td {
  font-size: 0.9rem;
}

.hero-media {
  width: 100%;
}

.hero-media-cell {
  width: 100%;
}

.render-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.shelfbuilder-render-cell .render-wrap {
  max-width: 610px;
}

.render-panel {
  border-radius: 10px;
  border: 1px solid #e1e4ea;
  overflow: hidden;
  background-color: #fff;
}

.shelfbuilder-bays--empty .render-panel {
  min-height: 320px;
  display: flex;
  align-items: center;
}

.render-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.render-image {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.shelfbuilder-render-cell .render-image {
  width: 610px;
  max-width: 100%;
}

@media (max-width: 768px) {
  .shelfbuilder-bays--empty .render-panel {
    min-height: 0;
  }
}

.shelfbuilder-bays--empty .render-wrap {
  aspect-ratio: 610 / 320;
}

.shelfbuilder-bays--empty .render-wrap img {
  height: 100%;
  object-fit: contain;
}

.render-dimensions {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(255, 255, 255, 0.95);
  border: 0.08rem solid #d6dbe2;
  border-radius: 0.5rem;
  padding: 0.45rem 0.6rem;
  font-size: 0.8rem;
  color: #203040;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.12);
}

.render-dimensions__title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.shelfbuilder-bays--empty .bay-onboarding-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 10;
  pointer-events: none;
}

.bay-config-wrap {
  position: relative;
  max-width: 100%;
  width: 100%;
  display: block;
  box-sizing: border-box;
  border: 1px solid #e1e4ea;
  border-radius: 10px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.12);
}

.bay-strip-grid {
  --bay-header-row: 1.9rem;
  --bay-value-row: 2.05rem;
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.5rem;
  align-items: start;
  min-width: 0;
}

.bay-strip-labels {
  display: grid;
  grid-template-rows: var(--bay-header-row) repeat(4, var(--bay-value-row));
  gap: 0.25rem;
}

.bay-strip-labels__spacer {
  height: var(--bay-header-row);
}

.bay-strip-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.78rem;
  color: #203040;
  padding: 0.2rem 0.1rem;
}

.bay-strip-scroll {
  overflow-x: auto;
  overflow-y: visible;
  max-width: 100%;
  min-width: 0;
  position: relative;
  isolation: isolate;
}

.bay-strip-columns {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  width: max-content;
  min-width: 100%;
}

.bay-col {
  width: 8.5rem;
  min-width: 8.5rem;
  border: 1px solid #e1e4ea;
  border-radius: 0.6rem;
  background-color: #fff;
  padding: 0.5rem;
  display: grid;
  grid-template-rows: var(--bay-header-row) repeat(4, var(--bay-value-row));
  gap: 0.25rem;
}

.bay-col--new {
  background-color: #f7f9ff;
  border-color: #b8c7ea;
}

.bay-col--flash {
  animation: bayBoxHighlight 1.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes bayBoxHighlight {
  0% {
    background-color: #fff7e6;
    border-color: #e7b95e;
    box-shadow: 0 0 0 0.14rem rgba(231, 185, 94, 0.16);
  }
  55% {
    background-color: #fffaf1;
    border-color: #edd3a1;
    box-shadow: 0 0 0 0.08rem rgba(231, 185, 94, 0.1);
  }
  100% {
    background-color: #ffffff;
    border-color: #e1e4ea;
    box-shadow: none;
  }
}

.bay-col__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--bay-header-row);
}

.bay-col__cell {
  display: flex;
  align-items: center;
  min-height: var(--bay-value-row);
}

.bay-col select {
  width: 100%;
  min-width: 0;
  height: 1.9rem;
  padding: 0.22rem 0.35rem;
  line-height: 1.1;
  font-size: 0.84rem;
  box-sizing: border-box;
}

.bay-col .depth-value {
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 1.9rem;
  padding: 0.25rem 0.4rem;
  border: 1px solid #d3d8e2;
  border-radius: 8px;
  background: #f2f4f8;
  color: #667085;
  font-size: 0.84rem;
  box-sizing: border-box;
}

.bay-col__cell--depth {
  opacity: 0.95;
}

.bay-onboarding-inline {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: fit-content;
  max-width: calc(100% - 0.35rem);
  margin: 0 0 0.7rem 0;
  background: #203040;
  color: #ffffff;
  border-radius: 0.5rem;
  border: 0.08rem solid #203040;
  padding: 0.45rem 0.65rem;
  font-size: 0.92rem;
  line-height: 1.3;
  text-align: left;
  font-weight: 600;
  z-index: 6;
  animation: bayTooltipPulse 1.9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.bay-onboarding-inline__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  margin: 0 0 0.2rem 0;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bay-onboarding-inline__text {
  display: block;
}

.bay-onboarding-inline::after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(6.5rem + 0.5rem + 1rem);
  border-width: 0.45rem 0.45rem 0;
  border-style: solid;
  border-color: #203040 transparent transparent;
}

@keyframes bayTooltipPulse {
  0% {
    box-shadow: 0 0.5rem 1rem rgba(32, 48, 64, 0.22), 0 0 0 0 rgba(32, 48, 64, 0);
  }
  50% {
    box-shadow: 0 0.6rem 1.2rem rgba(32, 48, 64, 0.26), 0 0 0 0.22rem rgba(32, 48, 64, 0.45);
  }
  100% {
    box-shadow: 0 0.5rem 1rem rgba(32, 48, 64, 0.22), 0 0 0 0 rgba(32, 48, 64, 0);
  }
}

@media (max-width: 768px) {
  .bay-strip-grid {
    grid-template-columns: 5.8rem 1fr;
    gap: 0.4rem;
  }

  .bay-col {
    width: 8rem;
    min-width: 8rem;
  }

  .bay-strip-label {
    font-size: 0.72rem;
  }

  .bay-onboarding-inline {
    max-width: calc(100% - 0.3rem);
    font-size: 0.84rem;
    margin-left: 0;
  }

  .bay-onboarding-inline::after {
    left: calc(5.8rem + 0.4rem + 0.9rem);
  }

}

@media (prefers-reduced-motion: reduce) {
  .bay-onboarding-inline {
    animation: none;
  }
}

.shelfbuilder-bays--empty .shelfbuilder-bay-input-cell,
.shelfbuilder-bays--empty .bay-config-wrap {
  position: relative;
  z-index: 20;
}

body.shelfbuilder-bays {
  overflow-x: hidden;
}

.faq-title {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.shelfbuilder-faq li,
.shelfbuilder-faq ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.shelfbuilder-faq li {
  margin: 0.45rem 0;
}

.shelfbuilder-faq li > a {
  display: inline-block;
  margin-bottom: 0.25rem;
}

.shelfbuilder-faq ul {
  margin: 0.35rem 0 0.6rem;
}

.shelfbuilder-divider hr {
  margin: 1.6rem 0;
}

.bay-remove {
  background: transparent;
  border: 0;
  color: #b23b3b;
  cursor: pointer;
  margin-left: 0.35rem;
  font-size: 0.8rem;
  vertical-align: middle;
  padding: 0;
}

.bay-remove:hover {
  color: #8e2d2d;
}

.bay-label {
  font-weight: 600;
  white-space: nowrap;
}

.depth-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.85rem;
  height: 0.85rem;
  margin: 0;
  border-radius: 999px;
  background: #455565;
  color: #ffffff;
  border: 0;
  font-size: 0.5rem;
  cursor: pointer;
  position: relative;
}

.depth-info::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  top: 120%;
  transform: none;
  background: #203040;
  color: #ffffff;
  padding: 0.4rem 0.55rem;
  border-radius: 0.4rem;
  font-size: 0.75rem;
  line-height: 1.2;
  width: 13rem;
  text-align: left;
  white-space: pre-line;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 20;
}

.depth-info:hover::after,
.depth-info:focus::after {
  opacity: 1;
}
@media (max-width: 900px) {
  .site-header-shell tr:first-child > td,
  .site-header-shell .site-header__inner td[height] {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
  }

  .site-header__inner {
    min-height: 0;
  }

  .site-header-shell > tbody > tr:last-child {
    display: none;
  }

  .site-header-shell > tbody > tr:last-child td {
    height: 0 !important;
    padding: 0 !important;
  }

  .side-menu-cell,
  .side-menu-cell + td {
    display: block;
    width: 100% !important;
  }

  .site-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .side-menu-cell {
    margin-bottom: 0.75rem;
  }

  .mainTable {
    max-width: 100%;
    padding-top: 0;
    margin-top: 0;
  }

  .pageTitle {
    padding: 0.3rem 0.45rem;
    margin: 0 0 0.45rem 0;
    min-height: 0;
  }

  .pageTitle h1,
  .pageTitle h2,
  .pageTitle h3 {
    margin: 0;
    font-size: 1.16rem;
    line-height: 1.2;
  }

  .components-title,
  .invoice-page__title {
    margin-bottom: 0.7rem;
  }

  .data-section-header {
    padding: 0.3rem 0.5rem;
    margin-bottom: 0.45rem;
  }

  .data-section-header h3 {
    font-size: 0.95rem;
  }

  .components-card,
  .components-section,
  .product-detail-section,
  .checkout-page .checkout-card,
  .account-card,
  .sample-form-card,
  .specs-card,
  .about-card,
  .delivery-card {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.85rem;
  }

  .mainTable > tbody > tr,
  .mainTable > tbody > tr > td {
    display: block;
    width: 100% !important;
  }

  .site-shell-inner > tbody > tr > td {
    padding-top: 0;
  }

  .mainTable td[height],
  .mainTable table[height] {
    height: auto !important;
  }

  .home-sidebar {
    margin-top: 1rem;
  }

  .home-sidebar table {
    width: 100%;
  }

  .site-shell-inner > tbody > tr > td {
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .topMenu {
    height: auto;
  }

.topMenu td {
  vertical-align: middle;
}

  .topMenu td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.2rem 0;
  }

  .headerLogo {
    display: block;
    margin: 0.25rem auto;
    max-width: 155px;
  }


  .site-header__inner tr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .site-header__inner td {
    display: flex;
    align-items: center;
    width: auto;
    text-align: left;
  }

  .topMenu td {
    justify-content: flex-start;
  }

  .topMenu td.whiteText {
    justify-content: space-between;
    width: 100%;
    padding-right: 0;
    gap: 0.6rem;
  }

  .topMenu td.whiteText {
    padding-right: 0 !important;
  }

  .site-header__meta {
    align-items: flex-end;
  }

  .site-header__mobile-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .site-header__phone {
    margin-left: auto;
    text-align: right;
  }

  .site-nav__action--mobile {
    font-size: 0.8rem;
    padding: 0.25rem 0.4rem;
  }

  .headerLogo {
    margin: 0;
  }

  #socialmedialinks {
    text-align: center;
    padding: 0.4rem 0;
  }

  #socialmedialinks li {
    padding-right: 0.4rem;
  }

  .videoContainerCell {
    width: 100%;
    height: auto;
  }

  .videoContainerCell iframe {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .imageOuterContainer {
    width: 100%;
    height: auto;
    top: 0;
  }

  .imageBannerTextContainer {
    bottom: 0;
  }

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

  .home-intro-text {
    margin-bottom: 0.7rem;
    padding: 0.65rem 0.75rem;
  }

  .home-plan {
    padding: 0.9rem 1rem;
    border-radius: 0.8rem;
  }

  .home-plan__lead {
    margin-bottom: 0.6rem;
    font-size: 0.92rem;
  }

  .home-plan__content {
    gap: 0.7rem;
  }

  .home-why {
    margin-top: 0.6rem;
  }

  .home-why h1 {
    margin-bottom: 0.45rem;
    font-size: 1.2rem;
  }

  .home-why__item {
    padding: 0.55rem 0.6rem;
  }

  .home-gallery-mobile {
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
  }

  .home-video-mobile {
    margin-bottom: 0.6rem;
  }
}

@media (max-width: 640px) {
  body,
  td,
  p {
    font-size: 0.86rem;
  }

  h1 {
    font-size: 1.3em;
    line-height: 1.2em;
  }

  h3 {
    font-size: 0.96em;
  }

  .site-header__inner {
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }

  .mainTable {
    padding-left: 0.55rem;
    padding-right: 0.55rem;
    padding-bottom: 0.85rem;
  }

  .pageTitle {
    padding: 0.2rem 0.35rem;
    margin-bottom: 0.35rem;
  }

  .pageTitle h1,
  .pageTitle h2,
  .pageTitle h3 {
    font-size: 1.06rem;
    line-height: 1.18;
  }

  .data-section-header {
    padding: 0.22rem 0.4rem;
    margin-bottom: 0.35rem;
  }

  .data-section-header h3 {
    font-size: 0.9rem;
  }

  .components-card,
  .components-section,
  .product-detail-section,
  .checkout-page .checkout-card,
  .account-card,
  .sample-form-card,
  .specs-card,
  .about-card,
  .delivery-card {
    padding-top: 0.62rem;
    padding-bottom: 0.62rem;
    margin-bottom: 0.72rem;
  }

  .topMenu td.whiteText {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    flex-wrap: nowrap;
  }

  .site-header__mobile-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 0;
  }

  .site-nav__action--mobile {
    font-size: 0.77rem;
    padding: 0.2rem 0.32rem;
    white-space: nowrap;
  }

  .site-header__phone {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1;
    white-space: nowrap;
  }

  .home-intro__lead {
    font-size: 1.15rem;
  }

  .home-intro-text {
    padding: 0.55rem 0.65rem;
    margin-bottom: 0.55rem;
  }

  .home-plan {
    padding: 0.75rem 0.8rem;
  }

  .home-why__item {
    padding: 0.45rem 0.5rem;
  }

  .site-footer__inner {
    padding: 1.2rem 0.95rem;
  }

  .anchor-button-primary,
  .anchor-button-secondary,
  .anchor-button-tertiary {
    width: 100%;
    box-sizing: border-box;
  }

  .shelfbuilder-cta-stack td {
    display: block;
    width: 100%;
    text-align: left;
  }

  .shelfbuilder-cta-stack td + td {
    margin-top: 0.75rem;
  }

  .shelfbuilder-cta-stack tr {
    display: block;
  }

  .site-footer__inner {
    padding: 1.6rem 1.2rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}