/*
Theme Name: GB Gas & Ice by StrandWeb
Theme URI: https://strandweb.co.za/
Author: strandweb
Author URI: https://strandweb.co.za/
Description: Premium WooCommerce-ready WordPress theme for GB Gas & Ice, built by StrandWeb with editable business details, starter pages and conversion-focused templates.
Version: 1.2.55
Requires at least: 6.9
Requires PHP: 8.1
Tested up to: 6.9.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gb-gas-ice
*/

:root {
  --gb-charcoal: #171b1f;
  --gb-ink: #27313a;
  --gb-muted: #5f6b75;
  --gb-line: #dbe1e6;
  --gb-surface: #f7f8f7;
  --gb-white: #ffffff;
  --gb-flame: #e45f2b;
  --gb-ice: #2f8fc9;
  --gb-green: #3f6f49;
  --gb-radius: 6px;
  --gb-shadow: 0 18px 50px rgba(23, 27, 31, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--gb-white);
  color: var(--gb-ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gb-charcoal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gb-flame);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--gb-line);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gb-charcoal);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--gb-radius);
  background: linear-gradient(135deg, var(--gb-flame), var(--gb-ice));
  color: var(--gb-white);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text small {
  color: var(--gb-muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.primary-nav ul,
.footer-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav li {
  position: relative;
}

.primary-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--gb-radius);
  color: var(--gb-ink);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 250px;
  padding: 10px;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  box-shadow: var(--gb-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  background: var(--gb-surface);
  color: var(--gb-charcoal);
}

.header-commerce {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.header-commerce-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 8px 11px;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  color: var(--gb-charcoal);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.header-commerce-link svg {
  width: 20px;
  height: 20px;
  fill: var(--gb-ice);
  flex: 0 0 20px;
}

.header-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gb-flame);
  color: var(--gb-white);
  font-size: 0.72rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  color: var(--gb-charcoal);
  font-size: 1.25rem;
}

.button,
.wp-block-button__link,
button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--gb-charcoal);
  border-radius: var(--gb-radius);
  background: var(--gb-charcoal);
  color: var(--gb-white);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary,
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--gb-charcoal);
}

.hero {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.84) 47%,
      rgba(23, 27, 31, 0.22) 100%
    ),
    url("assets/img/hero-gas-ice.svg") right center/contain no-repeat,
    #f7f8f7;
  color: var(--gb-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: 56px;
  align-items: center;
  padding: clamp(76px, 12vw, 132px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gb-flame);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  color: var(--gb-charcoal);
  line-height: 1.08;
}

.hero h1 {
  max-width: 760px;
  color: var(--gb-white);
  font-size: clamp(2.5rem, 6vw, 5.25rem);
}

.hero p {
  max-width: 700px;
  margin: 0 0 28px;
  color: var(--gb-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--gb-radius);
  background: rgba(255, 255, 255, 0.1);
}

.hero-card h2 {
  color: var(--gb-white);
  font-size: 1.25rem;
}

.hero-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hero-card dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card dd {
  margin: 0;
  color: var(--gb-white);
  font-weight: 800;
}

.section {
  padding: clamp(52px, 8vw, 88px) 0;
}

.section.alt {
  background: var(--gb-surface);
}

.section-header {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-header p {
  margin: 0;
  color: var(--gb-muted);
  font-size: 1.05rem;
}

.category-grid,
.trust-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card,
.trust-card,
.woocommerce ul.products li.product,
.wc-block-grid__product {
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  box-shadow: var(--gb-shadow);
}

.category-card,
.trust-card {
  padding: 24px;
}

.category-card h3,
.trust-card h3 {
  font-size: 1.2rem;
}

.category-card p,
.trust-card p {
  margin: 0 0 18px;
  color: var(--gb-muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li {
  padding-left: 28px;
  background: linear-gradient(#8f98a3, #8f98a3) left 0.72em/14px 3px no-repeat;
}

.contact-band {
  background: var(--gb-charcoal);
  color: var(--gb-white);
}

.contact-band h2,
.contact-band h3 {
  color: var(--gb-white);
}

.contact-band a {
  color: var(--gb-white);
}

.site-main {
  flex: 1;
}

.entry-content > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.site-footer {
  background: var(--gb-charcoal);
  color: rgba(255, 255, 255, 0.78);
  padding: 48px 0 28px;
}

.site-footer h2,
.site-footer h3,
.site-footer a {
  color: var(--gb-white);
}

.site-footer a {
  text-decoration: none;
}

.footer-grid {
  align-items: start;
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  color: var(--gb-ink);
  font: inherit;
}

textarea {
  min-height: 132px;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.woocommerce .site-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
}

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 18px;
  text-align: left;
}

.woocommerce ul.products li.product .price {
  color: var(--gb-green);
  font-weight: 900;
}

.woocommerce ul.products li.product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--gb-radius);
  background: var(--gb-surface);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--gb-charcoal);
  font-size: 1.12rem;
  line-height: 1.25;
}

.woocommerce-notices-wrapper,
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  border-radius: var(--gb-radius);
}

.woocommerce-archive-header {
  margin-bottom: 28px;
}

.shop-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.shop-quick-links a {
  padding: 8px 12px;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  color: var(--gb-charcoal);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.shop-quick-links a:hover {
  border-color: var(--gb-ice);
  color: var(--gb-ice);
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: auto;
  float: none;
}

.woocommerce div.product .product_title {
  color: var(--gb-charcoal);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--gb-green);
  font-size: 1.45rem;
  font-weight: 900;
}

.staging-commerce-note,
.catalogue-commerce-note,
.checkout-support-note {
  padding: 14px 16px;
  border: 1px solid rgba(47, 143, 201, 0.24);
  border-radius: var(--gb-radius);
  background: rgba(47, 143, 201, 0.08);
  color: var(--gb-ink);
  font-size: 0.94rem;
}

.gbgi-catalogue-price {
  display: inline-flex;
  align-items: center;
  min-height: 1.4em;
  color: var(--gb-flame);
  font-weight: 800;
}

.woo-catalogue-actions {
  margin-top: clamp(18px, 2vw, 26px);
}

.checkout-support-note {
  margin: 16px 0;
}

.checkout-support-note p {
  margin: 5px 0 0;
}

.woocommerce table.shop_table,
.woocommerce-cart-form,
.woocommerce-checkout-review-order,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  box-shadow: 0 12px 30px rgba(23, 27, 31, 0.04);
}

.woocommerce table.shop_table {
  overflow: hidden;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce form.checkout {
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  padding: clamp(18px, 3vw, 28px);
  background: var(--gb-surface);
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  min-width: 0;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  grid-column: 2;
}

.woocommerce-checkout #customer_details {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container .select2-selection--single {
  min-height: 46px;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
}

.woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 6px;
  padding: 16px;
  margin: 0;
  list-style: none;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--gb-radius);
  text-decoration: none;
  font-weight: 800;
}

.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a:hover {
  background: var(--gb-surface);
  color: var(--gb-ice);
}

.woocommerce-order {
  display: grid;
  gap: 18px;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    position: absolute;
    inset: 78px 16px auto 16px;
    display: none;
    padding: 14px;
    border: 1px solid var(--gb-line);
    border-radius: var(--gb-radius);
    background: var(--gb-white);
    box-shadow: var(--gb-shadow);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul,
  .footer-nav ul {
    display: grid;
    align-items: stretch;
  }

  .primary-nav .sub-menu {
    position: static;
    min-width: 0;
    margin-top: 6px;
    padding: 0 0 0 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero-grid,
  .split,
  .category-grid,
  .trust-grid,
  .footer-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    display: grid;
  }
}

.hero-kicker {
  display: block;
  color: var(--gb-flame);
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  font-weight: 500;
}

.hero-strong {
  display: block;
  color: var(--gb-charcoal);
  font-size: clamp(2.25rem, 5vw, 4.85rem);
  font-weight: 900;
}

.hero-strong-line {
  display: block;
}

.hero-strong-line--nowrap {
  white-space: nowrap;
}

.service-strip {
  border-top: 1px solid var(--gb-line);
  border-bottom: 1px solid var(--gb-line);
  background: var(--gb-white);
}

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

.service-strip a {
  padding: 18px 14px;
  text-align: center;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 860px) {
  .service-strip .container {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    background: #f7f8f7;
  }
}

/* Light hero card overrides for the Strand Gas-inspired direction. */
.hero-card {
  border-color: var(--gb-line);
  background: rgba(255, 255, 255, 0.92);
}

.hero-card h2 {
  color: var(--gb-charcoal);
}

.hero-card dt {
  color: var(--gb-muted);
}

.hero-card dd,
.hero-card dd a {
  color: var(--gb-charcoal);
}

/* Review and shop polish */
.page-hero {
  padding: clamp(48px, 8vw, 84px) 0;
  background: linear-gradient(
    120deg,
    #f7f8f7,
    #ffffff 58%,
    rgba(47, 143, 201, 0.14)
  );
  border-bottom: 1px solid var(--gb-line);
}
.page-hero .section-header {
  margin-bottom: 0;
}
.shop-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.shop-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}
.shop-panel,
.product-card,
.detail-panel {
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  box-shadow: var(--gb-shadow);
}
.shop-panel {
  padding: 20px;
}
.shop-panel h2,
.shop-panel h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}
.filter-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.filter-list a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--gb-radius);
  background: var(--gb-surface);
  color: var(--gb-ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gb-line);
}
.product-grid,
.product-demo {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-card,
.product-demo article {
  overflow: hidden;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: #fff;
  box-shadow: var(--gb-shadow);
}
.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  background: linear-gradient(
    135deg,
    rgba(228, 95, 43, 0.12),
    rgba(47, 143, 201, 0.18)
  );
}
.product-media svg {
  width: 118px;
  height: 118px;
}
.product-body {
  padding: 18px;
}
.product-body h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}
.product-body p {
  margin: 0 0 14px;
  color: var(--gb-muted);
  font-size: 0.95rem;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--gb-surface);
  color: var(--gb-muted);
  font-size: 0.78rem;
  font-weight: 900;
}
.price {
  color: var(--gb-green);
  font-weight: 900;
}
.product-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}
.detail-panel {
  padding: 24px;
}

