/*
Theme Name: General LED
Theme URI: https://generalecuador.com
Author: General Ecuador
Description: Tema personalizado para General LED con WooCommerce como gestor de catalogo.
Version: 0.1.80
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 8.1
Text Domain: general-led
*/

:root {
  color-scheme: light;
  --page-bg: #dfe3e2;
  --surface: #f8faf9;
  --surface-soft: #eef2f1;
  --ink: #101418;
  --muted: #5d686b;
  --line: #c7d0ce;
  --brand: #2297d3;
  --brand-dark: #06608e;
  --blue-soft: #d9edf7;
  --power: #f0b23b;
  --leaf: #6f8551;
  --coral: #d85a43;
  --shadow: 0 16px 34px rgba(20, 32, 36, 0.12);
  --general-topbar-height: 50px;
  --general-mobile-nav-expanded-height: 190px;
  --general-mobile-nav-compact-height: 132px;
  --general-sticky-offset: 0px;
  --general-home-gutter: 100px;
  --general-category-circle-size: clamp(150px, 8.4vw, 172px);
  --general-category-hover-scale: 1.05;
}

body.admin-bar {
  --general-sticky-offset: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar {
    --general-sticky-offset: 46px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.frame {
  width: min(1360px, calc(100% - 80px));
  margin: 0 auto;
}

body.home .frame {
  width: calc(100% - var(--general-home-gutter));
  max-width: none;
}

.site-header .frame {
  width: calc(100% - var(--general-home-gutter));
  max-width: none;
}

.site-header {
  position: sticky;
  top: calc(var(--general-sticky-offset) - var(--general-topbar-height));
  z-index: 20;
  background: var(--page-bg);
  box-shadow: 0 1px 0 rgba(16, 20, 24, 0.08);
}

.welcome-bar {
  height: var(--general-topbar-height);
  overflow: hidden;
  background: #2997d5;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.welcome-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--general-topbar-height);
  padding: 0;
}

.welcome-inner p {
  margin: 0;
}

.welcome-inner a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.sublineas-logo {
  display: block;
  width: min(800px, 100%);
  height: auto;
}

.main-nav {
  position: relative;
  background: var(--surface);
}

.nav-inner {
  display: grid;
  grid-template-columns: 150px minmax(130px, 180px) minmax(280px, 1fr) max-content max-content max-content;
  align-items: center;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 156px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.category-trigger,
.shop-link,
.locals-link,
.search-form,
.quick-actions a,
.slide-control,
.rail-button {
  border: 0;
  border-radius: 8px;
}

.category-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 16px;
  background: linear-gradient(145deg, #0f1519, #070b0e);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 18px rgba(16, 20, 24, 0.12);
  font-weight: 900;
  cursor: pointer;
}

.category-trigger-label {
  display: grid;
  gap: 1px;
  min-width: 86px;
  font-size: 16px;
  line-height: 1.02;
  text-align: left;
}

.category-trigger[aria-expanded="true"] {
  background: linear-gradient(145deg, var(--brand-dark), #053f5f);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  content: "";
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 48px;
  width: 100%;
  justify-self: end;
  min-height: 48px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.search-form:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(34, 151, 211, 0.18);
}

.search-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 0 18px;
  background: transparent;
  color: var(--ink);
}

.search-form input::placeholder {
  color: #8a9697;
}

.search-form button {
  display: grid;
  place-items: center;
  border: 0;
  background: var(--brand);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.shop-link,
.locals-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 18px rgba(16, 20, 24, 0.1);
}

.shop-link {
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
}

.locals-link {
  background: linear-gradient(145deg, #0f1519, #070b0e);
}

.shop-link span,
.locals-link span {
  display: block;
  transform: translateY(-1px);
}

.shop-link:hover,
.shop-link:focus-visible,
.locals-link:hover,
.locals-link:focus-visible {
  background: linear-gradient(145deg, var(--brand-dark), #053f5f);
  color: #fff;
}

.quick-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.quick-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.quick-actions a:hover,
.quick-actions a:focus-visible {
  background: var(--surface-soft);
}

.icon-actions {
  gap: 10px;
}

.icon-action {
  position: relative;
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-dark);
}

.icon-action svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-action .icon-fill {
  fill: currentColor;
  stroke: none;
}

.icon-action .icon-stroke {
  fill: none;
  stroke: currentColor;
}

.whatsapp-link svg {
  width: 25px;
  height: 25px;
}

.cart-link svg {
  width: 26px;
  height: 26px;
}

.icon-action:hover,
.icon-action:focus-visible {
  border-color: rgba(34, 151, 211, 0.45);
  background: var(--blue-soft);
  color: var(--brand-dark);
}

.whatsapp-link {
  border-color: rgba(31, 181, 86, 0.25);
  background: #e2f8ea;
  color: #128c43;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  background: #d1f2dc;
  color: #075e2f;
}

.quick-actions .whatsapp-link {
  color: #128c43;
}

.quick-actions .whatsapp-link:hover,
.quick-actions .whatsapp-link:focus-visible {
  color: #075e2f;
}

.cart-link {
  background: var(--blue-soft);
  color: var(--ink);
}

.cart-count {
  position: absolute;
  right: -5px;
  top: -6px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.category-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 18;
  padding: 10px 0 0;
}

.category-panel[hidden] {
  display: none;
}

.category-panel-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 46px rgba(16, 20, 24, 0.18);
}

.category-panel-intro {
  display: grid;
  grid-template-rows: auto auto auto minmax(220px, 1fr);
  align-content: stretch;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.category-panel-kicker {
  color: #9dd7f1;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-panel-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.08;
}

.category-panel-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.42;
}

.category-panel-kicker :where(p, div, h1, h2, h3, h4, h5, h6),
.category-panel-title :where(p, div, h1, h2, h3, h4, h5, h6),
.category-panel-description :where(p, div, h1, h2, h3, h4, h5, h6) {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.category-panel-photo {
  position: relative;
  min-height: 260px;
  margin: 16px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #090e12;
}

.category-panel-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(16, 20, 24, 0) 42%, rgba(16, 20, 24, 0.58) 100%);
  pointer-events: none;
}

.category-panel-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

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

.category-branch {
  min-width: 0;
}

.category-branch h2 {
  margin: 0 0 9px;
  color: var(--brand-dark);
  font-size: 15px;
  line-height: 1.18;
}

.category-branch ul {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.category-branch a {
  display: block;
  border-radius: 7px;
  color: var(--muted);
  padding: 6px 8px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

.category-branch a:hover,
.category-branch a:focus-visible {
  background: var(--blue-soft);
  color: var(--brand-dark);
}

.promo-strip {
  padding: 12px 0 0;
}

.promo-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr) minmax(0, 1fr);
  align-items: center;
  gap: 0;
  min-height: 72px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 22%, rgba(255, 255, 255, 0.08) 52%, transparent 78%),
    linear-gradient(90deg, #081116 0%, #096991 48%, #0b1116 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 28px rgba(14, 28, 34, 0.12);
  color: #fff;
  overflow: hidden;
}

.promo-grid::before,
.promo-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.promo-grid::before {
  z-index: 0;
  inset: -70% auto -70% -34%;
  width: 24%;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(181, 232, 255, 0.18) 28%, rgba(255, 255, 255, 0.86) 48%, rgba(114, 210, 255, 0.22) 68%, transparent 100%);
  filter: blur(5px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-120%) skewX(-18deg);
  will-change: opacity, transform;
}

.promo-grid::after {
  z-index: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(125, 218, 255, 0.18) 50%, transparent 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.promo-grid.is-lit::before {
  animation: promo-torch-sweep 2200ms cubic-bezier(0.16, 0.84, 0.34, 1) both;
}

.promo-grid.is-lit::after {
  animation: promo-ambient-glow 2200ms ease-out both;
}

.promo-grid p,
.promo-grid strong,
.promo-grid span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 44px;
  margin: 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
}

.promo-grid p {
  justify-content: flex-start;
  font-size: clamp(16px, 1vw, 19px);
}

.promo-grid strong,
.promo-grid span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: clamp(18px, 2vw, 32px);
}

