/* ============================================================
   Bench Configurator — configurator.css
   Versatile Spaces · Hybrid Bench Configurator
   ============================================================ */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  /* Brand */
  --brand-blue:        #025396;
  --brand-blue-light:  #1A5DAF;
  --brand-gold:        #F6B409;
  --brand-gold-light:  #F5C044;
  --brand-gold-pale:   #FFF8E7;

  /* Surface */
  --surface:           #F7F6F3;
  --white:             #FFFFFF;

  /* Text */
  --text-primary:      #1A1A1A;
  --text-secondary:    #777;
  --text-muted:        #777;

  /* UI */
  --border:            #E2E0DB;
  --success:           #4DBCB3;

  /* Shape */
  --radius:            4px;
  --radius-lg:         14px;
  --radius-xl:         20px;

  /* Elevation */
  --shadow-card:       0 2px 8px rgba(0,0,0,0.06),
                       0 8px 24px rgba(0,0,0,0.04);

  /* Motion */
  --transition:        0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base ────────────────────────────────────────────────── */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   LAYOUT WRAPPERS
   ============================================================ */

/* Outer wrap — scopes all styles safely inside WP/Elementor */
.bench-configurator-wrap,
.bench-preview-wrap {
  font-family: "Archivo", sans-serif !important;
  color: var(--text-primary);
  line-height: 1.6;
}

/* Hide any prototype chrome — WP theme handles these */
.bench-configurator-wrap .topbar,
.bench-configurator-wrap .breadcrumb {
  display: none;
}

/* ── Steps Panel ─────────────────────────────────────────── */
.steps-panel {
  padding-top: 8px;
}

/* ── Preview Panel ───────────────────────────────────────── */
.preview-panel {
  position: sticky;
  top: 24px;
}

/* ============================================================
   PRODUCT TITLE ROW
   ============================================================ */

.product-title-row {
  margin-bottom: 24px;
}

.variant-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--brand-blue);
  background: var(--brand-gold-pale);
  border: 1px solid rgba(232, 163, 23, 0.3);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.product-title {
  font-family: Inter;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	color: var(--brand-blue);
}

.product-sku {
    font-size: 22px;
    color: var(--Blue-1, #025396);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 15px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--brand-blue);
  margin-top: 16px;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-family: "Inter", sans-serif;
}

.product-price .gst {
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--brand-blue);
}

.final-price-display {
    font-family: "Inter", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--brand-blue);
    margin: 20px 0px;
}

.final-price-display .gst {
  	font-family: "Inter", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--brand-blue);
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--brand-blue);
}

.qty-btn:hover { background: var(--brand-blue); }

.qty-input {
  width: 44px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-blue);
}

.final-price-display {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-blue);
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: none;
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  width: 55px;
  height: 45px;
  border-radius: 4px;
  border: 1px solid var(--Teal, #4DBCB3);
  background: var(--Gradient-BG, linear-gradient(81deg, #E7F0FF 9.01%, rgba(232, 241, 255, 0.47) 89.11%));
  font-size: 18px;
  cursor: pointer;
  color: var(--brand-blue);
}

.qty-btn:hover { background: var(--brand-blue); }

.qty-input {
  width: 80px !important;
  height: 45px !important;
  text-align: center;
  border: none !important;
  border-left: 1.5px solid #F4F5F7;
  border-right: 1.5px solid #F4F5F7;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-blue);
}

/* ============================================================
   STEPPER
   ============================================================ */

.stepper-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
}

.step-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: var(--transition);
}

.step-dot.completed { background: var(--success); }
.step-dot.active    { background: var(--brand-blue); }

/* ============================================================
   STEPS
   ============================================================ */

.step {
  display: none;
  animation: fadeUp 0.3s ease;
}