.detail-brand-note {
  position: relative;
  overflow: hidden;
  margin: 10px 0 0;
  padding: 0;
}

.detail-brand-note--has-mark {
  min-height: 78px;
  padding: 14px 132px 14px 0;
}

.detail-brand-note > :not(.detail-brand-note-mark) {
  position: relative;
  z-index: 1;
}

.detail-brand-note p {
  margin: 0;
}

.detail-brand-note-mark {
  position: absolute;
  right: 0;
  top: 50%;
  width: clamp(76px, 12vw, 118px);
  max-width: 30%;
  height: auto;
  opacity: 0.12;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}

@media (max-width: 640px) {
  .detail-brand-note--has-mark {
    min-height: 0;
    padding-right: 0;
  }

  .detail-brand-note-mark {
    top: auto;
    bottom: -6px;
    width: 86px;
    opacity: 0.07;
    transform: none;
  }
}

.product-detail-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

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

.product-detail-actions .button {
  min-height: 52px;
  justify-content: center;
  text-align: center;
}

.product-detail-actions .button.enquire {
  border-color: var(--gb-flame);
  background: var(--gb-flame);
  color: var(--gb-white);
}

.product-detail-actions .button.enquire:hover,
.product-detail-actions .button.enquire:focus-visible {
  border-color: var(--gb-ice);
  background: var(--gb-ice);
  color: var(--gb-charcoal);
}

.notice-line {
  padding: 14px 16px;
  border-left: 4px solid var(--gb-flame);
  background: #fff7f3;
  color: var(--gb-ink);
  font-weight: 700;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 30px;
  align-items: start;
}
.contact-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--gb-radius);
  background: rgba(255, 255, 255, 0.08);
}
.contact-card + .contact-card {
  margin-top: 16px;
}
.contact-card p {
  margin-bottom: 0;
}
@media (max-width: 860px) {
  .shop-shell,
  .product-grid,
  .product-demo,
  .product-detail,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
  }
  .shop-toolbar {
    display: grid;
  }
}

/* Logo and refined image-led preview */
.brand-logo {
  width: auto;
  height: 52px;
  display: block;
}
.brand.has-logo {
  gap: 14px;
}
.image-hero {
  background: #f6f4ef;
  overflow: hidden;
}
.image-hero .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: 640px;
  padding: 0;
}
.hero-copy {
  padding: clamp(62px, 8vw, 110px) 0;
}
.hero-photo {
  position: relative;
  min-height: 640px;
  background: url("assets/img/enhanced/hero-products-enhanced.jpg") center/cover
    no-repeat;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(23, 27, 31, 0.18),
    rgba(23, 27, 31, 0.58)
  );
}
.hero-photo .hero-card {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 38px;
  max-width: 520px;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.stat {
  padding: 15px;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: rgba(255, 255, 255, 0.76);
}
.stat strong {
  display: block;
  color: var(--gb-charcoal);
  font-size: 1.15rem;
}
.stat span {
  color: var(--gb-muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}
.category-card.image-card {
  padding: 0;
  overflow: hidden;
}
.category-card.image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.category-card.image-card div {
  padding: 20px;
}
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.product-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}
.product-card.featured img {
  height: 100%;
  aspect-ratio: auto;
}
.shop-cta {
  margin-top: 28px;
  padding: 26px;
  border-radius: var(--gb-radius);
  background: var(--gb-charcoal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.shop-cta h2,
.shop-cta p {
  color: #fff;
  margin-bottom: 0;
}
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.inline-links a {
  border: 1px solid var(--gb-line);
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 800;
}
@media (max-width: 980px) {
  .image-hero .hero-grid,
  .product-card.featured {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    min-height: 430px;
  }
  .stat-row {
    grid-template-columns: 1fr;
  }
  .shop-cta {
    display: grid;
  }
}

/* Final minimal Strand Gas-inspired direction */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --gb-charcoal: #17191c;
  --gb-ink: #20252b;
  --gb-muted: #66717d;
  --gb-line: #e5e8eb;
  --gb-surface: #f8f8f6;
  --gb-white: #ffffff;
  --gb-flame: #e7522e;
  --gb-ice: #22aee4;
  --gb-green: #2f6844;
  --gb-radius: 4px;
  --gb-shadow: none;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  color: var(--gb-ink);
  background: #fff;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
.section-header h2,
.product-body h3 {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid var(--gb-line);
  backdrop-filter: none;
}

.header-inner {
  min-height: 82px;
}

.brand-logo {
  height: 50px;
  max-width: 142px;
  object-fit: contain;
}

.brand-text span {
  font-weight: 800;
}

.primary-nav a {
  background: transparent;
  font-weight: 700;
  padding: 10px 13px;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  background: transparent;
  color: var(--gb-flame);
}

.button,
.wp-block-button__link,
button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  min-height: 42px;
  border-radius: 4px;
  border-color: var(--gb-charcoal);
  background: var(--gb-charcoal);
  color: #fff;
  font-weight: 800;
  box-shadow: none;
}

.button.secondary,
.wp-block-button.is-style-outline .wp-block-button__link,
.button.ghost {
  background: #fff;
  color: var(--gb-charcoal);
}

.button.enquire {
  border-color: var(--gb-flame);
  background: var(--gb-flame);
  color: #fff;
}

.hero,
.image-hero {
  background: #fff;
  color: var(--gb-charcoal);
  border-bottom: 1px solid var(--gb-line);
}

.image-hero .hero-grid,
.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: 560px;
  gap: 52px;
  padding: 0;
}

.hero-copy {
  padding: clamp(58px, 9vw, 108px) 0;
}

.hero h1 {
  color: var(--gb-charcoal);
  font-weight: 800;
  font-size: clamp(3rem, 6.4vw, 6rem);
  line-height: 0.98;
  margin-bottom: 22px;
}

.hero-kicker {
  color: var(--gb-flame);
  font-size: clamp(1.35rem, 2.6vw, 2.35rem);
  font-weight: 500;
}

.hero-strong {
  color: var(--gb-charcoal);
  font-size: clamp(2.85rem, 5.8vw, 5.25rem);
  font-weight: 800;
}

.hero p {
  color: var(--gb-muted);
  max-width: 620px;
  font-size: 1rem;
}

.hero-photo {
  min-height: 560px;
  background: url("assets/img/enhanced/hero-products-enhanced.jpg") center/cover
    no-repeat;
}

.hero-photo::before {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.06),
    rgba(23, 25, 28, 0.36)
  );
}

.hero-photo .hero-card {
  left: 30px;
  right: 30px;
  bottom: 30px;
  max-width: 440px;
}

.hero-card,
.category-card,
.trust-card,
.product-card,
.shop-panel,
.detail-panel {
  box-shadow: none;
  border: 1px solid var(--gb-line);
  border-radius: 4px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.94);
  padding: 22px;
}

.hero-card h2,
.hero-card dd,
.hero-card dd a {
  color: var(--gb-charcoal);
}

.hero-card dt {
  color: var(--gb-muted);
}

.stat-row {
  display: none;
}

.service-strip {
  background: #fff;
  border-top: 0;
  border-bottom: 1px solid var(--gb-line);
}

