html, body {
  height: auto;
  min-height: 100%;
  overflow-y: auto;
}

:root{
  --bg:#ffffff;
  --text:#111;
  --muted:#555;
  --brand:#0b2a4a;
  --accent:#0066cc;
  --accent-contrast:#fff;
  --card:#f6f7f8;
  --focus:#005fcc; /* Accessible focus colour */
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:var(--bg);color:var(--text);line-height:1.5}
header{background:var(--brand);color:#fff}
.header-inner{max-width:1100px;margin:0 auto;padding:12px 16px;display:flex;align-items:center;gap:12px;justify-content:space-between}

.header-buttons {
  display: flex;
  flex-wrap: wrap;   /* allows buttons to go onto next line */
  gap: 8px;          /* space between buttons (side and top/bottom) */
  margin-left: auto; /* pushes them to the right */
}

nav a{color:#fff;text-decoration:none;margin-right:16px}
nav a[aria-current="page"]{text-decoration:underline}
main {
  max-width: 100%;
  margin: 0 auto;
  padding-inline: clamp(8px, 4vw, 16px);
}

.grid {display: grid;grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
 
}
/* Only affect the product list page */
#productsGrid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 5px; /* ✅ space between product cards */
}




.card{background:var(--card);border:1px solid #000000;border-radius:8px;padding:12px;display:flex;flex-direction:column}
.card img{max-width:100%;height:auto;border-radius:6px}
.btn{display:inline-block;background:var(--accent);color:var(--accent-contrast);padding:10px 14px;border:none;border-radius:6px;cursor:pointer;text-decoration:none;font-weight:600}
.btn.secondary{background:#e9ecef;color:#111;border:1px solid #c9ccd1}
.btn:focus,.link-like:focus, input:focus, select:focus, textarea:focus{outline:3px solid var(--focus);outline-offset:2px}
input, select, textarea{padding:10px;border:2px solid #000000;border-radius:6px;width:100%}
label{display:block;margin-top:10px;margin-bottom: 8px;font-weight:600}
.small{color:var(--muted);font-size:.95rem}
.price{font-weight:700}
/* ======================================
   Skip link – locked appearance (all modes)
   ====================================== */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;

  background-color: #005fcc; /* blue background */
  color: #ffffff;            /* white text */

  padding: 8px 12px;
  font-weight: 700;
  text-decoration: none;

  z-index: 1000;
}

.skip-link:focus,
.skip-link:focus-visible {
  left: 8px;

  outline: 3px solid #ffffff; /* white outline for extra visibility */
  outline-offset: 2px;
}
.summary{background:var(--card);padding:12px;border-radius:8px;border:1px solid #e3e4e6}
.error{color:#b00020}
.error input{border-color:#b00020}
.error-message{color:#b00020;margin-top:6px}
.error-summary{border: 2px solid #000000;background:#fde7eb;padding:12px;border-radius:6px;margin-bottom:16px}
.visually-hidden{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}
footer{max-width:1100px;margin:24px auto;padding:16px;color: var(--text);border-top:1px solid #e3e4e6}
@media (prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}


#floatingContactBtn:focus {
    outline: 3px solid #1aff00; /* bright lime green focus ring */
    outline-offset: 4px;
    background-color: #0f8f00;  /* solid green background */
    color: #ffffff;             /* high contrast text */
}

/* === Product Specification Table === */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid #d5d7da;
  border-radius: 1px;
  overflow: hidden;
  margin-top: 16px;
  font-size: 1rem;
}

.spec-table th {
  background: var(--brand);
  color: #fff;
  text-align: left;
  padding: 12px;
  font-size: 1.1rem;
}

.spec-table td {
  padding: 12px;
  border-bottom: 1px solid #e3e3e3;
}

.spec-table tr:nth-child(even) td {
  background: #f9f9f9;
}

.spec-table tr:hover td {
  background: #eef6ff;
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--muted);
  width: 35%;
}

.spec-table td:last-child {
  color: var(--text);
}

.spec-table:focus-within,
.spec-table td:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
/* Dark mode – Contact Us tables: make row focus yellow */
body.contact-us.dark .spec-table td:focus,
body.contact-us.dark .spec-table td:focus-visible {
  box-shadow: inset 0 0 0 2px #ffdd00
}
/* ==================================================
   Contact Us page – table cell focus (no overlap)
   ================================================== */

.contact-us .spec-table td:focus,
.contact-us .spec-table td:focus-visible {
  outline: none; /* remove overlapping outline */
  box-shadow: inset 0 0 0 2px var(--focus);
}

/*Space around filter*/
#productsGrid {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#colourFilterForm {
  margin-top: 2rem; /* space below the filter */
  margin-bottom: 1rem; /* space below the filter */
  padding: 0.4rem 0;   /* gives the focus ring breathing room */
}



/* Heading for table */
.table-heading {
  margin-top: 24px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
}


/* === Dark Mode Overrides === */
.dark {
  --bg: #0e0e0f;
  --text: #f1f1f1;
  --muted: #bbbbbb;

  --brand: #1c3c62;
  --accent: #0066cc;
  --accent-contrast: #ffffff;

  --card: #1a1b1e;
  --focus: #005fcc;
}


/* --- Floating Vertical Contact Button --- */
#contactUsVertical {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%) rotate(180deg); /* rotates text so it reads bottom→top */
  writing-mode: vertical-rl;                 /* makes text vertical */
  text-orientation: mixed;
  background: var(--accent, #0066cc);
  color: var(--accent-contrast, #fff);
  padding: 3px 3px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0 10px 10px 0;
  text-decoration: none;
  transition: background 0.2s ease;
  z-index: 9999;

}

#contactUsVertical:hover {
    background: #004d99;
}

#contactUsVertical:focus {
    outline: 3px solid var(--focus, #ffbf47);
    outline-offset: 4px;
}


/* Side-by-side layout for the contact tables */
.contact-flex {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 20px;
}

/* Both table containers auto-size */
.table-wrapper,
.new-table-wrapper {
    flex: 0 0 auto;
    width: 370px;
    max-width: 370px;
}

/* Stack tables on small screens */
@media (max-width: 700px) {
    .contact-flex {
        flex-direction: column;   /* stack vertically */
    }

    .table-wrapper,
    .new-table-wrapper {
        max-width: 100%;          /* full width */
        width: 100%;
    }
}

/* === contact tabels Table === */
.C-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid #d5d7da;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 1rem;
  table-layout: fixed;
}

.C-table th {
  background: var(--brand);
  color: #fff;
  text-align: left;
  padding: 12px;
  font-size: 1.1rem;
}

.C-table td {
  padding: 12px;
  border-bottom: 1px solid #e3e3e3;
}


/* Add vertical separator line here */
.C-table td:first-child,
.C-table th:first-child {
  border-right: 1px solid #d5d7da;
}

.C-table tr:nth-child(even) td {
  background: #f9f9f9;
}

.C-table tr:hover td {
  background: #eef6ff;
}

.C-table:focus-within,
.C-table td:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}


/* --- Flags--- */

.Social-image {
    width: 30px;
    height: auto;
    
}

.right-tables .C-table {
  margin-top: 16px;
}

/* ===== Popup Modal ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  
  
}

.modal-content {
  background: var(--card);
  width: auto;
  max-width: 95%;
  height: 90%;
  margin: 20px auto;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  border: 2px solid #000000;   /* light grey border */
  display: flex;
  flex-direction: column;

}
/* Modal border – dark mode */
.dark .modal-content {
  border: 2px solid #ffffff; /* white (example) */
}


#specFrame {
  width: 100%;
  height: 100%;
  border: none;
  flex: 1; /* ✅ fills remaining space below close button */
}



iframe {
  width: 100%;
  height: auto;
}


.modal-header {
  display: flex;
  justify-content: flex-end;
  padding: 6px;
  
border-bottom: 2px solid #000000; /* black divider */
}

/* Modal header divider – dark mode */
.dark .modal-header {
  border-bottom: 2px solid #ffffff; /* white */
}




.modal.open {
  display: block;
}

/* Make the Close Specification button smaller */
#closeSpec {
  font-size: 0.8rem;     /* smaller text */
  padding: 2px 5px;     /* less height & width */
  border: 2px solid #000000;
  
}
/* Modal close button – dark mode */
.dark #closeSpec {
  border: 2px solid #ffffff; /* white border */
}