.promo-grid strong {
  justify-content: center;
  font-size: clamp(24px, 1.55vw, 31px);
  text-align: center;
}

.promo-grid.is-lit p,
.promo-grid.is-lit strong,
.promo-grid.is-lit span {
  animation: promo-copy-ignite 2200ms ease-out both;
}

.promo-grid.is-lit strong {
  animation-delay: 150ms;
}

.promo-grid.is-lit span {
  animation-delay: 320ms;
}

.promo-grid span {
  justify-content: flex-end;
  font-size: clamp(15px, 0.94vw, 18px);
  text-align: right;
}

@keyframes promo-torch-sweep {
  0% {
    opacity: 0;
    transform: translateX(-130%) skewX(-18deg);
  }

  16% {
    opacity: 1;
  }

  58% {
    opacity: 0.95;
  }

  82% {
    opacity: 0.32;
  }

  100% {
    opacity: 0;
    transform: translateX(620%) skewX(-18deg);
  }
}

@keyframes promo-ambient-glow {
  0% {
    opacity: 0.38;
  }

  48% {
    opacity: 0.96;
  }

  100% {
    opacity: 0.55;
  }
}

@keyframes promo-copy-ignite {
  0% {
    opacity: 1;
    filter: none;
    transform: translateY(0);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  }

  42% {
    opacity: 1;
    filter: brightness(1.22);
    transform: translateY(-1px);
    text-shadow: 0 0 18px rgba(210, 242, 255, 0.58), 0 1px 2px rgba(0, 0, 0, 0.24);
  }

  100% {
    opacity: 1;
    filter: none;
    transform: translateY(0);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-grid::before,
  .promo-grid::after,
  .promo-grid.is-lit::before,
  .promo-grid.is-lit::after,
  .promo-grid.is-lit p,
  .promo-grid.is-lit strong,
  .promo-grid.is-lit span {
    animation: none;
  }
}

.hero-section {
  padding: 10px 0 16px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
  height: 438px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 46px;
  background: linear-gradient(135deg, rgba(34, 151, 211, 0.13), transparent 44%), var(--surface);
}

.eyebrow {
  margin: 0;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-title,
.section-heading h2,
.projects-layout h2,
.feature-tile h2,
.page-title {
  letter-spacing: 0;
}

.hero-title {
  margin: 0;
  color: var(--ink);
  font-size: 56px;
  font-weight: 900;
  line-height: 0.96;
}

.eyebrow :where(p, div, h1, h2, h3, h4, h5, h6),
.hero-title :where(p, div, h1, h2, h3, h4, h5, h6) {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.hero-description {
  margin: 0;
  max-width: 530px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.hero-description :where(p, div, h1, h2, h3, h4, h5, h6, ul, ol) {
  margin: 0 0 10px;
}

.hero-description :where(p, div, h1, h2, h3, h4, h5, h6, ul, ol):last-child {
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.primary-link,
.secondary-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  overflow: hidden;
  font-weight: 900;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.primary-link {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 22px rgba(16, 20, 24, 0.12);
}

.secondary-link {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 8px 18px rgba(16, 20, 24, 0.06);
}

.primary-link:hover,
.primary-link:focus-visible {
  background: linear-gradient(135deg, var(--ink) 0%, #143a4e 52%, var(--brand-dark) 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(16, 20, 24, 0.22), 0 0 0 4px rgba(34, 151, 211, 0.12);
}

.secondary-link:hover,
.secondary-link:focus-visible {
  border-color: rgba(34, 151, 211, 0.55);
  background: linear-gradient(135deg, #fff 0%, #eef9fd 100%);
  color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(16, 20, 24, 0.14), 0 0 0 4px rgba(34, 151, 211, 0.1);
}

.primary-link:active,
.secondary-link:active {
  transform: translateY(-1px);
}

.hero-media {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #ecf2f1;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(120px, 9vw, 190px);
  content: "";
  pointer-events: none;
}

.hero-media::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 250, 249, 0.9) 0%,
    rgba(248, 250, 249, 0.58) 34%,
    rgba(248, 250, 249, 0.24) 68%,
    rgba(248, 250, 249, 0) 100%
  );
}

.hero-media::after {
  display: none;
}

.hero-media figure {
  position: absolute;
  inset: 0;
  display: block;
  height: 100%;
  min-height: 0;
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
}

.slide-control,
.rail-button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 10px 22px rgba(16, 20, 24, 0.16);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.slide-control:hover,
.slide-control:focus-visible,
.rail-button:hover,
.rail-button:focus-visible {
  background: var(--brand-dark);
  box-shadow: 0 16px 30px rgba(16, 20, 24, 0.22), 0 0 0 4px rgba(34, 151, 211, 0.16);
}

.slide-control.prev:hover,
.slide-control.prev:focus-visible,
.slide-control.next:hover,
.slide-control.next:focus-visible {
  transform: translateY(-50%) scale(1.08);
}

.rail-button:hover,
.rail-button:focus-visible {
  transform: scale(1.08);
}

.slide-control.prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.slide-control.next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.hero-dots .is-active {
  background: var(--brand);
  border-color: var(--brand);
}

.benefit-band {
  padding: 0 0 28px;
}

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

.benefit-grid article {
  display: grid;
  gap: 4px;
  min-height: 84px;
  padding: 16px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.benefit-grid article:nth-child(2) {
  background: var(--brand-dark);
}

.benefit-grid article:nth-child(3) {
  background: var(--leaf);
}

.benefit-grid article:nth-child(4) {
  background: #3b464a;
}

.benefit-grid strong {
  font-size: 28px;
  line-height: 1;
}

.benefit-grid span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.25;
}

.category-section,
.products-section {
  padding: 10px 0 38px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.category-section .section-heading {
  display: block;
}

.section-heading h2 {
  margin: 4px 0 0;
  font-size: 30px;
  line-height: 1.08;
}

.section-heading > p,
.product-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.category-wrap {
  position: relative;
  padding-inline: 58px;
}

.category-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(190px, 12.2vw, 238px);
  grid-template-columns: none;
  gap: clamp(16px, 1.55vw, 24px);
  align-items: start;
  width: min(100%, var(--category-rail-visible-width, 100%));
  box-sizing: border-box;
  margin-inline: auto;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  padding: 10px 8px 16px;
  scroll-padding-inline: 8px;
  scroll-snap-type: inline mandatory;
}

.category-rail::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: calc(var(--general-category-circle-size) + 58px);
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  scroll-snap-align: start;
  text-align: center;
}

.category-image {
  display: block;
  width: var(--general-category-circle-size);
  height: var(--general-category-circle-size);
  overflow: hidden;
  border: 4px solid var(--surface);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 12px 22px rgba(16, 20, 24, 0.12);
  transform: translateZ(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.category-item strong {
  max-width: 184px;
  font-size: 16px;
  line-height: 1.15;
  transition: color 180ms ease, transform 180ms ease;
}

.category-item.is-active .category-image {
  border-color: var(--brand);
}

.category-item:hover .category-image,
.category-item:focus-visible .category-image {
  border-color: var(--brand);
  box-shadow: 0 18px 30px rgba(34, 151, 211, 0.2), 0 10px 24px rgba(16, 20, 24, 0.16);
  transform: scale(var(--general-category-hover-scale));
}

.category-item:hover strong,
.category-item:focus-visible strong {
  color: var(--brand-dark);
  transform: translateY(2px);
}

.category-item[data-category=""] .category-image img {
  object-fit: contain;
  padding: 8px;
}

.rail-button {
  top: calc(10px + (var(--general-category-circle-size) / 2) - 20px);
}

.rail-prev {
  left: 0;
}

.rail-next {
  right: 0;
}

.feature-tiles {
  padding: 10px 0 44px;
}

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

.feature-tile {
  display: grid;
  grid-template-columns: 1fr 250px;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
}

.feature-tile div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 30px;
}

.feature-tile p,
.feature-tile h2 {
  margin: 0;
}

.feature-tile p {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-tile h2 {
  max-width: 360px;
  font-size: 28px;
  line-height: 1.08;
}

.feature-tile a {
  width: fit-content;
  margin-top: 8px;
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.tile-solar {
  background: var(--brand-dark);
}

.tile-smart {
  background: var(--coral);
}

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

.product-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 22px rgba(16, 20, 24, 0.08);
}

.product-media {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: #fff;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 180ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.03);
}

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.product-code {
  margin: 0;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

.product-card h3 {
  min-height: 48px;
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.product-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
}

.product-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card dd {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 800;
}

.product-body a,
.product-body .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.general-shop {
  padding: 16px 0 58px;
}

.general-shop .frame {
  width: calc(100% - var(--general-home-gutter));
  max-width: none;
}

.shop-order-form button,
.shop-product-buttons :is(a, button),
.shop-help-block a,
.shop-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.shop-order-form button:hover,
.shop-order-form button:focus-visible,
.shop-product-buttons :is(a, button):hover,
.shop-product-buttons :is(a, button):focus-visible,
.shop-help-block a:hover,
.shop-help-block a:focus-visible,
.shop-empty a:hover,
.shop-empty a:focus-visible {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 20, 24, 0.16);
}

.shop-catalog {
  padding: 22px 0 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: 284px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--general-sticky-offset) + 96px);
  display: grid;
  gap: 14px;
}

.shop-sidebar-heading {
  display: flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: -2px;
}

.shop-sidebar-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0;
}

.shop-filter-block {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 22px rgba(16, 20, 24, 0.06);
}

.shop-filter-block h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.12;
  letter-spacing: 0;
}

.shop-line-list {
  display: grid;
  gap: 8px;
}

.shop-line-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 850;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.shop-line-list a:hover,
.shop-line-list a:focus-visible,
.shop-line-list a.is-active {
  border-color: rgba(34, 151, 211, 0.38);
  background: var(--blue-soft);
  color: var(--brand-dark);
  transform: translateX(2px);
}

.shop-line-list small {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 24px;
  border-radius: 999px;
  background: rgba(16, 20, 24, 0.08);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.shop-help-block p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.shop-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 42px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 250, 249, 0.82);
  box-shadow: 0 8px 18px rgba(16, 20, 24, 0.05);
}