.service-strip .container {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-strip a {
  color: var(--gb-charcoal);
  padding: 20px 12px;
  border-right: 1px solid var(--gb-line);
}

.service-strip a:last-child {
  border-right: 0;
}

.section {
  padding: clamp(48px, 7vw, 76px) 0;
}

.section.alt,
.page-hero {
  background: var(--gb-surface);
}

.section-header {
  margin-bottom: 28px;
}

.section-header h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.category-grid,
.trust-grid,
.footer-grid {
  gap: 22px;
}

.category-card.image-card img,
.product-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.category-card.image-card div,
.product-body,
.shop-panel,
.detail-panel {
  padding: 20px;
}

.shop-shell {
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 34px;
}

.shop-toolbar {
  align-items: end;
  margin-bottom: 22px;
}

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

.product-card.featured {
  grid-column: span 1;
  display: block;
}

.product-card.featured img {
  height: auto;
  aspect-ratio: 16 / 10;
}

.product-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.product-actions .button {
  flex: 1 1 120px;
}

.shop-cta {
  border-radius: 4px;
  background: var(--gb-charcoal);
  box-shadow: none;
}

.inline-links a,
.pill {
  border-radius: 999px;
  background: var(--gb-surface);
}

.contact-band {
  background: var(--gb-charcoal);
}

@media (max-width: 980px) {
  .image-hero .hero-grid,
  .hero-grid,
  .shop-shell,
  .product-grid,
  .product-demo,
  .product-detail,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 360px;
  }

  .shop-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand-text {
    display: none;
  }
  .service-strip .container {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1,
  .hero-strong {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .hero-strong-line--nowrap {
    white-space: normal;
  }
}

/* Content-complete preview helpers */
.plain-image {
  width: 100%;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  object-fit: cover;
}
.product-card img,
.category-card.image-card img,
.plain-image {
  filter: contrast(1.03) saturate(1.04);
}
.site-header .primary-nav ul {
  flex-wrap: wrap;
}

/* Visual banner and spacing refinement */
.section {
  padding: clamp(58px, 7.5vw, 92px) 0;
}
.section + .section {
  border-top: 1px solid rgba(229, 232, 235, 0.75);
}
.section-header {
  max-width: 820px;
  margin-bottom: 34px;
}
.top-banner {
  position: relative;
  min-height: 210px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #17191c url("assets/img/enhanced/generated-top-banner.png")
    center/cover no-repeat;
  border-bottom: 1px solid var(--gb-line);
}
.top-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(23, 25, 28, 0.82),
    rgba(23, 25, 28, 0.28),
    rgba(23, 25, 28, 0.72)
  );
}
.top-banner .container {
  position: relative;
  z-index: 1;
  padding-block: 42px;
}
.top-banner p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.top-banner h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.85rem, 4vw, 3.25rem);
}
.hero-photo {
  overflow: hidden;
  background: #17191c;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: gbgiHeroSlider 20s infinite;
  filter: contrast(1.06) saturate(1.05);
}
.hero-slider img:nth-child(1) {
  animation-delay: 0s;
}
.hero-slider img:nth-child(2) {
  animation-delay: 5s;
}
.hero-slider img:nth-child(3) {
  animation-delay: 10s;
}
.hero-slider img:nth-child(4) {
  animation-delay: 15s;
}
@keyframes gbgiHeroSlider {
  0%,
  20% {
    opacity: 1;
    transform: scale(1.02);
  }
  25%,
  95% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}
.hero-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.68)
  );
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(23, 25, 28, 0.16);
  backdrop-filter: blur(16px) saturate(1.16);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.34),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}
.product-grid,
.category-grid,
.trust-grid {
  align-items: stretch;
}
.product-card,
.category-card {
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.product-card:hover,
.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(231, 82, 46, 0.36);
  box-shadow: 0 14px 38px rgba(23, 25, 28, 0.08);
}
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(248, 248, 246, 0.96),
      rgba(248, 248, 246, 0.82)
    ),
    url("assets/img/enhanced/generated-top-banner.png") right center/cover
      no-repeat;
}
@media (max-width: 860px) {
  .top-banner {
    min-height: 170px;
  }
  .top-banner .container {
    padding-block: 30px;
  }
  .hero-photo .hero-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 24px;
  }
}

/* Responsive image performance and mobile cropping */
img {
  height: auto;
}
.category-card.image-card img,
.product-card img,
.plain-image,
.image-strip img {
  background: var(--gb-surface);
}
.hero-photo {
  aspect-ratio: 16 / 10;
  min-height: clamp(320px, 42vw, 560px);
}
.top-banner {
  min-height: clamp(160px, 24vw, 230px);
  background-position: center;
}
@media (max-width: 860px) {
  .image-hero .hero-grid,
  .hero-grid {
    gap: 0;
  }
  .hero-photo {
    min-height: 360px;
    aspect-ratio: 4 / 3;
  }
  .hero-slider img {
    object-position: center;
  }
  .top-banner {
    min-height: 150px;
    background-position: center;
  }
  .top-banner h2 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }
  .category-card.image-card img,
  .product-card img {
    aspect-ratio: 5 / 3;
  }
  .plain-image {
    max-height: 380px;
    object-fit: cover;
  }
}
@media (max-width: 520px) {
  .hero-photo {
    min-height: 300px;
    aspect-ratio: 1 / 1;
  }
  .hero-photo .hero-card {
    margin: 16px;
    padding: 18px;
  }
  .top-banner {
    min-height: 132px;
  }
  .top-banner .container {
    padding-block: 24px;
  }
  .category-card.image-card img,
  .product-card img,
  .image-strip img {
    aspect-ratio: 4 / 3;
  }
  .image-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-banner {
    background-image:
      linear-gradient(90deg, rgba(23, 25, 28, 0.82), rgba(23, 25, 28, 0.42)),
      url("assets/img/enhanced/mobile/hero-products-enhanced-mobile.jpg");
  }
  .page-hero {
    background-image:
      linear-gradient(
        90deg,
        rgba(248, 248, 246, 0.97),
        rgba(248, 248, 246, 0.9)
      ),
      url("assets/img/enhanced/mobile/hero-products-enhanced-mobile.jpg");
  }
}

/* Final unique page banners */
.container {
  width: min(1400px, calc(100% - 40px));
}
.top-banner {
  position: relative;
  min-height: clamp(360px, 50vh, 540px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111;
  border-bottom: 0;
}
.top-banner picture,
.top-banner picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.top-banner picture img {
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(1.04);
}
.top-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.74) 0%,
    rgba(0, 0, 0, 0.38) 46%,
    rgba(0, 0, 0, 0.16) 100%
  );
}
.top-banner .container {
  position: relative;
  z-index: 2;
  padding-block: 64px;
}
.top-banner p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}
.top-banner h2 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 1;
  font-weight: 800;
  text-shadow:
    0 4px 18px rgba(0, 0, 0, 0.62),
    0 1px 1px rgba(0, 0, 0, 0.8);
}
.top-banner span {
  display: block;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.66);
}
.page-hero {
  background: #fff;
  border-bottom: 1px solid var(--gb-line);
}
.page-hero::before {
  content: none;
}
.hero-photo {
  background: #111;
}
.hero-photo .hero-slider img {
  object-fit: cover;
  object-position: center;
}
.brand-logo {
  height: 58px;
  max-width: 150px;
  object-fit: contain;
}
@media (max-width: 860px) {
  .container {
    width: min(1400px, calc(100% - 28px));
  }
  .top-banner {
    min-height: clamp(300px, 48vh, 440px);
  }
  .top-banner .container {
    padding-block: 44px;
  }
  .top-banner h2 {
    font-size: clamp(2.15rem, 11vw, 3.8rem);
  }
  .top-banner span {
    font-size: 0.98rem;
  }
  .brand-logo {
    height: 50px;
  }
}

/* Ensure generated banners display fully without cropping. */
.top-banner picture img {
  object-fit: cover;
  object-position: center;
  background: #111;
}
@media (max-width: 760px) {
  .top-banner picture img {
    object-fit: cover;
    object-position: center;
  }
}

