:root {
  --ink: #172027;
  --muted: #5c6871;
  --line: #dfe5e8;
  --paper: #ffffff;
  --soft: #f3f6f7;
  --red: #c8222f;
  --red-dark: #9e1722;
  --teal: #007d83;
  --teal-dark: #075f64;
  --charcoal: #263039;
  --shadow: 0 20px 60px rgba(23, 32, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--ink);
  color: white;
}

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

.topbar {
  background: var(--charcoal);
  color: white;
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.topbar__inner span:first-child {
  margin-right: auto;
  color: #dce9eb;
  font-weight: 700;
}

.masthead {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 216px;
  font-weight: 800;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 44px;
  place-items: center;
  background: var(--red);
  color: white;
  font-size: 16px;
  letter-spacing: 0;
  border-radius: 4px;
}

.brand__text {
  display: grid;
  gap: 1px;
  color: var(--ink);
  line-height: 1.05;
}

.brand__text strong {
  font-size: 20px;
}

.brand__text small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.custom-logo-link img {
  width: auto;
  max-width: 190px;
  max-height: 48px;
  object-fit: contain !important;
}

.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

.nav-menu,
.nav-menu ul {
  list-style: none;
}

.nav-menu li {
  position: relative;
  margin: 0;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a:hover {
  color: var(--red);
}

.nav-menu .sub-menu,
.nav-menu .children {
  position: absolute;
  z-index: 50;
  top: calc(100% + 10px);
  left: 0;
  min-width: 245px;
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 46px rgba(23, 32, 39, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.onlineups-added-products-menu > .sub-menu {
  min-width: 280px;
}

.nav-menu .sub-menu::before,
.nav-menu .children::before {
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  content: "";
}

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

.nav-menu .sub-menu .sub-menu,
.nav-menu .children .children {
  top: -10px;
  left: calc(100% + 10px);
}

.nav-menu .sub-menu a,
.nav-menu .children a {
  display: flex;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--charcoal);
  font-size: 14px;
  white-space: normal;
}

.nav-menu .sub-menu a:hover,
.nav-menu .children a:hover {
  background: var(--soft);
  color: var(--red);
}

.nav-menu .menu-item-has-children > a::after,
.nav-menu .page_item_has_children > a::after {
  display: inline-block;
  margin-left: 7px;
  color: var(--muted);
  content: "▾";
  font-size: 10px;
}

.nav-menu .sub-menu .menu-item-has-children > a::after,
.nav-menu .children .page_item_has_children > a::after {
  margin-left: auto;
  content: "›";
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
}

.header-cta,
.button--primary {
  background: var(--red);
  color: white;
}

.header-cta:hover,
.button--primary:hover {
  background: var(--red-dark);
}

.button--secondary {
  border-color: rgba(23, 32, 39, 0.22);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: white;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  display: grid;
  align-items: stretch;
  background: #111a20;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at center, rgba(13, 21, 27, 0.18) 0%, rgba(13, 21, 27, 0.42) 48%, rgba(13, 21, 27, 0.82) 100%),
    linear-gradient(180deg, rgba(13, 21, 27, 0.2) 0%, rgba(13, 21, 27, 0.5) 48%, rgba(13, 21, 27, 0.9) 100%);
  pointer-events: none;
}

.hero__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 160px 0 76px;
  text-align: center;
}

.hero__copy {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: 58px;
}

.hero h1 {
  max-width: 1120px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(46px, 5.1vw, 76px);
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.42);
}

.hero .eyebrow {
  color: #f2fbfb;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.42);
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 23px;
}

.hero__lead {
  max-width: 880px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.38);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(920px, 100%);
  margin: 42px auto 0;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.hero__stats span {
  min-height: 88px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
}

.hero__stats strong {
  display: block;
  color: #fff;
  font-size: 22px;
}

.section {
  padding: 86px 0;
}

.section--intro,
.section--service {
  background: var(--soft);
}

.section--products {
  background: #fff;
}

.split,
.service-grid,
.quote-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: start;
}

.split > p,
.service-grid > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  margin-bottom: 34px;
}

.products-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 46px;
}

.products-panel__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fbfb, #eef4f5);
}

.products-panel__intro h2 {
  font-size: 34px;
}

.products-panel__intro p {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 17px;
}

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

.category-card {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 34, 47, 0.3);
  box-shadow: 0 16px 38px rgba(23, 32, 39, 0.1);
}