.shop-view-toggle button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  padding: 0 10px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.shop-view-toggle button:hover,
.shop-view-toggle button:focus-visible {
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.shop-view-toggle button.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 16px rgba(16, 20, 24, 0.12);
}

.shop-view-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.shop-view-icon::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: currentColor;
}

.shop-view-icon.is-grid::before {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  box-shadow: 10px 0 0 currentColor, 0 10px 0 currentColor, 10px 10px 0 currentColor;
}

.shop-view-icon.is-list::before {
  top: 2px;
  width: 16px;
  height: 3px;
  border-radius: 999px;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
}

.shop-order-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.shop-order-form label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.shop-order-form select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 38px 0 12px;
  font-weight: 800;
}

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

.shop-product-grid[data-view="list"] {
  grid-template-columns: 1fr;
}

.shop-product-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 22px rgba(16, 20, 24, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shop-product-grid[data-view="list"] .shop-product-card {
  grid-template-columns: 270px minmax(0, 1fr);
  grid-template-rows: auto;
  min-height: 246px;
}

.shop-product-card:hover {
  border-color: rgba(34, 151, 211, 0.46);
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(16, 20, 24, 0.14);
}

.shop-product-media {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: #fff;
}

.shop-product-grid[data-view="list"] .shop-product-media {
  min-height: 0;
  height: 100%;
}

.shop-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.2s ease;
}