/* Match "View Product" button styling */
.spec-btn {
  margin-top: 5px;        /* space between buttons */
  width: 100%;            /* make same width as View Product */
  text-align: center;     /* center the text */
}

/* Make all buttons inside product cards uniform */
.card .btn {
  width: 100%;
  margin-top: auto;
  text-align: center;
  border: 2px solid #000000
}

.card .btn + .btn {
  margin-top: 6px;
}

/* Optional: Add a little extra spacing to the spec button */
.spec-btn {
  margin-top: 10px;
}

/* Selected colour variant uses GOV.UK yellow border */
.colourDot[aria-pressed="true"] {
  border-color: #8547C2;       /* inner ring stays purple */
  outline: 3px solid var(--focus); /* outer ring */
  outline-offset: 2px;
}

.colourDot:focus {
    outline: 2px solid var(--focus);
    outline-offset: 2px;
}

/* ===== Colour Swatch gaps ===== */
.colourWrap {
  display: flex;
  flex-wrap: wrap;      /* Allows wrapping on small screens */
  gap: 7px;            /* Space BETWEEN swatches */
  margin: 12px 0;       /* Space ABOVE and BELOW swatches */
  
  /* ✅ SPACE between dots (prevents focus overlap) */
  gap: 12px;

  /* ✅ breathing room above & below */
  margin: 16px 0

}