/* Final hero slider, glass-card, logo, and client-image balance polish */
.hero-slider {
  z-index: 0;
}
.hero-photo::before {
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(8, 10, 12, 0.08),
    rgba(8, 10, 12, 0.42)
  );
  pointer-events: none;
}
.hero-slider img {
  filter: contrast(1.08) saturate(1.04);
  animation: gbgiHeroSlider 20s infinite;
}
@keyframes gbgiHeroSlider {
  0%,
  21% {
    opacity: 1;
    transform: scale(1.005);
  }
  26%,
  94% {
    opacity: 0;
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1.005);
  }
}
.hero-photo .hero-card {
  z-index: 2;
  left: clamp(18px, 3vw, 34px);
  right: auto;
  bottom: clamp(18px, 3vw, 34px);
  width: min(390px, calc(100% - 44px));
  max-width: 390px;
  padding: 18px 20px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.64),
    rgba(255, 255, 255, 0.24)
  );
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
  backdrop-filter: blur(18px) saturate(1.22);
  animation: gbgiGlassFloat 7s ease-in-out infinite;
}
.hero-card h2,
.hero-card dl {
  position: relative;
  z-index: 1;
}
.hero-card h2 {
  margin-bottom: 12px;
  font-size: 1.06rem;
}
.hero-card dl {
  gap: 10px;
}
.hero-card dt {
  color: rgba(23, 25, 28, 0.55);
  font-size: 0.68rem;
}
.hero-card dd,
.hero-card dd a {
  color: rgba(23, 25, 28, 0.88);
  font-size: 0.94rem;
}
.hero-card::before {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.48),
    rgba(255, 255, 255, 0)
  );
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: -45% -85%;
  z-index: 0;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 255, 255, 0.42) 48%,
    transparent 58%
  );
  transform: translateX(-42%);
  animation: gbgiGlassSheen 5.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gbgiGlassFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes gbgiGlassSheen {
  0%,
  45% {
    transform: translateX(-44%);
    opacity: 0;
  }
  55% {
    opacity: 0.8;
  }
  78%,
  100% {
    transform: translateX(44%);
    opacity: 0;
  }
}
.brand-logo {
  height: 68px;
  max-width: 210px;
}
.footer-brand {
  display: grid;
  gap: 12px;
  align-content: start;
}
.footer-logo {
  width: min(190px, 70%);
  height: auto;
  display: block;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 6px;
  padding: 8px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
}
.social-links a:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}
.page-logo-mark {
  margin: 0 0 22px;
}
.page-logo-mark img,
.contact-card-logo {
  width: min(190px, 70%);
  height: auto;
  display: block;
  background: #fff;
  border: 1px solid var(--gb-line);
  border-radius: 6px;
  padding: 8px;
}
.contact-brand-card {
  display: grid;
  gap: 10px;
}
.split .plain-image:not(.about-owner-image) {
  aspect-ratio: 16 / 10;
  max-height: 430px;
  object-position: center;
}
.about-split {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 5vw, 70px);
}
.about-owner-image {
  justify-self: center;
  max-width: 560px;
  max-height: 620px;
  aspect-ratio: 4 / 5;
  object-position: center top;
  box-shadow: 0 18px 50px rgba(23, 25, 28, 0.08);
}
.image-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 860px) {
  .hero-photo .hero-card {
    position: absolute;
    left: 18px;
    right: auto;
    bottom: 18px;
    margin: 0;
  }
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-owner-image {
    max-width: 520px;
    max-height: 520px;
  }
  .brand-logo {
    height: 56px;
    max-width: 175px;
  }
}
@media (max-width: 520px) {
  .hero-photo .hero-card {
    width: min(330px, calc(100% - 28px));
    left: 14px;
    bottom: 14px;
    padding: 15px 16px;
  }
  .hero-card h2 {
    font-size: 1rem;
  }
  .hero-card dd,
  .hero-card dd a {
    font-size: 0.88rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider img,
  .hero-photo .hero-card,
  .hero-card::after {
    animation: none !important;
  }
}
/* Logo wording cleanup */
.brand-text small {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--gb-muted);
}
.footer-brand p:first-of-type,
.contact-brand-card p:first-of-type {
  margin-top: 0;
}
/* Contact map balance and product image cleanup */
.contact-form-stack {
  display: grid;
  gap: 18px;
  align-self: start;
}
.contact-form-stack .gbgi-contact-form {
  width: 100%;
}
.contact-map-panel {
  grid-column: 2;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--gb-radius);
  background: rgba(255, 255, 255, 0.08);
}
.contact-form-stack .contact-map-panel {
  grid-column: auto;
  margin-top: 0;
}
.contact-map-panel iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}
.product-card img[src*="TJs-Lekka"],
.product-card img[src*="LKs-Braai"],
.product-card img[src*="wood-enhanced"],
.product-card img[src*="charcoal-enhanced"] {
  object-position: center;
  filter: contrast(1.08) saturate(1.05);
}
@media (max-width: 860px) {
  .contact-map-panel {
    grid-column: 1;
  }
  .contact-map-panel iframe {
    min-height: 260px;
  }
}
.image-strip img[src*="gas-small"],
.image-strip img[src*="gas-equipment-small"],
.image-strip img[src*="ice-gordons-bay"],
.image-strip img[src*="braai-equipment-gordons-bay"],
.image-strip img[src*="braai-consumables-gordons-bay"] {
  filter: contrast(1.08) saturate(1.05);
  object-position: center;
}
/* Homepage supply image and order-flow section */
.home-service-flow {
  background: #fff;
}
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.flow-grid article {
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: linear-gradient(180deg, #fff, var(--gb-surface));
  min-height: 210px;
}
.flow-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gb-charcoal);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
}
.flow-grid h3 {
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}
.flow-grid p {
  margin: 0;
  color: var(--gb-muted);
}
.category-card.image-card img[src*="local-supply-display"] {
  aspect-ratio: 16 / 10;
  object-position: center;
  filter: contrast(1.05) saturate(1.03);
}
@media (max-width: 860px) {
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .flow-grid article {
    min-height: auto;
  }
}
/* Social media icon buttons */
.social-icon-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.social-icon-link {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 25, 28, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--gb-charcoal);
  box-shadow: 0 8px 20px rgba(23, 25, 28, 0.08);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}
.social-icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.social-icon-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.social-icon-link:hover,
.social-icon-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(231, 82, 46, 0.45);
  box-shadow: 0 12px 28px rgba(23, 25, 28, 0.14);
}
.social-facebook {
  color: #1877f2;
}
.social-whatsapp {
  color: #25d366;
}
.social-google,
.social-google-maps {
  color: #e7522e;
}
.social-instagram {
  color: #e7522e;
}
.social-linkedin {
  color: #0a66c2;
}
.site-footer .social-icon-link,
.top-banner .social-icon-link {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.site-footer .social-icon-link:hover,
.top-banner .social-icon-link:hover,
.site-footer .social-icon-link:focus-visible,
.top-banner .social-icon-link:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.52);
}
.top-banner .social-icon-links {
  margin-top: 22px;
}
.page-social-block,
.social-contact-card {
  margin-top: 22px;
}
.page-social-block > p,
.social-contact-card > p {
  margin-bottom: 12px;
  color: var(--gb-muted);
}
.social-contact-card .social-icon-link,
.page-social-block .social-icon-link {
  background: var(--gb-soft);
}
@media (max-width: 640px) {
  .social-icon-link {
    width: 40px;
    height: 40px;
    min-height: 40px;
  }
  .top-banner .social-icon-links {
    margin-top: 18px;
  }
}

/* Header logo-only refinement */
.site-header .brand.has-logo {
  gap: 0;
}

.site-header .brand-text {
  display: none !important;
}

.site-header .brand-logo,
.site-header .custom-logo {
  height: clamp(74px, 6vw, 86px);
  max-width: 260px;
  object-fit: contain;
}

.site-header .header-inner {
  min-height: 96px;
  padding-block: 8px;
}

@media (max-width: 860px) {
  .site-header .brand-logo,
  .site-header .custom-logo {
    height: 66px;
    max-width: 210px;
  }

  .site-header .header-inner {
    min-height: 82px;
  }
}

/* Balanced StrandWeb footer */
.site-footer {
  padding: 0;
  background: #104b66;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer > .container {
  padding-block: clamp(56px, 7vw, 84px);
}

.footer-grid {
  grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(170px, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  margin-bottom: 0;
}

.footer-brand {
  gap: 16px;
  justify-items: start;
}

.footer-logo {
  width: min(250px, 82%);
  padding: 10px;
  border-radius: 6px;
}

.footer-brand p,
.footer-contact p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.footer-column h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.1;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 74px;
  height: 1px;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.22);
}

.footer-link-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.footer-link-list a::before {
  content: "\203A";
  color: #2cc4df;
  font-size: 1.35rem;
  line-height: 1;
}

.footer-link-list a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 18px;
}

.footer-contact h3 + p {
  margin-top: -6px;
}

.site-footer .social-icon-links {
  margin-top: 2px;
}

.footer-social-text {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-social-text a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.footer-bottom {
  display: block;
  padding: 0;
  border: 0;
  background: #0c3f56;
  color: #fff;
  text-align: center;
}

.footer-bottom .container {
  padding-block: 18px;
}

.footer-bottom span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 400;
}

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

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

  .footer-logo {
    width: min(220px, 78%);
  }
}

@media (max-width: 640px) {
  .site-footer > .container {
    padding-block: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-logo {
    width: min(230px, 76%);
  }
}

/* Balanced contact form panel */
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 32px);
  align-items: start;
}

.contact-layout > * {
  min-width: 0;
}

.contact-intro {
  display: grid;
  grid-column: 1 / -1;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto clamp(6px, 1.2vw, 14px);
  text-align: center;
}

.contact-intro .eyebrow,
.contact-intro h1,
.contact-intro p {
  margin-bottom: 0;
}

.contact-intro h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  line-height: 1.04;
}

.contact-intro p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
  line-height: 1.7;
}

.contact-info-stack,
.contact-form-stack {
  display: grid;
  width: 100%;
  gap: 14px;
  align-content: start;
  align-self: start;
}

.contact-form-stack {
  gap: 14px;
}

.contact-card,
.contact-form-stack .gbgi-contact-form {
  padding: clamp(20px, 2.5vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--gb-radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.contact-primary-card,
.contact-form-stack .gbgi-contact-form {
  min-height: 0;
}

.contact-card + .contact-card {
  margin-top: 0;
}

.contact-form-stack .form-grid {
  gap: clamp(12px, 1.8vw, 18px);
}

.contact-form-stack .form-grid p {
  margin: 0;
}

.contact-form-stack label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 700;
}

.contact-form-stack input,
.contact-form-stack textarea {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: #fff;
}

.contact-form-stack textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form-stack button {
  margin-top: 14px;
  min-width: 150px;
}

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

  .contact-intro {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .contact-form-stack .gbgi-contact-form {
    padding: 18px;
  }

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

  .contact-form-stack textarea {
    min-height: 150px;
  }
}

/* Refined dark footer with clearer icon rows */
.site-footer {
  background: #082f42;
}

.site-footer > .container {
  padding-block: clamp(52px, 6vw, 78px);
}

.footer-grid {
  grid-template-columns:
    minmax(210px, 1.08fr) minmax(150px, 0.76fr) minmax(190px, 0.96fr)
    minmax(250px, 1.18fr);
  gap: clamp(32px, 4.5vw, 62px);
  align-items: start;
}

.footer-brand,
.footer-column,
.footer-contact {
  align-self: start;
}

.footer-logo {
  width: min(238px, 82%);
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-social-links {
  gap: 10px;
  flex-wrap: nowrap;
}

.footer-social-links .social-icon-link {
  width: 44px;
  min-width: 44px;
  padding: 0;
  border-color: rgba(44, 196, 223, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #20bfdc;
}

.footer-social-links .social-icon-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.footer-social-links .social-icon-link:hover,
.footer-social-links .social-icon-link:focus-visible {
  background: rgba(44, 196, 223, 0.16);
  border-color: rgba(44, 196, 223, 0.62);
}

.footer-contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.footer-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: #20bfdc;
}

.site-footer svg,
.footer-icon svg,
.footer-contact-list svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  flex: 0 0 23px;
  max-width: 23px;
  max-height: 23px;
}

.values-section {
  background: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

.value-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: linear-gradient(180deg, #fff, var(--gb-surface));
}

.value-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(32, 191, 220, 0.12);
  color: #20bfdc;
}

.value-icon::before {
  color: currentColor;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.value-icon--mission::before {
  content: "✓";
}

.value-icon--vision::before {
  content: "○";
}

.value-icon--values::before {
  content: "★";
}

.value-card h3,
.value-card p {
  margin: 0;
}

.home-service-flow .split h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.06;
}

.home-service-flow .eyebrow {
  color: #6d7784;
  font-size: 0.82rem;
}

.about-social-links,
.page-social-block .social-icon-links {
  gap: 10px;
}

.about-social-links .social-icon-link,
.page-social-block .social-icon-link {
  width: 44px;
  min-width: 44px;
  color: #20bfdc;
  border-color: rgba(32, 191, 220, 0.28);
  background: rgba(32, 191, 220, 0.1);
  box-shadow: none;
}

.about-social-links .social-icon-link:hover,
.about-social-links .social-icon-link:focus-visible,
.page-social-block .social-icon-link:hover,
.page-social-block .social-icon-link:focus-visible {
  background: rgba(32, 191, 220, 0.18);
  border-color: rgba(32, 191, 220, 0.48);
}

.about-social-links svg,
.page-social-block .social-icon-link svg {
  width: 19px;
  height: 19px;
  max-width: 19px;
  max-height: 19px;
  fill: currentColor;
}

/* Consistent high-level section intro styling */
.section-header {
  max-width: 920px;
  margin-bottom: clamp(30px, 4vw, 46px);
}

.section-header > .eyebrow {
  margin: 0 0 8px;
  color: #6d7784;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section-header > h1,
.section-header > h2 {
  max-width: 980px;
  margin: 0;
  color: var(--gb-charcoal);
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  line-height: 1.03;
}

.section-header > p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 22px;
  color: #6d7784;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.page-hero .section-header {
  margin-bottom: 0;
}

.page-hero .section-header > h1 {
  font-size: clamp(2.25rem, 4.6vw, 4.2rem);
}

@media (max-width: 640px) {
  .section-header > h1,
  .section-header > h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }
}