.step.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-label {
  	color: var(--Yellow, #F6B409);
	/* T4 */
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-bottom:20px;
}

.step-title {
	font-size: 24px;
	color: var(--Blue-1, #025396);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.step-subtitle {
  	font-family: Archivo;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	color: var(--Blue-1, #025396);
	margin: 25px 0px;
}

/* ============================================================
   PREVIEW CARD
   ============================================================ */

.preview-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 0.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.preview-header {
  padding: 20px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-blue);
  background: rgba(11, 61, 122, 0.06);
  padding: 8px 20px;
  border-radius: 4px;
  font-family: "Archivo", sans-serif !important;
	
}

.preview-svg-wrap{padding:20px 12px;min-height:160px;overflow:hidden;}

.preview-svg-wrap svg{display:block !important;width:100% !important;height:350px !important;}

.preview-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 24px 18px;
  border-top: 0.5px solid var(--border);
}

.preview-tag {
  font-size: 13px;
  font-weight: 500;
  color: #104975;
/* background: var(--surface); */
  padding: 5px 12px;
  border-radius: 4px;
}

.preview-tag.active {
  background: var(--brand-gold-pale);
  color: var(--brand-blue);
  border: 0.5px solid rgba(232, 163, 23, 0.25);
}

/* ============================================================
   BAY SELECTOR
   ============================================================ */

.bay-selector {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.bay-block {
  flex: 1;
  min-width: 58px;
  max-width: 120px;
  padding: 5px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  user-select: none;
}

.bay-block-icon {
  width: 28px;
  height: 23px !important;
  display: block;
  margin: 0 auto 4px;
}

.bay-block:hover {
  border-color: var(--brand-blue-light);
  background: var(--white);
}

.bay-block.bay-active {
  border-color: var(--brand-blue);
  background: var(--white);
/*   box-shadow: 0 0 0 1px var(--brand-blue), var(--shadow-card); */
}

.bay-block.bay-partial  { border-color: var(--brand-gold); }

.bay-block.bay-partial .bay-block-num, .bay-block.bay-partial .bay-block-status { color: var(--brand-gold) !important; }

.bay-block.bay-complete {
  border-color: var(--success);
  background: rgba(29, 158, 117, 0.04);
}

.bay-block-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.bay-block.bay-active   .bay-block-num { color: var(--brand-blue); }

.bay-block-status {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 3px;
}

.bay-block.bay-partial  .bay-block-status { color: var(--brand-gold); }
.bay-block.bay-complete .bay-block-status { color: var(--success); }
.bay-block.bay-complete .bay-block-num, .bay-block.bay-complete .bay-block-status { color: var(--success) !important; }
.bay-block.bay-active   .bay-block-status { color: var(--brand-blue-light); }

/* ============================================================
   COPY BAY ROW
   ============================================================ */

.copy-bay-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 9px 14px;
  background: var(--brand-gold-pale);
  border: 0.5px solid rgba(232, 163, 23, 0.3);
  border-radius: var(--radius);
  font-size: 12px;
}

.copy-bay-icon {
    font-size: 16px;
    opacity: 0.8;
    color: #104975;
}

.copy-bay-label {
  color: #104975;
  flex-shrink: 0;
  white-space: nowrap;
  font-size:16px;	
}

.copy-bay-select {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-family: inherit;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--text-primary);
  cursor: pointer;
}

.copy-bay-btn {
  flex-shrink: 0;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  background: var(--brand-blue);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.copy-bay-btn:hover { background: var(--brand-blue-light); }

/* ============================================================
   DRAWER ACCORDION
   ============================================================ */

.drawer-accordion {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-row {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.drawer-row.active-row {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 1px var(--brand-blue);
}

.drawer-row-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}

.drawer-row-header:hover { background: var(--surface); }

.drawer-row-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.drawer-row.active-row .drawer-row-num {
  background: var(--brand-gold);
  color: var(--brand-blue);
}

.drawer-row-info {
  flex: 1;
  min-width: 0;
}

.drawer-row-layout-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 2;
}

.drawer-row.completed .drawer-row-layout-name,
.drawer-row.completed .drawer-row-colour-name
{
	color: var(--brand-blue);
}

.drawer-row-colour-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.drawer-row-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.drawer-row-chevron {
  flex-shrink: 0;
  color: #025396;
  transition: transform 0.25s;
  width:20px;
  height:20px;
}

.drawer-row.open .drawer-row-chevron { transform: rotate(180deg); }

/* Accordion body — smooth open/close */
.drawer-row-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-row.open .drawer-row-body { max-height: 1200px; }

.drawer-row-body-inner {
  padding: 4px 12px 14px;
  border-top: 0.5px solid var(--border);
}

/* ============================================================
   SECTION LABELS
   ============================================================ */

.section-label-sm {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 12px 0 8px;
}

.section-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0 8px;
}

.section-label-row .section-label-sm { margin: 0; }

.section-sep {
  border: none;
  border-top: 1.5px solid var(--border);
  margin: 20px 0 0;
}

/* ============================================================
   COLOUR PICKER
   ============================================================ */

.colour-addon-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.colour-packages {
  display: flex;
  flex-direction: column;
  gap: 8px;
	margin-bottom:10px;
}

.colour-pkg-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.colour-swatches-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.colour-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}

.colour-swatch:hover { transform: scale(1.18); }

.colour-swatch.selected {
  box-shadow: 0 0 0 2px var(--white),
              0 0 0 4px var(--brand-blue);
}

.colour-swatch.is-default {
  border: 2px dashed #C8C4BA !important;
}

/* ============================================================
   LAYOUT PICKER
   ============================================================ */