/* ===== Product page colour dots ===== */
#variantWrap {
  display: flex;
  flex-wrap: wrap;

  /* ✅ enough space for focus outlines */
  gap: 12px;

  /* ✅ breathing room above and below */
  margin: 16px 0;
}



/* === Header Cart Button (matches site theme) === */
.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: #fff; /* same as nav text */
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;

  padding: 6px 10px;
  border-radius: 6px;
}

.cart-button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cart-button:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* Shopping Cart count badge */
#cart-count {
  position: absolute;
  top: -6px;
  right: -8px;

  background: var(--accent);
  color: var(--accent-contrast);

  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;

  padding: 3px 6px;
  border-radius: 999px;

  min-width: 18px;
  text-align: center;

  display: none; /* shown only when items exist */
}

/* difficulty rating */
.star {
  font-size: 1.4rem;
  line-height: 1;
}

/* Colours */
.star.gold  { color: #d4af37; } /* gold */
.star.grey  { color: #b0b0b0; } /* grey */
.star.black { color: #111; }
.star.blue  { color: #0066cc; }
.star.red   { color: #c62828; }

/* === Dark mode fixes for spec table accessibility === */
.dark .spec-table td {
  background: var(--card);
  color: var(--text);
}

.dark .spec-table tr:nth-child(even) td {
  background: #222428; /* subtle contrast from --card */
}

.dark .spec-table tr:hover td {
  background: #283040; /* visible hover, still dark */
}

/* ================================
   CONTACT US – SPEC TABLE OVERRIDE
   Reuses spec-table visual style
   ================================ */

/* Table container behaves like spec card */
.C-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card, #f6f7f8);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin-bottom: 24px;
}

/* Header row – same tone as spec table */
.C-table th {
  background: var(--brand, #0b2a4a);
  color: #fff;
  text-align: left;
  padding: 16px;
  font-weight: 700;
  font-size: 1rem;
}

/* Data rows */
.C-table td {
  padding: 16px;
  vertical-align: top;
  background: #fff;
  border-top: 1px solid #e1e3e5;
  font-size: 1rem;
}

/* First column behaves like spec label */
.C-table tr td:first-child {
  font-weight: 600;
  color: #333;
  width: 30%;
}

/* Second column behaves like spec value */
.C-table tr td:last-child {
  width: 70%;
  color: #111;
}

/* Improve icon alignment */
.C-table td img.Social-image {
  vertical-align: middle;
  margin-right: 8px;
}

/* Spacing for multi-line values */
.C-table td br {
  line-height: 1.6;
}

/* Remove duplicate top borders on first data row */
.C-table tr:first-of-type th {
  border-top: none;
}

/* ================================
   RESPONSIVE – STACK LIKE SPEC TABLE
   ================================ */

@media (max-width: 700px) {
  .C-table,
  .C-table tr,
  .C-table td,
  .C-table th {
    display: block;
    width: 100%;
  }

  .C-table th {
    border-radius: 12px 12px 0 0;
  }

  .C-table tr {
    margin-bottom: 12px;
  }

  .C-table tr td:first-child {
    background: #f0f2f4;
    border-top: none;
  }
}

/* ===============================
   Dark mode form error colours
   =============================== */

.dark .error {
  color: #febbb4; /* Light accessible red */
}

.dark .error-message {
  color: #febbb4;
}

.dark .error input {
  border-color: #febbb4;
}

/* ===============================
   Accessible links in dark mode
   =============================== */

.dark main a,
.dark footer a {
  color: #82b7ff;
}

.dark a:hover,
.dark a:focus {
  color: #ffffff;

}

/* ===============================
   Dark mode error summary
   =============================== */

.dark .error-summary {
  background: #fbacc0;       /* Dark red background */
  border-left-color: #ff6b6b;
   border: 2px solid #000000; 
}

.dark .error-summary,
.dark .error-summary strong,
.dark .error-summary li,
.dark .error-summary a {
  color: #140000;
}

.dark .error-summary a {
  text-decoration: underline;
}

.dark .error-summary a:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* ===============================
   Gindex – Start Task buttons
   =============================== */

.start-task-btn {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 18px;
  text-align: center;
}

/* ===============================
   Gindex – Start Task (grey)
   =============================== */

.start-task-btn {
  background: #0066cc;        /* same as .btn.secondary */
  color: #ffffff;
  border: none;

  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 18px;
  text-align: center;
  text-decoration: none;
}

/* Dark mode – Start Task (grey & accessible) */

.dark .start-task-btn {
  background-color: #0066cc;  /* accessible grey */
  color: #ffffff;
  border-color: none;
}

.dark .start-task-btn:hover {
  background-color: #0066cc;
  color: #ffffff;
}

.dark .start-task-btn:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* ===============================
   Products – View product buttons
   =============================== */

.card .btn {
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 14px;
}

/* Dark mode – product card buttons */

.dark .card .btn {
  background-color: #0066cc;   /* Accessible light blue */
  color: #ffffff;                 /* High contrast text */
  border: 2px solid #ffffff
}





/* ===============================
   Product page – Go to Checkout (grey)
   =============================== */

#productDetail a[href$="checkout.html"] {
  display: inline-block;
  margin-top: 12px;

  background: #e9ecef;        /* same as .btn.secondary */
  color: #111;

  padding: 12px 18px;
  border-radius: 6px;
  border: 2px solid #000000;

  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}

/* Dark mode – Go to Checkout (grey & accessible) */

.dark #productDetail a[href$="checkout.html"] {
  background-color: #d1d5db;  /* light grey with strong contrast */
  color: #000;
  border-color: #ffffff;
}



/* ===============================
   Products – View Specification blue
   =============================== */

.card .spec-btn {
  background: #0066cc;        /* same as secondary buttons */
  color: #ffffff;
  border: 2px solid #000000;
}

/* Dark mode – View Specification */

.dark .card .spec-btn {
  background-color: #0066cc;  
  color: #ffffff;
  border: 2px solid #ffffff;
}

  
/* ===== FORCE INPUT TEXT TO ALWAYS BE BLACK ===== */
input,
textarea,
select {
  color: #000 !important;
  background-color: #fff !important;
}

/* Confirmation page – Return to Task Page button */
.summary .btn.secondary {
  background: #e9ecef;
  color: #111;
  border: 2px solid #000000;
}

/* Dark mode – keep identical appearance */
.dark .summary .btn.secondary {
  background: #e9ecef;
  color: #111;
  border-color: #ffffff;
}

/* Disable hover colour change */
.summary .btn.secondary:hover,
.dark .summary .btn.secondary:hover {
  background: #e9ecef;
  color: #111;
}

/* === Site Navigation Ribbon === */
.site-ribbon {
  background-color: #1f7a1f; /* demo green */
  color: #ffffff;
  font-size: 0.85rem;
}

.ribbon-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6px 16px;

  display: flex;
  flex-wrap: wrap;          /* ✅ keep on one line */
  gap: 12px;
  align-items: center;

  overflow-x: auto;           /* ✅ allow horizontal scroll */
  overflow-y: hidden;
  white-space: nowrap;

  -webkit-overflow-scrolling: touch; /* ✅ smooth scroll on iOS */
}

.ribbon-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
}
  .ribbon-link[aria-current="page"] {
  text-decoration: underline;
}

/* ======================================================
   Ribbon focus – white on green (accessibility fix)
   ====================================================== */

.site-ribbon .ribbon-link:focus,
.site-ribbon .ribbon-link:focus-visible {
  outline: 3px solid #ffffff;   /* white focus ring */
  outline-offset: 2px;
  background-color: transparent; /* avoid green-on-yellow clash */
}


/* ===============================
   Gindex only – Start Task buttons
   No visual change between modes
   =============================== */

/* Normal state */
.task .btn {
  background: var(--accent);
  color: var(--accent-contrast);
}

/* Lock hover & active states */
.task .btn:hover,
.task .btn:active,
.dark .task .btn:hover,
.dark .task .btn:active {
  background: var(--accent);
  color: var(--accent-contrast);
}

/* Keep accessible focus styling */
.task .btn:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/*fix cutting off product grid*/
#productsGrid {
  width: 100%;
  max-width: 100%;
}
.card {
  min-width: 0;
}