.shop-product-card:hover .shop-product-media img {
  transform: scale(1.035);
}

.shop-product-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.shop-product-grid[data-view="list"] .shop-product-body {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  grid-template-areas:
    "meta commerce"
    "title actions"
    "specs actions";
  gap: 12px 18px;
  align-content: center;
}

.shop-product-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 850;
}

.shop-product-grid[data-view="list"] .shop-product-meta {
  grid-area: meta;
}

.shop-product-meta span,
.shop-product-meta a {
  min-width: 0;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  line-height: 1.1;
}

.shop-product-meta span {
  overflow: hidden;
  color: var(--muted);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.shop-product-meta b {
  margin-right: 5px;
  color: var(--brand-dark);
  font-weight: 950;
}

.shop-product-meta a {
  border: 1px solid rgba(34, 151, 211, 0.26);
  background: var(--blue-soft);
  color: var(--brand-dark);
  padding: 0 9px;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.shop-product-meta a:hover,
.shop-product-meta a:focus-visible {
  border-color: rgba(34, 151, 211, 0.55);
  background: #fff;
  transform: translateY(-1px);
}

.shop-product-card h3 {
  min-height: 48px;
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.shop-product-grid[data-view="list"] .shop-product-card h3 {
  grid-area: title;
  min-height: auto;
  max-width: 760px;
  font-size: 22px;
}

.shop-product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.shop-product-grid[data-view="list"] .shop-product-specs {
  grid-area: specs;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-self: end;
}

.shop-product-specs dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.shop-product-specs dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.shop-product-actions {
  display: grid;
  gap: 10px;
  align-items: start;
  margin-top: 4px;
}

.shop-product-grid[data-view="list"] .shop-product-actions {
  grid-area: actions;
  align-self: end;
  margin-top: 0;
}

.shop-product-commerce {
  display: grid;
  gap: 7px;
  align-items: start;
  margin-top: 2px;
}

.shop-product-grid[data-view="list"] .shop-product-commerce {
  grid-area: commerce;
  justify-items: end;
  margin-top: 0;
  text-align: right;
}

.shop-product-price {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.shop-stock-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.shop-stock-status.is-available {
  background: #e2f8ea;
  color: #128c43;
}

.shop-stock-status.is-low {
  background: #fff1c6;
  color: #7b5200;
}

.shop-stock-status.is-out {
  background: #fde2df;
  color: #a1291a;
}

.shop-quantity-control {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  min-height: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.shop-quantity-control button,
.shop-quantity-control input {
  min-width: 0;
  border: 0;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
}

.shop-quantity-control button {
  background: var(--surface-soft);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.shop-quantity-control button:hover,
.shop-quantity-control button:focus-visible {
  background: var(--blue-soft);
  color: var(--brand-dark);
}

.shop-quantity-control input {
  width: 100%;
  background: #fff;
  text-align: center;
  appearance: textfield;
}

.shop-quantity-control input::-webkit-outer-spin-button,
.shop-quantity-control input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.shop-quantity-control :disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.shop-product-buttons {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(58px, 0.56fr);
  gap: 8px;
}

.shop-product-actions .shop-buy-link:disabled,
.shop-product-actions .shop-buy-link[aria-disabled="true"] {
  background: rgba(16, 20, 24, 0.22);
  color: rgba(16, 20, 24, 0.48);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.shop-product-actions .shop-view-link {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-dark);
}

.shop-product-actions .shop-view-link:hover,
.shop-product-actions .shop-view-link:focus-visible {
  border-color: rgba(34, 151, 211, 0.55);
  background: var(--blue-soft);
  color: var(--brand-dark);
}

.shop-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 250, 249, 0.74);
}

.shop-pagination a,
.shop-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  padding: 0 12px;
  font-size: 14px;
  font-weight: 900;
}

.shop-pagination a {
  background: #fff;
  box-shadow: 0 6px 14px rgba(16, 20, 24, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.shop-pagination a:hover,
.shop-pagination a:focus-visible,
.shop-pagination a.is-active {
  border-color: rgba(34, 151, 211, 0.45);
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(16, 20, 24, 0.14);
}

.shop-pagination a.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

.shop-pagination span {
  color: var(--muted);
}

.shop-empty {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.shop-empty h3,
.shop-empty p {
  margin: 0 0 12px;
}

.single-product-page {
  padding: 22px 0 58px;
}

.single-product-page .frame {
  width: calc(100% - var(--general-home-gutter));
  max-width: none;
}

.single-product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.single-product-breadcrumb a {
  color: var(--brand-dark);
}

.single-product-breadcrumb span:last-child {
  overflow: hidden;
  max-width: min(720px, 100%);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.single-product-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1fr);
  gap: 18px;
  align-items: start;
}

.single-product-media-panel,
.single-product-summary-panel,
.single-product-info-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 26px rgba(16, 20, 24, 0.08);
}

.single-product-media-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.single-product-main-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1.08;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(199, 208, 206, 0.82);
  border-radius: 8px;
  background: #fff;
}

.single-product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.single-product-thumbs-carousel {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 8px;
  align-items: center;
}

.single-product-thumbs-carousel.is-single {
  grid-template-columns: 1fr;
}

.single-product-thumb-nav {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.single-product-thumb-nav:hover,
.single-product-thumb-nav:focus-visible {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(16, 20, 24, 0.14);
}

.single-product-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78px;
  gap: 10px;
  overflow-x: auto;
  padding: 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
}

.single-product-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.single-product-thumb:hover,
.single-product-thumb:focus-visible,
.single-product-thumb.is-active {
  border-color: var(--brand);
  box-shadow: 0 8px 16px rgba(34, 151, 211, 0.16);
}

.single-product-thumb.is-active {
  transform: translateY(-1px);
}

.single-product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.single-product-summary-panel {
  position: sticky;
  top: calc(var(--general-sticky-offset) + 118px);
  display: grid;
  gap: 13px;
  padding: clamp(16px, 1.7vw, 26px);
}

.single-product-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.single-product-kicker > a {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  border: 1px solid rgba(34, 151, 211, 0.32);
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--brand-dark);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 950;
}

.single-product-summary-panel h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.single-product-price {
  color: var(--ink);
  font-size: 23px;
  font-weight: 950;
}

.single-product-price .woocommerce-price-suffix {
  display: inline-flex;
  margin-left: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.single-product-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.single-product-metrics div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.single-product-metrics span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.single-product-metrics strong,
.single-product-metrics a {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.single-product-metrics a {
  color: var(--brand-dark);
}

.single-product-summary-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.single-product-summary-copy p {
  margin: 0;
}

.single-product-buy {
  display: grid;
  gap: 10px;
}

.single-product-buy-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 8px;
}

.single-product-buy-button,
.single-product-native-cart .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.single-product-buy-button:hover,
.single-product-buy-button:focus-visible,
.single-product-native-cart .single_add_to_cart_button:hover,
.single-product-native-cart .single_add_to_cart_button:focus-visible {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 20, 24, 0.16);
}

.single-product-buy-button:disabled,
.single-product-buy-button[aria-disabled="true"],
.single-product-native-cart .single_add_to_cart_button:disabled,
.single-product-native-cart .single_add_to_cart_button.disabled {
  background: rgba(16, 20, 24, 0.22);
  color: rgba(16, 20, 24, 0.48);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.single-product-native-cart form.cart,
.single-product-native-cart .variations_form {
  display: grid;
  gap: 10px;
}

.single-product-variable-cart {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(199, 208, 206, 0.78);
  border-radius: 8px;
  background: #fff;
}

.single-product-variable-cart h2 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.1;
}

.single-product-variable-cart table.variations {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.single-product-variable-cart table.variations tbody,
.single-product-variable-cart table.variations tr,
.single-product-variable-cart table.variations th,
.single-product-variable-cart table.variations td {
  display: block;
  width: 100%;
}

.single-product-variable-cart table.variations th,
.single-product-variable-cart table.variations td {
  padding: 0;
  border: 0;
}

.single-product-variable-cart table.variations tr {
  margin-bottom: 16px;
}

.single-product-variable-cart table.variations tr:last-child {
  margin-bottom: 0;
}

.single-product-variable-cart table.variations th {
  margin-bottom: 8px;
}

.single-product-variable-cart table.variations label {
  display: block;
  margin: 0;
  color: #3f4a4d;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.single-product-variable-cart table.variations select:not(.general-variation-select-enhanced) {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
  padding: 0 40px 0 12px;
  font-weight: 900;
}

.single-product-variable-cart table.variations select.general-variation-select-enhanced {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.general-variation-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 8px;
  width: 100%;
  margin-top: 0;
}

.general-variation-option {
  min-height: 35px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.general-variation-option:hover,
.general-variation-option:focus-visible {
  border-color: rgba(34, 151, 211, 0.62);
  background: #fff;
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.general-variation-option.is-selected {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 18px rgba(34, 151, 211, 0.2);
}

.general-variation-option:disabled,
.general-variation-option.is-disabled {
  border-color: rgba(199, 208, 206, 0.62);
  background: rgba(238, 242, 241, 0.62);
  color: rgba(16, 20, 24, 0.32);
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
  text-decoration: line-through;
}

.single-product-variable-cart .reset_variations {
  display: inline-flex;
  margin-top: 5px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-product-variable-cart .single_variation_wrap,
.single-product-variable-cart .woocommerce-variation {
  display: grid;
  gap: 8px;
}

.single-product-variable-cart .woocommerce-variation-price {
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
}

.single-product-variable-cart .woocommerce-variation-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.single-product-variable-cart .woocommerce-variation-availability {
  display: none;
}

.single-product-variable-cart .woocommerce-variation-description p {
  margin: 0;
}

.single-product-variable-cart .stock {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: #e8f8ee;
  color: #137333;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 950;
}

.single-product-variable-cart .stock.out-of-stock {
  background: #fde2df;
  color: #a1291a;
}

.single-product-variable-cart .woocommerce-variation-add-to-cart,
.single-product-native-cart form.cart:not(.variations_form) {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 8px;
}

.single-product-variable-cart .woocommerce-variation-add-to-cart-disabled {
  opacity: 0.72;
}

.single-product-native-cart .quantity input {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  font-weight: 900;
}

.single-product-native-cart .quantity.shop-quantity-control input {
  border: 0;
  border-radius: 0;
}

.single-product-native-cart .quantity.shop-quantity-control {
  width: 100%;
  min-height: 40px;
}

.single-product-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.single-product-support a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 8px;
  padding: 0 12px;
  font-weight: 950;
}

.single-product-support a:first-child {
  background: var(--ink);
  color: #fff;
}

.single-product-support a:last-child {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-dark);
}

.single-product-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.82fr) minmax(260px, 0.7fr);
  gap: 14px;
  margin-top: 18px;
}

.single-product-info-grid article {
  padding: 20px;
}

.single-product-info-grid h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0;
}

.single-product-richtext,
.single-product-info-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.single-product-richtext > :first-child,
.single-product-info-grid p:first-of-type {
  margin-top: 0;
}

.single-product-richtext > :last-child,
.single-product-info-grid p:last-of-type {
  margin-bottom: 0;
}

.single-product-spec-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.single-product-spec-list div {
  display: grid;
  grid-template-columns: minmax(90px, 0.38fr) minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(199, 208, 206, 0.76);
}

.single-product-spec-list div:last-child {
  border-bottom: 0;
}

.single-product-spec-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.single-product-spec-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.single-product-spec-list a {
  color: var(--brand-dark);
}

.single-product-service-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.single-product-service-list li {
  min-height: 38px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 900;
}

.projects-band {
  padding: 50px 0;
  background: var(--ink);
  color: #fff;
}

.projects-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 38px;
  align-items: center;
}