.category-card span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

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

.category-card strong {
  margin-top: auto;
  color: var(--red);
  font-size: 14px;
}

.featured-head {
  margin-top: 46px;
}

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

.product-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 125, 131, 0.36);
  box-shadow: 0 16px 40px rgba(23, 32, 39, 0.1);
}

.product-card span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  display: -webkit-box;
  min-height: 58px;
  margin-top: 14px;
  overflow: hidden;
  font-size: 22px;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card p {
  display: -webkit-box;
  min-height: 66px;
  margin: 14px 0 24px;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card a {
  margin-top: auto;
  color: var(--red);
  font-weight: 800;
}

.product-card--linked {
  min-height: 500px;
}

.product-card .product-card__visual {
  display: block;
  height: 220px;
  margin: 0;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 12%, rgba(0, 125, 131, 0.13), transparent 28%),
    linear-gradient(180deg, #f7fafb 0%, #eef3f5 100%);
}

.product-card .product-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: multiply;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 26px 26px;
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.product-card__actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.product-card__actions a:first-child {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.product-card__actions a:hover {
  border-color: var(--red);
  color: var(--red);
}

.product-card__actions a:first-child:hover {
  background: var(--red-dark);
  color: white;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 20px;
  border-left: 4px solid var(--red);
  background: white;
}

.service-list strong {
  color: var(--ink);
}

.service-list span {
  color: var(--muted);
}

.section--sectors {
  background:
    linear-gradient(180deg, #f7fafb 0%, #ffffff 100%);
}

.section--sectors .section-head {
  max-width: 780px;
}

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

.sector-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 18px 42px rgba(23, 32, 39, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(23, 32, 39, 0.16);
}

.sector-card__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #162027;
}

.sector-card__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(15, 24, 30, 0.02) 0%, rgba(15, 24, 30, 0.38) 48%, rgba(15, 24, 30, 0.9) 100%),
    linear-gradient(90deg, rgba(200, 34, 47, 0.24), rgba(0, 125, 131, 0.18));
}

.sector-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.sector-card:hover .sector-card__visual img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.sector-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.sector-card h3 {
  color: white;
  font-size: 24px;
}

.sector-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.45;
}

.quote-band {
  padding: 60px 0;
  background: var(--charcoal);
  color: white;
}

.quote-band h2,
.quote-band .eyebrow {
  color: white;
}

.quote-band__inner {
  align-items: center;
}

.quote-band__inner .button {
  justify-self: end;
}

.content-page {
  padding: 78px 0;
}

.contact-hero {
  padding: 88px 0 56px;
  background: linear-gradient(135deg, #f4f7f8, #ffffff);
  border-bottom: 1px solid var(--line);
}

.contact-hero h1 {
  max-width: 860px;
  font-size: 46px;
}

.service-hero {
  padding: 88px 0 62px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.78)),
    linear-gradient(135deg, #edf4f5, #ffffff);
}

.service-hero h1 {
  max-width: 900px;
  font-size: 48px;
}

.service-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.service-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.service-page-content,
.service-page-aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 44px rgba(23, 32, 39, 0.07);
}

.service-page-content {
  padding: 38px;
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.75;
}

.service-page-content h2 {
  margin-top: 34px;
  color: var(--ink);
  font-size: 30px;
}

.service-page-content h2:first-child {
  margin-top: 0;
}

.service-page-content ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.service-page-content li {
  padding: 15px 18px;
  border-left: 4px solid var(--red);
  background: var(--soft);
}

.service-page-content .button {
  margin-top: 10px;
  color: white;
  text-decoration: none;
}

.service-page-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  padding: 28px;
}

.service-page-aside h2 {
  font-size: 26px;
}

.service-page-aside p {
  color: var(--muted);
}

.service-page-aside .button {
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.contact-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 44px rgba(23, 32, 39, 0.08);
}

.contact-card h2 {
  font-size: 30px;
}

.contact-card p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 3px;
  padding: 16px;
  border-left: 4px solid var(--red);
  background: var(--soft);
}

.contact-list strong {
  color: var(--ink);
}

.contact-list span {
  color: var(--muted);
}