.footer-bottom {
  background: #062839;
}

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

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

/* Ecommerce-first refinements */
.menu-toggle {
  align-items: center;
  justify-content: center;
}

.menu-toggle-bars {
  display: grid;
  gap: 5px;
  width: 22px;
}

.menu-toggle-bars i {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--gb-charcoal);
}

.reviews-section {
  background: var(--gb-surface);
}

.review-slider {
  display: grid;
  gap: 18px;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, calc((100% - 36px) / 3));
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(44, 196, 223, 0.6) transparent;
}

.review-track::-webkit-scrollbar {
  height: 8px;
}

.review-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(44, 196, 223, 0.62);
}

.review-track::-webkit-scrollbar-track {
  background: transparent;
}

.review-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  box-shadow: 0 12px 30px rgba(23, 27, 31, 0.05);
  scroll-snap-align: start;
}

.review-stars {
  color: var(--gb-flame);
  font-size: 1rem;
  letter-spacing: 0;
}

.review-card p {
  margin: 0;
  color: var(--gb-ink);
}

.review-card footer {
  display: grid;
  gap: 2px;
  align-self: end;
  color: var(--gb-muted);
  font-size: 0.9rem;
}

.review-card strong {
  color: var(--gb-charcoal);
}

.review-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-control {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gb-line);
  border-radius: 999px;
  background: var(--gb-white);
  color: var(--gb-charcoal);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.review-control:hover,
.review-control:focus-visible {
  border-color: var(--gb-ice);
  background: var(--gb-ice);
  color: var(--gb-charcoal);
  transform: translateY(-1px);
}