.projects-layout h2 {
  margin: 6px 0 14px;
  max-width: 520px;
  font-size: 36px;
  line-height: 1.05;
}

.projects-layout p {
  margin: 0 0 22px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.48;
}

.projects-layout .eyebrow {
  color: #9dd7f1;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-list li {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.project-list strong {
  font-size: 20px;
  line-height: 1.12;
}

.project-list span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.4;
}

.site-footer {
  padding: 0;
  background: var(--ink);
  color: #fff;
}

.footer-shell {
  padding: 38px 0 22px;
}

.footer-topline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-topline span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.04);
  color: #dff3fb;
  font-size: 14px;
  font-weight: 900;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr) minmax(240px, 0.9fr);
  gap: clamp(24px, 3vw, 58px);
  padding: 42px 0 34px;
}

.footer-brand {
  max-width: 520px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: 186px;
  height: 72px;
  border-radius: 8px;
  padding: 8px 12px;
  background: #fff;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  margin: 20px 0 0;
  max-width: 470px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.5;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-primary,
.footer-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 900;
}

.footer-primary {
  background: var(--brand);
  color: #fff;
}

.footer-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.footer-primary:hover,
.footer-primary:focus-visible {
  background: #2ba8e7;
}

.footer-secondary:hover,
.footer-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-links ul,
.footer-contact ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