.contact-map {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.content-narrow {
  max-width: 840px;
}

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

.entry-content a {
  color: var(--red);
  text-decoration: underline;
}

.entry-content h2 {
  margin-top: 34px;
  color: var(--ink);
  font-size: 30px;
}

.entry-content ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.entry-content li {
  padding: 14px 16px;
  border-left: 4px solid var(--red);
  background: var(--soft);
}

.entry-content .button {
  margin-top: 12px;
  color: white;
  text-decoration: none;
}

.entry-meta {
  margin: 16px 0 24px;
  color: var(--muted);
}

.post-list {
  display: grid;
  gap: 18px;
}

.post-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.post-card h2 {
  font-size: 26px;
}

.site-footer {
  padding: 62px 0 28px;
  background: #11181d;
  color: #d8e0e3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}

.footer-brand {
  color: white;
  font-size: 24px;
  font-weight: 900;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: white;
  font-size: 16px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 7px 0;
  color: #d8e0e3;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aab6ba;
  font-size: 14px;
}

.float-whatsapp {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: var(--teal);
  color: white;
  box-shadow: 0 16px 36px rgba(0, 125, 131, 0.28);
  font-weight: 900;
}

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

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

.woocommerce ul.products li.product.onlineups-product-card {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.woocommerce ul.products li.product.onlineups-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(23, 32, 39, 0.12);
}

.onlineups-product-card__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  color: inherit;
}

.onlineups-product-card__image {
  position: relative;
  flex: 0 0 250px;
  height: 250px;
  overflow: hidden;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: #f5f8f9;
}

.woocommerce ul.products li.product.onlineups-product-card a img,
.onlineups-product-card__image img {
  display: block !important;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center center;
  mix-blend-mode: multiply;
}

.product-visual {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fafb 0%, #e9eff1 100%);
}

.product-visual::before {
  position: absolute;
  left: 18%;
  top: 18%;
  width: 64%;
  height: 64%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,125,131,0.18), rgba(0,125,131,0));
  content: "";
}

.product-visual__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 4px;
  background: var(--red);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.product-visual__unit {
  position: absolute;
  bottom: 22px;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, #303c45, #12191f);
  box-shadow: 0 18px 32px rgba(23, 32, 39, 0.2);
}

.product-visual__unit--main {
  right: 28%;
  width: 25%;
  height: 58%;
}

.product-visual__unit--side {
  right: 16%;
  width: 17%;
  height: 46%;
  opacity: 0.85;
}

.product-visual__unit--main::before,
.product-visual__unit--side::before {
  position: absolute;
  top: 18%;
  left: 25%;
  width: 50%;
  height: 18%;
  border-radius: 4px;
  background: var(--teal);
  content: "";
}

.product-visual__line {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 18px;
  height: 3px;
  background: rgba(23, 32, 39, 0.12);
}