/* Tab switcher — Divider Kits / PodSerts */
.layout-type-tabs {
  display: flex;
  margin-bottom: 8px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.layout-type-tab {
  flex: 1;
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  background: white;
  border: none;
  cursor: pointer;
  color: #104975;
  line-height: 1.3;
  transition: var(--transition);
}

.layout-type-tab:not(:last-child) { border-right: 1px solid var(--border); }

.layout-type-tab.ltt-active {
  background: var(--brand-blue);
  color: var(--white);
}

.layout-type-tab:hover:not(.ltt-active) {
  background: #F0EEEB;
  color: var(--text-primary);
}

[type=button]:focus, [type=submit]:focus, button:focus {
    background-color: var(--brand-blue) !important;
	background: var(--brand-blue) !important;
    outline: none !important;
}

/* Help button */
.layout-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px !important;
  font-weight: 500 !important;
  font-family: inherit;
  color: var(--brand-blue);
  background: none;
  border: 1px solid rgba(11, 61, 122, 0.2);
  border-radius: 20px;
  padding: 2px 9px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.layout-help-btn:hover { background: rgba(11, 61, 122, 0.05);    color: var(--brand-blue); }
.layout-help-btn svg   { flex-shrink: 0; }

/* Help panel */
.layout-help-panel {
  display: none;
  background: #F4F7FC;
  border: 1px solid rgba(11, 61, 122, 0.15);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 10px;
  animation: fadeUp 0.2s ease;
}

.layout-help-panel.open { display: block; }

.layout-help-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.layout-help-panel-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-blue);
}

.layout-help-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1;
  padding: 0 2px;
}

.layout-help-close:hover { color: var(--text-primary); }

.layout-help-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.layout-help-col {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 10px;
}

.layout-help-col svg {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 8px;
  border-radius: 4px;
}

.layout-help-col p {
  font-size: 14px;
  color: #104975;
  line-height: 1.5;
}

.help-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 10px;
  margin-bottom: 5px;
}

.dk-col .help-tag {
  background: rgba(11, 61, 122, 0.08);
  color: var(--brand-blue);
}

.ps-col .help-tag {
  background: rgba(29, 158, 117, 0.1);
  color: var(--success);
}

/* Layout cards grid */
.layout-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 4px;
}

.layout-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 5px 4px 4px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.layout-card:hover {
  border-color: var(--brand-blue-light);
  background: var(--white);
}

.layout-card.selected {
  border-color: var(--brand-blue);
  background: var(--white);
  box-shadow: 0 0 0 1px var(--brand-blue);
}

.layout-card .lc-thumb {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  overflow: hidden;
}

.layout-card .lc-thumb svg { width: 100%; height: 100%; }

.layout-card .lc-sku {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

.layout-card .lc-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-blue);
  margin-top: 1px;
}

/* ============================================================
   ORDER SUMMARY
   ============================================================ */

.summary-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
  max-height: 480px;
  overflow-y: auto;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 13px;
}

.summary-row:last-child { border-bottom: none; }

.summary-row .key { color: var(--text-secondary); font-size:14px;}

.summary-row .val {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text-primary);
	font-size:16px;
}

.summary-section-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 12px 0 4px;
  border-bottom: none !important;
}

.colour-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  color: var(--brand-blue);
  border-radius: 4px;
  background: var(--Yellow, #F6B409);
}

.btn-primary:hover { background: var(--brand-blue); }

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--text-secondary);
}

.btn-secondary:hover { border-color: var(--text-secondary); background: var(--brand-blue); }

.btn-gold {
  background: var(--brand-gold);
  color: var(--brand-blue);
  font-size: 16px;
  padding: 14px 36px;
}

.btn-gold:hover    { background: var(--brand-blue); }
.btn-gold:disabled { opacity: 0.7; cursor: not-allowed; }

/* ============================================================
   REVIEW WARNING
   ============================================================ */

.review-warning {
  display: none;
  background: #FFFBF0;
  border: 1.5px solid rgba(232, 163, 23, 0.45);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 12px;
  animation: fadeUp 0.25s ease;
}

.review-warning.show {
    display: block;
    margin-top: 20px;
}

.review-warning-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #104975;
  margin-bottom: 4px;
}

.review-warning-body {
    font-size: 14px;
    color: #104975;
    line-height: 1.55;
    margin-bottom: 12px;
}

.review-warning-actions { display: flex; gap: 8px; }

.rw-btn-proceed {
   padding: 12px 28px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  background: var(--Yellow, #F6B409);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.rw-btn-proceed:hover { background: var(--brand-blue-light); }

.rw-btn-cancel {
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  cursor: pointer;
  transition: var(--transition);
}

.rw-btn-cancel:hover { border-color: var(--text-secondary); background: var(--brand-blue); }

/* ============================================================
   TOAST
   ============================================================ */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(80px);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .preview-panel {
    position: relative;
    top: 0;
  }

  .layout-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bay-selector { gap: 4px; }

  .bay-block {
    min-width: 75px;
    padding: 7px 5px 6px;
  }

  .bay-block-num   { font-size: 11px; }

  .layout-help-cols {
    grid-template-columns: 1fr;
  }
	
 .product-title {
    font-size: 32px;
  }

  .product-sku {
    font-size: 20px;
  }
	
 .product-price {
    font-size: 28px;
  }
	
 .final-price-display .gst,
 .final-price-display {
    font-size: 24px; 
	margin: 10px 0px; 
 }
 .woocommerce-message {
    margin-bottom: 0px !important;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    padding: 8px 20px 8px 60px;
    justify-content: space-between;
 }
 .woocommerce-message.button wc-forward {
		margin-right: auto;
 }
}