.footer-contact span {
  color: #9dd7f1;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 750;
}

.footer-bottom p {
  margin: 0;
}

.page-shell {
  padding: 48px 0;
}

.page-card {
  max-width: 980px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.page-title {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.05;
}

.entry-content {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.entry-content a {
  color: var(--brand-dark);
  font-weight: 800;
}

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

.woocommerce ul.products li.product {
  width: auto;
  margin: 0;
  padding: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  margin: 0 0 12px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin-left: 14px;
  margin-right: 14px;
}

.woocommerce ul.products li.product .button {
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
}

@media (max-width: 1160px) {
  .frame {
    width: min(100% - 40px, 1040px);
  }

  .nav-inner {
    grid-template-columns: 132px minmax(146px, auto) minmax(180px, 1fr) max-content max-content max-content;
    gap: 12px;
  }

  .category-panel-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-shell {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-media figure {
    position: static;
    height: 438px;
  }

  .product-grid,
  .shop-product-grid,
  .woocommerce .products ul,
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .general-shop .frame {
    width: min(100% - 40px, 1040px);
    max-width: none;
  }

  .single-product-page .frame {
    width: min(100% - 40px, 1040px);
    max-width: none;
  }

  .single-product-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .single-product-info-grid article:first-child {
    grid-column: 1 / -1;
  }

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

  .shop-sidebar {
    position: static;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    margin-top: 0;
  }

  .shop-sidebar-heading {
    grid-column: 1 / -1;
  }

  .shop-line-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-product-grid[data-view="list"] .shop-product-card {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .shop-product-grid[data-view="list"] .shop-product-body {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.45fr);
  }

  .shop-product-grid[data-view="list"] .shop-product-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-tile {
    grid-template-columns: 1fr 200px;
  }

  .project-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --general-topbar-height: 36px;
  }

  .site-header {
    position: static;
    top: auto;
  }

  .site-header.is-mobile-nav-compact {
    min-height: calc(var(--general-topbar-height) + var(--general-mobile-nav-expanded-height));
  }

  .site-header.is-mobile-nav-compact .main-nav {
    position: fixed;
    top: var(--general-sticky-offset);
    left: 0;
    right: 0;
    z-index: 20;
    box-shadow: 0 1px 0 rgba(16, 20, 24, 0.08);
  }

  .frame {
    width: min(100% - 28px, 720px);
  }

  .general-shop .frame {
    width: calc(100% - 28px);
  }

  .single-product-page .frame {
    width: calc(100% - 28px);
  }

  body.home .frame,
  .site-header .frame {
    width: calc(100% - 28px);
  }

  .welcome-inner {
    font-size: 13px;
  }

  .nav-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    min-height: auto;
    padding: 12px 0;
  }

  .quick-actions {
    justify-self: end;
  }

  .brand img {
    width: 142px;
    height: 48px;
  }

  .search-form {
    grid-column: 1 / -1;
    order: 4;
    justify-self: stretch;
  }

  .category-trigger {
    grid-column: 1 / -1;
    order: 2;
    justify-content: center;
    width: 100%;
  }

  .shop-link,
  .locals-link {
    order: 3;
    width: 100%;
  }

  .shop-link {
    grid-column: 1 / 2;
  }

  .locals-link {
    grid-column: 2 / 3;
  }

  .site-header.is-mobile-nav-compact .category-trigger {
    display: none;
  }

  .site-header.is-mobile-nav-compact .shop-link,
  .site-header.is-mobile-nav-compact .locals-link {
    display: none;
  }

  .site-header.is-mobile-nav-compact .search-form {
    order: 2;
  }

  .category-panel {
    padding-top: 0;
  }

  .category-panel-inner {
    width: min(100% - 28px, 720px);
    max-height: min(72vh, 620px);
    overflow: auto;
    padding: 14px;
  }

  .category-tree {
    grid-template-columns: 1fr;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 6px;
    text-align: left;
  }

  .promo-grid strong {
    justify-content: flex-start;
    border-left: 0;
    padding-left: 0;
    font-size: 22px;
    text-align: left;
  }

  .promo-grid span {
    justify-content: flex-start;
    border-left: 0;
    padding-left: 0;
    text-align: left;
  }

  .hero-copy {
    padding: 30px 22px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-media figure {
    height: auto;
  }

  .hero-media img {
    min-height: 310px;
    max-height: 370px;
  }

  .single-product-hero,
  .single-product-info-grid {
    grid-template-columns: 1fr;
  }

  .single-product-summary-panel {
    position: static;
  }

  .single-product-info-grid article:first-child {
    grid-column: auto;
  }

  .benefit-grid,
  .tile-grid,
  .product-grid,
  .projects-layout,
  .woocommerce .products ul,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    grid-template-columns: 1fr;
  }

  .shop-line-list,
  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-toolbar {
    display: grid;
    gap: 12px;
    justify-items: stretch;
  }

  .shop-order-form {
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .shop-view-toggle {
    justify-self: start;
  }

  .shop-order-form select {
    flex: 1 1 180px;
  }

  .shop-product-grid[data-view="list"] .shop-product-card {
    grid-template-columns: 1fr;
    grid-template-rows: 250px auto;
    min-height: 0;
  }

  .shop-product-grid[data-view="list"] .shop-product-body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "title"
      "specs"
      "commerce"
      "actions";
  }

  .shop-product-grid[data-view="list"] .shop-product-commerce {
    justify-items: start;
    text-align: left;
  }

  .feature-tile {
    grid-template-columns: 1fr 150px;
    min-height: 220px;
  }

  .feature-tile div {
    padding: 22px;
  }

  .feature-tile h2 {
    font-size: 24px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .product-heading > p {
    margin-top: 8px;
  }

  .projects-layout h2 {
    font-size: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-topline {
    grid-template-columns: 1fr;
  }

  .footer-topline span {
    min-height: 48px;
  }

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

@media (max-width: 520px) {
  :root {
    --general-category-circle-size: 96px;
    --general-category-hover-scale: 1.04;
  }

  .welcome-inner a {
    display: none;
  }

  .promo-strip {
    padding-top: 8px;
  }

  .hero-section {
    padding-top: 8px;
  }

  .general-shop {
    padding-top: 8px;
  }

  .single-product-page {
    padding-top: 8px;
  }

  .single-product-breadcrumb span:last-child {
    max-width: 100%;
  }

  .single-product-main-image {
    aspect-ratio: 1;
  }

  .single-product-thumbs-carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 6px;
  }

  .single-product-thumbs-carousel.is-single {
    grid-template-columns: 1fr;
  }

  .single-product-thumb-nav {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .single-product-thumbs {
    grid-auto-columns: 64px;
    gap: 8px;
  }

  .single-product-summary-panel h1 {
    font-size: 23px;
    line-height: 1.12;
  }

  .single-product-metrics,
  .single-product-buy-row,
  .single-product-variable-cart .woocommerce-variation-add-to-cart,
  .single-product-native-cart form.cart:not(.variations_form),
  .single-product-support {
    grid-template-columns: 1fr;
  }

  .single-product-info-grid article {
    padding: 16px;
  }

  .single-product-spec-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

  .shop-product-meta {
    grid-template-columns: 1fr;
  }

  .shop-product-meta a {
    justify-content: center;
    width: fit-content;
  }

  .shop-line-list,
  .shop-product-grid,
  .shop-product-specs {
    grid-template-columns: 1fr;
  }

  .shop-product-card {
    grid-template-rows: 220px 1fr;
  }

  .shop-pagination {
    gap: 6px;
    padding: 10px;
  }

  .shop-pagination a,
  .shop-pagination span {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero-title {
    font-size: 38px;
  }

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

  .slide-control {
    width: 36px;
    height: 36px;
  }

  .category-wrap {
    padding-inline: 0;
  }

  .category-rail {
    grid-auto-flow: column;
    grid-auto-columns: 112px;
    grid-template-columns: none;
    gap: 14px;
    padding-inline: 40px;
    scroll-padding-inline: 40px;
  }

  .category-image {
    width: 96px;
    height: 96px;
  }

  .category-item {
    min-height: 146px;
  }

  .feature-tile {
    grid-template-columns: 1fr;
  }

  .feature-tile img {
    height: 190px;
  }

  .product-card {
    grid-template-rows: 230px 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 30px 0 26px;
  }

  .footer-logo {
    width: 168px;
    height: 66px;
  }

  .footer-brand p {
    font-size: 16px;
  }

  .footer-cta a {
    width: 100%;
  }
}