.onlineups-product-card__category {
  display: block;
  min-height: 16px;
  margin: 22px 24px 10px;
  overflow: hidden;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  display: -webkit-box;
  min-height: 58px;
  max-height: 58px;
  overflow: hidden;
  padding: 0;
  margin: 0 24px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.onlineups-product-card p {
  display: -webkit-box;
  min-height: 76px;
  max-height: 76px;
  overflow: hidden;
  margin: 16px 24px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.onlineups-product-card__actions {
  display: flex;
  gap: 10px;
  margin: auto 24px 24px;
}

.onlineups-product-card__button {
  display: inline-flex !important;
  flex: 1;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 15px;
  background: var(--red);
  color: white;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.onlineups-product-card__button--ghost {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.onlineups-product-card__button:hover {
  background: var(--red-dark);
  color: white;
}

.onlineups-product-card__button--ghost:hover {
  border-color: var(--red);
  background: white;
  color: var(--red);
}

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

.woocommerce div.product {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.woocommerce div.product .product_title {
  font-size: 42px;
}

.woocommerce-page-wrap {
  background: #fff;
}

.woocommerce-page-wrap .woocommerce {
  max-width: 1180px;
  margin: 0 auto;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: 44px;
}

.woocommerce div.product div.summary {
  padding-top: 10px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--charcoal);
  font-size: 18px;
}

.woocommerce div.product form.cart,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  display: none;
}

.woocommerce .woocommerce-review-link,
.woocommerce .star-rating,
.woocommerce #reviews,
.woocommerce #tab-reviews,
.woocommerce .comment-respond,
.woocommerce .woocommerce-Reviews {
  display: none !important;
}

.woocommerce div.product .product_meta {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.woocommerce div.product .woocommerce-tabs {
  clear: both;
  padding-top: 24px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 6px 6px 0 0;
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 0 8px 8px 8px;
}

.woocommerce .widget,
.woocommerce-page .widget {
  display: none;
}

@media (max-width: 1120px) {
  .brand {
    min-width: 194px;
  }

  .brand__text strong {
    font-size: 18px;
  }

  .nav-menu {
    gap: 11px;
  }

  .nav-menu a {
    font-size: 13px;
  }

  .header-cta {
    padding-inline: 12px;
  }
}

@media (max-width: 980px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .masthead {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    margin: 0;
    border-top: 1px solid var(--line);
    background: white;
  }

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

  .nav-menu {
    display: grid;
    gap: 0;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 12px 0;
    white-space: normal;
  }

  .nav-menu a {
    display: block;
    padding: 13px 0;
  }

  .nav-menu .sub-menu,
  .nav-menu .children,
  .nav-menu .sub-menu .sub-menu,
  .nav-menu .children .children {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-menu .sub-menu::before,
  .nav-menu .children::before {
    display: none;
  }

  .nav-menu .sub-menu a,
  .nav-menu .children a {
    min-height: 34px;
    padding: 7px 0;
    background: transparent;
    font-size: 13px;
  }

  .nav-menu .menu-item-has-children > a::after,
  .nav-menu .page_item_has_children > a::after {
    content: "";
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background:
      radial-gradient(circle at center, rgba(13, 21, 27, 0.22) 0%, rgba(13, 21, 27, 0.48) 54%, rgba(13, 21, 27, 0.86) 100%),
      linear-gradient(180deg, rgba(13, 21, 27, 0.22) 0%, rgba(13, 21, 27, 0.56) 50%, rgba(13, 21, 27, 0.9) 100%);
  }

  .hero__image {
    object-position: center center;
  }

  .hero__copy {
    max-width: 900px;
  }

  h1 {
    font-size: 42px;
  }

  .hero h1 {
    font-size: clamp(40px, 5.2vw, 58px);
  }

  h2 {
    font-size: 30px;
  }

  .hero__stats,
  .product-grid,
  .woocommerce ul.products,
  .sector-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .service-grid,
  .contact-grid,
  .service-page-grid,
  .products-panel,
  .quote-band__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-page-aside {
    position: static;
  }

  .quote-band__inner .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .topbar__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 16px;
    padding: 8px 0;
  }

  .topbar__inner span:first-child {
    width: 100%;
  }

  .hero {
    min-height: 590px;
  }

  .hero::after {
    background:
      radial-gradient(circle at center, rgba(8, 14, 18, 0.2) 0%, rgba(8, 14, 18, 0.5) 48%, rgba(8, 14, 18, 0.88) 100%),
      linear-gradient(180deg, rgba(8, 14, 18, 0.12) 0%, rgba(8, 14, 18, 0.42) 42%, rgba(8, 14, 18, 0.92) 100%);
  }

  .hero__image {
    object-position: center center;
  }

  .hero__inner {
    justify-content: flex-end;
    padding: 150px 0 38px;
  }

  .hero__copy {
    max-width: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.4vw, 39px);
    line-height: 1.08;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .hero__lead,
  .split > p,
  .service-grid > div > p,
  .entry-content {
    font-size: 16px;
  }

  .hero__lead {
    max-width: 100%;
    margin-top: 18px;
    line-height: 1.55;
  }

  .hero__actions {
    justify-content: center;
    margin-top: 22px;
  }

  .hero__actions .button {
    flex: 1 1 150px;
    justify-content: center;
    min-width: 0;
  }

  .hero__stats,
  .product-grid,
  .product-category-grid,
  .woocommerce ul.products,
  .sector-grid,
  .footer-grid,
  .service-list div {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    margin-top: 24px;
    display: none;
  }

  .float-whatsapp {
    display: none;
  }

  .hero__stats span {
    min-height: 70px;
    padding: 14px;
  }

  .hero__stats strong {
    font-size: 19px;
  }


  .woocommerce ul.products li.product.onlineups-product-card {
    min-height: 0;
  }

  .onlineups-product-card__image {
    flex-basis: 220px;
    height: 220px;
  }

  .onlineups-product-card__actions {
    flex-direction: column;
  }

  .product-card--linked {
    min-height: 0;
  }

  .product-card .product-card__visual {
    height: 200px;
  }

  .sector-card,
  .sector-card__body {
    min-height: 280px;
  }

  .section {
    padding: 58px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