.review-control:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.review-slider-status {
  color: var(--gb-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.review-link {
  margin-top: 22px;
}

.products-template .section-header {
  max-width: 940px;
}

.products-template-grid {
  position: relative;
  z-index: 1;
}

.products-delivery-panel {
  display: grid;
  gap: 18px;
}

.products-delivery-panel .section-header {
  margin-bottom: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1100px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .primary-nav {
    flex: 1 1 auto;
  }
}

@media (max-width: 860px) {
  .primary-nav {
    inset: 122px 16px auto 16px;
  }
}

.site-footer .footer-link-list a,
.site-footer .footer-contact-list li,
.site-footer .footer-contact-list a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 400;
}

.site-footer .footer-contact-list a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer .footer-link-list a::before {
  content: "\203A";
}

@media (max-width: 860px) {
  .header-inner {
    gap: 10px;
  }

  .menu-toggle {
    display: inline-grid !important;
    order: 2;
    flex: 0 0 44px;
  }

  .header-commerce {
    order: 3;
    width: 100%;
    justify-content: flex-end;
  }

  .header-commerce-link {
    min-height: 38px;
    padding: 7px 10px;
  }

  .woocommerce div.product,
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 860px) {
  .review-track {
    grid-auto-columns: minmax(280px, 86%);
  }

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

@media (max-width: 520px) {
  .review-track {
    grid-auto-columns: minmax(252px, 92%);
  }
}

@media (max-width: 520px) {
  .header-commerce-link span {
    display: none;
  }

  .header-commerce-link svg {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
}

/* Final shop/account spacing pass */
strong,
b,
h1,
h2,
h3,
h4,
h5,
h6,
.button,
button,
input[type="submit"],
.primary-nav a,
.header-action,
.header-commerce-link,
.shop-quick-links a,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-MyAccount-navigation a {
  letter-spacing: 0;
}

.woocommerce .site-main,
.woocommerce-page .site-main {
  width: min(1400px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: clamp(56px, 7vw, 86px);
}

.woocommerce .woocommerce-archive-header {
  max-width: 900px;
  margin: 0 0 clamp(28px, 4vw, 42px);
}

.woocommerce .woocommerce-archive-header h1 {
  margin: 0 0 14px;
  line-height: 1.05;
}

.woocommerce .woocommerce-archive-header p {
  max-width: 760px;
  margin-block: 0 18px;
  line-height: 1.7;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 24px;
}

.woocommerce .woocommerce-ordering select {
  min-width: min(100%, 240px);
  padding: 12px 40px 12px 14px;
  border: 1px solid var(--gb-line);
  border-radius: 4px;
  background-color: var(--gb-white);
  font: inherit;
  letter-spacing: 0;
}

.woocommerce ul.products {
  clear: both;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.5vw, 34px);
  justify-content: start;
  justify-items: stretch;
  margin-top: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  float: none !important;
  clear: none !important;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100% !important;
  max-width: none;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 6px;
}

.woocommerce ul.products li.product img {
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  border-radius: 4px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 0 0 10px;
  padding: 0;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  font-weight: 800;
  line-height: 1.22;
}

.woocommerce ul.products li.product .price {
  margin: 0 0 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.woocommerce ul.products li.product .button {
  margin-top: auto;
  align-self: flex-start;
  padding-inline: 20px;
}

.woocommerce table.shop_table,
.woocommerce-cart-form,
.woocommerce-checkout-review-order,
.woocommerce-MyAccount-content,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
  padding: clamp(18px, 2.6vw, 28px);
  line-height: 1.75;
}

.woocommerce table.shop_table {
  padding: 0;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 16px 18px;
  line-height: 1.6;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  display: none;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: min(960px, 100%);
  margin-inline: auto;
}

.woocommerce-account .woocommerce-MyAccount-content p {
  margin: 0 0 18px;
}

.woocommerce-account .woocommerce-MyAccount-content p:last-child {
  margin-bottom: 0;
}

.woocommerce form .form-row {
  margin-bottom: 18px;
}

.woocommerce form .form-row label {
  margin-bottom: 7px;
  font-weight: 700;
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .woocommerce .site-main,
  .woocommerce-page .site-main {
    width: min(100% - 28px, 1400px);
    padding-block: 42px;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .woocommerce .woocommerce-ordering,
  .woocommerce .woocommerce-ordering select {
    width: 100%;
  }
}

/* WooCommerce product grid and product detail refinements */
.woocommerce ul.products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.woocommerce ul.products li.product img,
.woocommerce div.product div.images img,
.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  display: none !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image a {
  cursor: default;
  pointer-events: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.reviews_tab,
.woocommerce #reviews,
.woocommerce #tab-reviews {
  display: none !important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce div.product form.cart .button {
  background: var(--gb-ice);
  border: 2px solid var(--gb-ice);
  color: #fff;
  box-shadow: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce div.product form.cart .button:hover,
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible,
.woocommerce #respond input#submit:focus-visible,
.woocommerce div.product form.cart .button:focus-visible {
  background: var(--gb-charcoal);
  border-color: var(--gb-charcoal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(23, 25, 28, 0.22);
}

.woocommerce div.product form.cart div.quantity input.qty {
  min-height: 48px;
  border: 1px solid var(--gb-line);
  border-radius: 5px;
  color: var(--gb-charcoal);
}

@media (max-width: 1180px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

/* Final product-card overrides keep the live shop aligned with the preview cards. */
.woocommerce ul.products li.product {
  overflow: hidden;
  padding: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link > img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  margin: 0 0 clamp(20px, 2vw, 28px);
  border-radius: 0;
  object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin-bottom: 18px;
}

.woocommerce ul.products li.product .price {
  margin-top: 0;
  margin-bottom: 16px;
}

.gbgi-loop-actions .button,
.woocommerce ul.products li.product .gbgi-loop-actions .button {
  display: inline-flex;
  visibility: visible;
  opacity: 1;
}

@media (max-width: 640px) {
  .gbgi-product-card-meta,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .gbgi-product-loop-excerpt,
  .woocommerce ul.products li.product .price {
    min-height: 0;
  }
}

/* Final mobile footer guard: later footer refinements must not force two columns. */
@media (max-width: 640px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer .footer-contact,
  .site-footer .footer-contact-list,
  .site-footer .footer-contact-list li,
  .site-footer .footer-contact-list a {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .gbgi-loop-actions {
    grid-template-columns: 1fr;
  }
}

/* Hero order card tightening */
.image-hero .hero-photo .hero-card {
  width: auto;
  min-width: 0;
  max-width: min(270px, calc(100% - 44px));
  padding: 16px 18px;
}

.image-hero .hero-card h2 {
  margin-bottom: 10px;
}

.image-hero .hero-card dl {
  gap: 9px;
}

@media (max-width: 860px) {
  .image-hero .hero-photo .hero-card {
    min-width: 0;
    max-width: min(260px, calc(100% - 36px));
    padding: 13px 15px;
  }
}

@media (max-width: 420px) {
  .image-hero .hero-photo .hero-card {
    width: auto;
    max-width: min(255px, calc(100% - 24px));
    min-width: 0;
  }
}

/* Client review mobile pass: contain every template inside the viewport. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-wrap,
.site-header,
.site-main,
.site-footer,
.section,
.hero,
.image-hero,
.page-hero,
.top-banner,
.woocommerce,
.woocommerce-page {
  max-width: 100%;
}

@media (max-width: 860px) {
  .container,
  .woocommerce .site-main,
  .woocommerce-page .site-main,
  .woocommerce-checkout .section > .container {
    width: min(100% - 28px, 1400px);
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    min-height: 76px;
    padding-block: 8px;
  }

  .brand,
  .brand-logo {
    min-width: 0;
  }

  .brand-logo {
    width: auto;
    height: 54px;
    max-width: 150px;
  }

  .menu-toggle {
    display: inline-grid !important;
    grid-column: 2;
    grid-row: 1;
    order: initial;
    width: 42px;
    height: 42px;
  }

  .header-commerce {
    grid-column: 3;
    grid-row: 1;
    order: initial;
    width: auto;
    min-width: 0;
    justify-content: end;
    gap: 6px;
  }

  .header-commerce-link {
    min-width: 42px;
    min-height: 42px;
    padding: 8px;
  }

  .header-commerce-link span {
    display: none;
  }

  .header-commerce-link svg {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .header-cart-count {
    position: absolute;
    top: 3px;
    right: 3px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    font-size: 0.66rem;
  }

  .primary-nav {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 2px;
    padding: 10px;
    inset: auto;
  }

  .primary-nav a {
    padding: 11px 12px;
  }

  .hero-grid,
  .image-hero .hero-grid,
  .split,
  .shop-shell,
  .product-grid,
  .product-demo,
  .product-detail,
  .contact-layout,
  .footer-grid,
  .woocommerce div.product,
  .woocommerce-checkout form.checkout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .hero-copy,
  .hero-photo,
  .section-header,
  .page-hero .section-header,
  .contact-intro,
  .contact-card,
  .contact-form-stack,
  .product-card,
  .shop-panel,
  .woocommerce,
  .woocommerce form,
  .woocommerce table,
  .woocommerce table.shop_table,
  .woocommerce-cart-form,
  .woocommerce-checkout-review-order,
  .woocommerce-MyAccount-content {
    min-width: 0;
    max-width: 100%;
  }

  .hero h1,
  .hero-strong,
  .hero-strong-line,
  .section-header h1,
  .section-header h2,
  .page-hero h1,
  .top-banner h2,
  .contact-intro h1,
  .woocommerce div.product .product_title {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-strong-line--nowrap {
    white-space: normal;
  }

  .hero p,
  .section-header p,
  .top-banner span,
  .contact-intro p,
  .contact-card p,
  .woocommerce p {
    max-width: 100%;
  }

  .hero-actions,
  .button-row,
  .product-actions,
  .product-detail-actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-actions .button,
  .button-row .button,
  .product-actions .button,
  .product-detail-actions .button {
    flex: 1 1 150px;
  }
}

@media (max-width: 640px) {
  .container,
  .woocommerce .site-main,
  .woocommerce-page .site-main,
  .woocommerce-checkout .section > .container {
    width: min(100% - 24px, 1400px);
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) 42px minmax(92px, auto);
  }

  .brand-logo {
    height: 50px;
    max-width: 142px;
  }

  .hero {
    padding-block: 42px 0;
  }

  .hero-grid,
  .image-hero .hero-grid {
    gap: 26px;
    padding: 42px 0 0;
  }

  .hero h1,
  .hero-strong {
    font-size: clamp(2.55rem, 10vw, 3.1rem);
    line-height: 0.98;
  }

  .hero-kicker {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    line-height: 1.1;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-photo {
    width: 100%;
    min-height: 300px;
    aspect-ratio: 4 / 3;
  }

  .hero-photo .hero-card {
    width: min(100% - 24px, 330px);
    left: 12px;
    bottom: 12px;
  }

  .service-strip .container {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 52px;
  }

  .section-header > h1,
  .section-header > h2,
  .page-hero .section-header > h1,
  .page-hero h1,
  .contact-intro h1 {
    font-size: clamp(2.05rem, 8.8vw, 2.65rem);
    line-height: 1.05;
  }

  .top-banner {
    min-height: 320px;
  }

  .top-banner .container {
    padding-block: 42px;
  }

  .top-banner h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .top-banner span {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .top-banner .social-icon-links {
    flex-wrap: wrap;
  }

  .product-grid,
  .product-demo,
  .woocommerce ul.products {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .product-card img,
  .woocommerce ul.products li.product .woocommerce-loop-product__link > img {
    aspect-ratio: 4 / 3;
  }

  .gbgi-product-card-meta span {
    white-space: normal;
  }

  .woocommerce .woocommerce-ordering,
  .woocommerce .woocommerce-ordering select,
  .woocommerce-notices-wrapper,
  .woocommerce-info,
  .woocommerce-message,
  .woocommerce-error {
    width: 100%;
    max-width: 100%;
  }

  .woocommerce-info,
  .woocommerce-message,
  .woocommerce-error {
    padding: 15px 16px 15px 44px !important;
    line-height: 1.45;
  }

  .woocommerce-info::before,
  .woocommerce-message::before,
  .woocommerce-error::before {
    left: 16px;
    top: 16px;
  }

  .woocommerce table.shop_table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .contact-form-stack .form-grid,
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 420px) {
  .container,
  .woocommerce .site-main,
  .woocommerce-page .site-main,
  .woocommerce-checkout .section > .container {
    width: min(100% - 20px, 1400px);
  }

  .header-inner {
    gap: 6px;
  }

  .brand-logo {
    max-width: 128px;
  }

  .header-commerce {
    gap: 5px;
  }

  .header-commerce-link {
    min-width: 40px;
    min-height: 40px;
    padding: 7px;
  }

  .hero h1,
  .hero-strong {
    font-size: clamp(2.25rem, 10.5vw, 2.75rem);
  }

  .section-header > h1,
  .section-header > h2,
  .page-hero .section-header > h1,
  .page-hero h1,
  .contact-intro h1,
  .top-banner h2 {
    font-size: clamp(1.95rem, 9vw, 2.45rem);
  }

  .hero-actions,
  .button-row,
  .product-actions,
  .product-detail-actions,
  .gbgi-loop-actions {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .hero-actions .button,
  .button-row .button,
  .product-actions .button,
  .product-detail-actions .button {
    flex-basis: 100%;
  }
}

/* Final mobile overflow correction from local screenshot QA. */
@media (max-width: 860px) {
  .menu-toggle {
    grid-column: 3;
  }

  .header-commerce {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions .button {
    width: 100%;
  }

  .section-header > h1,
  .section-header > h2,
  .page-hero .section-header > h1,
  .page-hero h1,
  .contact-intro h1 {
    font-size: clamp(1.9rem, 7.4vw, 2.3rem);
  }

  .top-banner h2 {
    font-size: clamp(2rem, 8.8vw, 2.65rem);
  }
}

@media (max-width: 420px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto 40px;
  }

  .brand-logo {
    max-width: 118px;
  }

  .section-header > h1,
  .section-header > h2,
  .page-hero .section-header > h1,
  .page-hero h1,
  .contact-intro h1,
  .top-banner h2 {
    font-size: clamp(1.8rem, 7.8vw, 2.15rem);
  }
}

@media (max-width: 640px) {
  .header-account-link {
    display: none;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) 42px 42px;
  }

  .header-commerce {
    width: 42px;
  }

  .header-cart-link {
    display: inline-flex;
  }

  .top-banner h2,
  .contact-intro h1 {
    font-size: clamp(1.75rem, 7.4vw, 2.2rem);
  }
}

@media (max-width: 420px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) 40px 40px;
  }

  .hero h1,
  .hero-strong {
    font-size: clamp(2.05rem, 9.2vw, 2.45rem);
  }

  .section-header > h1,
  .section-header > h2,
  .page-hero .section-header > h1,
  .page-hero h1,
  .contact-intro h1,
  .top-banner h2 {
    font-size: clamp(1.7rem, 7.4vw, 2rem);
  }
}

@media (max-width: 640px) {
  .hero-copy > .eyebrow {
    white-space: nowrap;
    font-size: clamp(0.58rem, 2.85vw, 0.7rem);
    letter-spacing: 0;
  }
}

/* Home hero media should hold the centre split and bleed cleanly to the page edge. */
.image-hero .hero-photo {
  width: calc(100% + max(20px, (100vw - min(1400px, calc(100vw - 40px))) / 2));
  margin-right: calc(-1 * max(20px, (100vw - min(1400px, calc(100vw - 40px))) / 2));
  border-left: 1px solid var(--gb-line);
}

.image-hero .hero-slider,
.image-hero .hero-slider img {
  width: 100%;
  height: 100%;
}

@media (min-width: 981px) {
  .service-strip .container {
    grid-template-columns:
      minmax(0, calc(23% + 14px))
      minmax(0, calc(23% + 14px))
      minmax(0, calc(27% - 14px))
      minmax(0, calc(27% - 14px));
  }
}

@media (max-width: 980px) {
  .image-hero .hero-photo {
    width: 100%;
    margin-right: 0;
    border-left: 0;
  }
}

@media (min-width: 981px) {
  .image-hero .hero-grid {
    align-items: stretch;
  }

  .image-hero .hero-copy {
    align-self: center;
  }

  .image-hero .hero-photo {
    min-height: 100%;
  }
}

/* WooCommerce cart and checkout controls */
.woocommerce input[type="radio"],
.woocommerce-page input[type="radio"],
.woocommerce input[type="checkbox"],
.woocommerce-page input[type="checkbox"] {
  width: 16px !important;
  min-width: 16px !important;
  height: 16px !important;
  min-height: 16px !important;
  margin: 0 8px 0 0;
  padding: 0;
  border: 1px solid var(--gb-line);
  accent-color: var(--gb-ice);
  box-shadow: none;
  vertical-align: middle;
}

.woocommerce input[type="radio"],
.woocommerce-page input[type="radio"] {
  border-radius: 50%;
}

.woocommerce input[type="checkbox"],
.woocommerce-page input[type="checkbox"] {
  border-radius: 3px;
}

.woocommerce ul#shipping_method,
.woocommerce ul.payment_methods {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.woocommerce ul#shipping_method li,
.woocommerce ul.payment_methods li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  line-height: 1.45;
}

.woocommerce ul#shipping_method li label,
.woocommerce ul.payment_methods li label {
  margin: 0;
  color: var(--gb-ink);
  font-weight: 500;
}

.woocommerce a,
.woocommerce .cart_totals a,
.woocommerce-checkout a {
  color: var(--gb-ice);
}

.woocommerce a:hover,
.woocommerce .cart_totals a:hover,
.woocommerce-checkout a:hover {
  color: var(--gb-flame);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  background: var(--gb-ice) !important;
  border-color: var(--gb-ice) !important;
  color: #fff !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover,
.woocommerce a.button.alt:focus-visible,
.woocommerce button.button.alt:focus-visible,
.woocommerce input.button.alt:focus-visible,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus-visible,
.woocommerce #payment #place_order:focus-visible,
.woocommerce-page #payment #place_order:focus-visible {
  background: var(--gb-flame) !important;
  border-color: var(--gb-flame) !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(231, 82, 46, 0.26);
}

/* Checkout layout: full-width fields, stacked shipping details, sticky summary. */
.woocommerce-checkout form.checkout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
}

.woocommerce-checkout #customer_details .col2-set {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 34px);
}

.woocommerce-checkout #customer_details .col2-set .col-1,
.woocommerce-checkout #customer_details .col2-set .col-2 {
  float: none !important;
  width: 100% !important;
  max-width: none;
  min-width: 0;
}

.woocommerce-checkout .form-row,
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  float: none;
  width: 100%;
  min-width: 0;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 24px);
}

.woocommerce-checkout .form-row-wide,
.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #shipping_country_field,
.woocommerce-checkout #billing_address_1_field,
.woocommerce-checkout #billing_address_2_field,
.woocommerce-checkout #shipping_address_1_field,
.woocommerce-checkout #shipping_address_2_field,
.woocommerce-checkout #order_comments_field {
  grid-column: 1 / -1;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container {
  width: 100% !important;
  max-width: 100%;
}

.woocommerce-checkout .woocommerce-shipping-fields {
  margin-top: clamp(12px, 2vw, 22px);
  padding-top: clamp(18px, 2.4vw, 26px);
  border-top: 1px solid var(--gb-line);
}

.woocommerce-checkout .woocommerce-shipping-fields h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}