#productDetail img {
  max-height: 250px;
  max-width: 250px;
  display: block;
  margin-top: 20px;
  
}

/* ✅ Prevent text overlapping image on zoom */
#productDetail {
  
display: flex;
  flex-wrap: wrap;

  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

/* ✅ Stack image and text instead of overlapping */
@media (max-width: 900px) {
  #productDetail {
    grid-template-columns: 1fr;
  }
}

/* ✅ Checkout page – space between summary and form */
#main .grid {
  gap: 24px;
}
/* ======================================================
   Header-specific focus ring (OVERRIDES global .btn focus)
   ====================================================== */

header .btn:focus,
header .btn:focus-visible,
header a:focus,
header a:focus-visible,
header button:focus,
header button:focus-visible,
header .cart-button:focus,
header .cart-button:focus-visible {
  outline: 3px solid #ffdd00; /* ✅ yellow focus in header */
  outline-offset: 2px;
}

/* Keep the same colour in dark mode */
.dark header .btn:focus,
.dark header .btn:focus-visible,
.dark header a:focus,
.dark header a:focus-visible,
.dark header button:focus,
.dark header button:focus-visible,
.dark header .cart-button:focus,
.dark header .cart-button:focus-visible {
  outline: 3px solid #ffdd00;
}




/* ======================================================
   colour dots border inner and outer ring
   ====================================================== */