.woocommerce-checkout .woocommerce-shipping-fields h3 label {
  margin: 0;
}

.woocommerce-checkout .woocommerce-additional-fields {
  margin-top: clamp(18px, 2.4vw, 26px);
}

.woocommerce-checkout #order_review {
  position: sticky;
  top: 104px;
  align-self: start;
}

@media (max-width: 980px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout #order_review {
    position: static;
  }
}

@media (max-width: 640px) {
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Checkout width rail: keep the whole checkout aligned and unsquashed. */
.woocommerce-checkout .section > .container {
  width: min(1320px, calc(100% - 48px));
}

.woocommerce-checkout .entry-content > *,
.woocommerce-checkout .entry-content > .woocommerce,
.woocommerce-checkout .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout form.checkout {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.woocommerce-checkout .entry-content > .woocommerce {
  display: block;
  padding-left: 0;
  padding-right: 0;
}

.woocommerce-checkout .woocommerce-info {
  border-top: 3px solid var(--gb-ice);
  padding: 18px 22px !important;
  line-height: 1.55;
}

.woocommerce-checkout .woocommerce-info::before {
  content: none;
  display: none;
}

.woocommerce-checkout .woocommerce-info a {
  display: inline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.woocommerce-checkout form.checkout {
  grid-template-columns: minmax(620px, 1fr) minmax(360px, 430px);
  gap: clamp(32px, 4vw, 56px);
  padding: clamp(24px, 3vw, 34px);
}

.woocommerce-checkout #customer_details {
  width: 100%;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  width: 100%;
}

@media (max-width: 1180px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
  }
}

@media (max-width: 1020px) {
  .woocommerce-checkout .section > .container {
    width: min(100% - 36px, 1320px);
  }

  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .woocommerce-checkout .section > .container {
    width: min(100% - 28px, 1320px);
  }

  .woocommerce-checkout form.checkout {
    padding: 18px;
  }

  .woocommerce-checkout .woocommerce-info {
    padding: 16px 18px !important;
    font-size: 0.95rem;
  }
}

/* Header navigation color lock: keep nav consistent across WooCommerce pages. */
.site-header .primary-nav a,
.woocommerce .site-header .primary-nav a,
.woocommerce-page .site-header .primary-nav a {
  background: transparent;
  color: var(--gb-charcoal);
}

.site-header .primary-nav a:hover,
.site-header .primary-nav a:focus-visible,
.site-header .primary-nav .current-menu-item > a,
.site-header .primary-nav .current-menu-ancestor > a,
.site-header .primary-nav .current-menu-parent > a,
.site-header .primary-nav .current_page_item > a,
.site-header .primary-nav .current_page_parent > a,
.woocommerce .site-header .primary-nav a:hover,
.woocommerce .site-header .primary-nav a:focus-visible,
.woocommerce .site-header .primary-nav .current-menu-item > a,
.woocommerce .site-header .primary-nav .current-menu-ancestor > a,
.woocommerce .site-header .primary-nav .current-menu-parent > a,
.woocommerce .site-header .primary-nav .current_page_item > a,
.woocommerce .site-header .primary-nav .current_page_parent > a,
.woocommerce-page .site-header .primary-nav a:hover,
.woocommerce-page .site-header .primary-nav a:focus-visible,
.woocommerce-page .site-header .primary-nav .current-menu-item > a,
.woocommerce-page .site-header .primary-nav .current-menu-ancestor > a,
.woocommerce-page .site-header .primary-nav .current-menu-parent > a,
.woocommerce-page .site-header .primary-nav .current_page_item > a,
.woocommerce-page .site-header .primary-nav .current_page_parent > a {
  background: transparent;
  color: var(--gb-flame);
}

.site-header .header-commerce-link,
.woocommerce .site-header .header-commerce-link,
.woocommerce-page .site-header .header-commerce-link {
  color: var(--gb-charcoal);
}

.site-header .header-commerce-link:hover,
.site-header .header-commerce-link:focus-visible,
.woocommerce .site-header .header-commerce-link:hover,
.woocommerce .site-header .header-commerce-link:focus-visible,
.woocommerce-page .site-header .header-commerce-link:hover,
.woocommerce-page .site-header .header-commerce-link:focus-visible {
  border-color: var(--gb-flame);
  color: var(--gb-flame);
}

/* Lightweight fire-and-ice section graphics. */
.gbgi-elemental-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.gbgi-elemental-bg > .container {
  position: relative;
  z-index: 1;
}

.gbgi-elemental-bg::before,
.gbgi-elemental-bg::after {
  position: absolute;
  z-index: 0;
  width: clamp(210px, 28vw, 430px);
  height: clamp(210px, 28vw, 430px);
  pointer-events: none;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.11;
  transform: translate3d(0, 0, 0);
  animation: gbgiElementalFloat 12s ease-in-out infinite;
}

.gbgi-elemental-bg::before {
  right: max(20px, 6vw);
  bottom: clamp(18px, 6vw, 76px);
  background-image: url("data:image/svg+xml,%3Csvg width='520' height='520' viewBox='0 0 520 520' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23E7522E' stroke-width='18' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M275 450c73-37 103-98 86-167-12-49-49-86-61-137-46 38-67 85-50 144-41-26-56-67-49-117-62 52-91 111-82 172 8 59 50 94 156 105Z' opacity='.92'/%3E%3Cpath d='M263 405c31-22 44-53 36-91-23 18-35 37-32 65-21-13-31-34-29-61-32 32-39 72 25 87Z' opacity='.76'/%3E%3Cpath d='M148 418c-37-27-58-61-65-99M374 107c28 34 46 74 53 119' opacity='.58'/%3E%3C/g%3E%3C/svg%3E");
}

.gbgi-elemental-bg::after {
  top: clamp(28px, 5vw, 82px);
  left: max(18px, 4vw);
  background-image: url("data:image/svg+xml,%3Csvg width='520' height='520' viewBox='0 0 520 520' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%232CC4DF' stroke-width='16' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M260 64v392M128 128l264 264M392 128 128 392M82 260h356' opacity='.9'/%3E%3Cpath d='m260 64-48 58 48 45 48-45-48-58ZM260 456l48-58-48-45-48 45 48 58ZM82 260l58-48 45 48-45 48-58-48ZM438 260l-58 48-45-48 45-48 58 48ZM128 128l75 8-8 75-67-83ZM392 128l-67 83-8-75 75-8ZM392 392l-75-8 8-75 67 83ZM128 392l67-83 8 75-75 8Z' opacity='.72'/%3E%3C/g%3E%3C/svg%3E");
  animation-delay: -5s;
}

.gbgi-elemental-bg.elemental-dark::before {
  opacity: 0.08;
}

.gbgi-elemental-bg.elemental-dark::after {
  opacity: 0.1;
}

.gbgi-elemental-bg.elemental-values::before {
  right: 4vw;
  bottom: auto;
  top: 8vw;
}

.gbgi-elemental-bg.elemental-values::after {
  top: auto;
  bottom: 4vw;
}

@keyframes gbgiElementalFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  28% {
    transform: translate3d(14px, -18px, 0) rotate(3deg) scale(1.025);
  }
  58% {
    transform: translate3d(-10px, 10px, 0) rotate(-2.4deg) scale(0.985);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gbgi-elemental-bg::before,
  .gbgi-elemental-bg::after {
    animation: none;
  }
}

@media (max-width: 760px) {
  .gbgi-elemental-bg::before,
  .gbgi-elemental-bg::after {
    width: 210px;
    height: 210px;
    opacity: 0.08;
  }
}

/* Checkout reset: MatzoTech-style clean form column plus sticky order panel. */
.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(26px, 4vw, 46px);
  width: 100%;
  max-width: none;
  overflow: visible;
}

.woocommerce-checkout #customer_details {
  display: grid !important;
  grid-column: 1;
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
  width: 100%;
  min-width: 0;
}

.woocommerce-checkout #customer_details::before,
.woocommerce-checkout #customer_details::after {
  display: none;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2,
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  padding: 0;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
  width: 100%;
  min-width: 0;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px clamp(18px, 2vw, 24px);
  width: 100%;
}

.woocommerce-checkout .form-row,
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  float: none !important;
  width: 100% !important;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.woocommerce-checkout .form-row-wide,
.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #billing_address_1_field,
.woocommerce-checkout #billing_address_2_field,
.woocommerce-checkout #billing_city_field,
.woocommerce-checkout #billing_state_field,
.woocommerce-checkout #billing_postcode_field,
.woocommerce-checkout #billing_phone_field,
.woocommerce-checkout #billing_email_field,
.woocommerce-checkout #shipping_country_field,
.woocommerce-checkout #shipping_address_1_field,
.woocommerce-checkout #shipping_address_2_field,
.woocommerce-checkout #shipping_city_field,
.woocommerce-checkout #shipping_state_field,
.woocommerce-checkout #shipping_postcode_field,
.woocommerce-checkout #order_comments_field {
  grid-column: 1 / -1;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container,
.woocommerce-checkout .select2-container .select2-selection--single {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.woocommerce-checkout .woocommerce-shipping-fields {
  margin-top: 0;
}

.woocommerce-checkout .woocommerce-shipping-fields h3 {
  justify-content: flex-start;
  padding-top: clamp(18px, 2.5vw, 26px);
  border-top: 1px solid var(--gb-line);
}

.woocommerce-checkout .woocommerce-additional-fields {
  margin-top: 0;
}

.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.woocommerce-checkout #order_review {
  position: sticky;
  top: 104px;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

@media (max-width: 1020px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: auto;
    grid-row: auto;
  }

  .woocommerce-checkout #order_review {
    position: static;
  }
}

@media (max-width: 640px) {
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
}

/* End-of-file mobile product-card safeguards */
@media (max-width: 640px) {
  .gbgi-product-card-meta,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .gbgi-product-loop-excerpt,
  .woocommerce ul.products li.product .price {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .gbgi-loop-actions {
    grid-template-columns: 1fr;
  }
}

/* Final mobile product-card safeguards */
@media (max-width: 640px) {
  .gbgi-product-card-meta,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .gbgi-product-loop-excerpt,
  .woocommerce ul.products li.product .price {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .gbgi-loop-actions {
    grid-template-columns: 1fr;
  }
}

/* Balanced card rows: every product starts each content block at the same height. */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  gap: 0;
}

.gbgi-product-card-meta {
  min-height: 62px;
  margin-bottom: 12px;
  align-content: flex-start;
}

.gbgi-product-card-meta span {
  max-width: 100%;
  white-space: nowrap;
  font-size: 0.72rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: calc(1.22em * 2);
  margin-bottom: 16px;
}

.gbgi-product-loop-excerpt {
  min-height: calc(1.55em * 2);
  margin-bottom: 16px;
}

.woocommerce ul.products li.product .price {
  min-height: 1.4em;
  margin-bottom: 18px;
}

.gbgi-loop-actions {
  margin-top: auto;
}

@media (max-width: 640px) {
  .gbgi-product-card-meta,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .gbgi-product-loop-excerpt,
  .woocommerce ul.products li.product .price {
    min-height: 0;
  }

  .gbgi-product-card-meta {
    margin-bottom: 14px;
  }
}

@media (max-width: 420px) {
  .gbgi-loop-actions {
    grid-template-columns: 1fr;
  }
}

/* WooCommerce catalogue cards styled like the approved product preview */
.woocommerce ul.products li.product {
  overflow: hidden;
  padding: 0 !important;
  border-radius: 6px;
  background: #fff;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link > img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  margin: 0 0 clamp(20px, 2vw, 28px);
  border-radius: 0;
  object-fit: cover;
}

.gbgi-product-card-meta,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.gbgi-product-loop-excerpt,
.woocommerce ul.products li.product .price {
  margin-right: clamp(18px, 1.8vw, 26px);
  margin-left: clamp(18px, 1.8vw, 26px);
}

.gbgi-product-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.gbgi-product-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gb-surface);
  color: var(--gb-muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.gbgi-product-loop-excerpt {
  display: -webkit-box;
  min-height: calc(1.55em * 2);
  max-height: calc(1.55em * 2);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--gb-muted);
  line-height: 1.55;
}

.gbgi-loop-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding: 0 clamp(18px, 1.8vw, 26px) clamp(20px, 2vw, 26px);
}

.gbgi-loop-actions .button,
.woocommerce ul.products li.product .gbgi-loop-actions .button {
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 10px 14px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Product card polish: readable four-column layout */
.woocommerce ul.products {
  gap: clamp(18px, 1.9vw, 26px);
}

.woocommerce ul.products li.product {
  min-width: 0;
  padding: clamp(16px, 1.5vw, 22px);
}

.woocommerce ul.products li.product img,
.woocommerce div.product div.images img,
.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  display: block;
  height: auto;
  max-height: 500px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  display: -webkit-box;
  min-height: calc(1.22em * 2);
  max-height: calc(1.22em * 2);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.22;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--gb-flame);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce div.product form.cart .button {
  background: var(--gb-charcoal);
  border-color: var(--gb-charcoal);
  color: var(--gb-ice);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce div.product form.cart .button:hover,
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible,
.woocommerce #respond input#submit:focus-visible,
.woocommerce div.product form.cart .button:focus-visible {
  background: var(--gb-ice);
  border-color: var(--gb-ice);
  color: #fff;
  box-shadow: 0 14px 28px rgba(47, 190, 226, 0.26);
}

.woocommerce ul.products li.product {
  padding: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link > img {
  aspect-ratio: 1 / 1;
  height: auto;
  margin-top: 0;
}

.woocommerce ul.products li.product .gbgi-loop-actions .button {
  display: inline-flex;
  visibility: visible;
  opacity: 1;
}

.product-actions .button,
.product-detail-actions .button,
.gbgi-loop-actions .button,
.woocommerce ul.products li.product .gbgi-loop-actions .button {
  background: var(--gb-charcoal);
  border-color: var(--gb-charcoal);
  color: var(--gb-ice);
}

.product-actions .button:hover,
.product-actions .button:focus-visible,
.product-detail-actions .button:hover,
.product-detail-actions .button:focus-visible,
.gbgi-loop-actions .button:hover,
.gbgi-loop-actions .button:focus-visible,
.woocommerce ul.products li.product .gbgi-loop-actions .button:hover,
.woocommerce ul.products li.product .gbgi-loop-actions .button:focus-visible {
  background: var(--gb-ice);
  border-color: var(--gb-ice);
  color: #fff;
}

@media (max-width: 640px) {
  .gbgi-product-card-meta,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .gbgi-product-loop-excerpt,
  .woocommerce ul.products li.product .price {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .gbgi-loop-actions {
    grid-template-columns: 1fr;
  }
}