.colourDot {
  border: 2px solid #005fcc; /* 🔒 INNER RING – always purple */
}


.colourDot:focus,
.colourDot:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}







/* =====================================
   Checkout – Add to Cart button
   ===================================== */

#addBtn {
  border: 2px solid #000000; /* ✅ black border (light mode) */
}

.dark #addBtn {
  border-color: #ffffff; /* ✅ white border in dark mode */
}


/* ===============================
 Product page – View Specification
 Light mode only (black border)
 =============================== */
#productDetail .spec-btn {
  border: 2px solid #000000; /* black border in light mode */
}

/* ===============================
 Dark mode – View Specification
 =============================== */
.dark #productDetail .spec-btn {
  border: 2px solid #ffffff;
  }
  /* white border in

/* ALWAYS keep Select Site button white in the header */
header .btn,
header button,
header select {
  border: 2px solid #ffffff !important;
}


#checkoutForm input[type="checkbox"] {
  width: 30px;
  height: 30px
}

/* Checkout – Place order button (light mode) */
#checkoutForm button[type="submit"] {
  border: 2px solid #000000;
}

/* Checkout – Place order button (dark mode) */
.dark #checkoutForm button[type="submit"] {
  border: 2px solid #ffffff;
}

/* ===============================
   Product page layout container
   =============================== */
#productPageContainer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 16px;

  /* ✅ The key reflow rules */
  width: 100%;
  overflow-wrap: anywhere;
}

/* =========================================================
   Product page – colour dot strip (ALWAYS light grey)
   ========================================================= */

#variantWrap {
  background-color: #f2f2f2;      /* light grey strip */
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
}

/* Keep it light grey EVEN in dark mode */
body.dark #variantWrap {
  background-color: #f2f2f2;
}

/* =====================================
   Product cards – colour dot strip
   Dark grey in BOTH light & dark mode
===================================== */

.colour-strip {
  background-color: #2b2b2b;   /* dark grey strip */
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #ffffff;

  display: flex;
  align-items: center;
  gap: 12px;

  margin: 12px 0;
}

/* =====================================
   Product cards – colour dot strip
   Dark grey in BOTH light & dark mode
===================================== */

.colour-strip {
  background-color: #f2f2f2;   /* dark grey strip */
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #000000;

  display: flex;
  align-items: center;
  gap: 12px;

  margin: 12px 0;
}

/* Force same colour in dark mode */
body.dark .colour-strip {
  background-color: #f2f2f2;
}

/* Improve contrast on dark background */
.colour-strip .colourDot {
  border-color: #f2f2f2;
}

/* Product cards – LIGHT MODE border */
.card {
  border: 1px solid #7a7a7a; /* black border */
}

/* Product cards – DARK MODE border */
body.dark .card {
  border-color: #ffffff; /* white border */
}

/* Contact Us – match header focus style to table cells */

.contact-us .spec-table th:focus,
.contact-us .spec-table th:focus-visible {
  outline: none; /* remove overlapping outline */
  box-shadow: inset 0 0 0 2px #ffdd00;
}


