:root {
  --gmd-navy: #14233d;
  --gmd-blue: #26aae1;
  --gmd-teal: #26aae1;
  --gmd-deep-blue: #17459e;
  --gmd-white: #ffffff;
  --gmd-line: #d9e2ec;
}

.gmd-pro-header {
  position: relative;
  z-index: 8000;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  color: var(--gmd-pro-text, var(--gmd-navy));
}

.gmd-pro-header--sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin-right: 0;
  margin-left: 0;
}

body.admin-bar .gmd-pro-header--sticky {
  top: 32px;
}

.gmd-pro-header__wrap {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

.gmd-pro-header__top {
  background: var(--gmd-pro-top-bg, var(--gmd-navy));
  color: var(--gmd-pro-top-text, #ffffff);
}

.gmd-pro-header__top .gmd-pro-header__wrap {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.gmd-pro-header__top .gmd-header-contact {
  margin-right: auto;
  color: inherit;
}

.gmd-pro-header__top .gmd-language-switcher summary {
  width: 72px;
  min-height: 30px;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  color: var(--gmd-pro-top-text, #ffffff);
  box-shadow: none;
}

.gmd-pro-header__top .gmd-language-switcher__panel {
  z-index: 8020;
  color: var(--gmd-navy);
}

.gmd-pro-header__main {
  background: var(--gmd-pro-main-bg, #ffffff);
  border-bottom: 1px solid rgba(20, 35, 61, 0.08);
  box-shadow: 0 14px 34px rgba(20, 35, 61, 0.08);
  backdrop-filter: blur(14px);
}

.gmd-pro-header.is-scrolled .gmd-pro-header__main {
  background: var(--gmd-pro-main-scrolled, rgba(255, 255, 255, 0.9));
  box-shadow: 0 18px 44px rgba(20, 35, 61, 0.14);
}

.gmd-pro-header__grid {
  display: grid;
  min-height: 74px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.gmd-pro-header__brand {
  display: inline-flex;
  align-items: center;
}

.gmd-pro-header__brand img {
  display: block;
  width: auto;
  max-width: 184px;
  max-height: 54px;
}

.gmd-pro-header__nav {
  display: flex;
  min-width: 0;
  justify-content: center;
}

.gmd-pro-header__nav .gmd-elementor-menu > div > ul,
.gmd-pro-header__nav .gmd-elementor-menu > ul,
.gmd-pro-header__nav .gmd-elementor-menu .menu {
  flex-wrap: nowrap;
  gap: 3px;
}

.gmd-pro-header__nav .gmd-elementor-menu a {
  min-height: 42px;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 700;
}

.gmd-pro-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}


.gmd-pro-header__cta {
  display: inline-flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.gmd-pro-header__cta {
  min-width: 164px;
  background: var(--gmd-pro-button-bg, var(--gmd-blue));
  color: var(--gmd-pro-button-text, #ffffff);
  padding: 0 18px;
  box-shadow: 0 14px 28px rgba(38, 170, 225, 0.22);
}

.gmd-pro-header__cart:hover,
.gmd-pro-header__cta:hover {
  color: var(--gmd-pro-button-text, #ffffff);
  text-decoration: none;
  transform: translateY(-1px);
}

.gmd-pro-header__cart:hover {
  border-color: rgba(38, 170, 225, 0.45);
  color: var(--gmd-pro-accent, var(--gmd-blue));
}

.gmd-pro-header__toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 35, 61, 0.12);
  border-radius: 999px;
  background: #ffffff;
  padding: 0;
  box-shadow: 0 10px 22px rgba(20, 35, 61, 0.08);
  cursor: pointer;
}

.gmd-pro-header__toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gmd-pro-text, var(--gmd-navy));
  transition: transform 180ms ease, opacity 180ms ease;
}

.gmd-pro-header__toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.gmd-pro-header__toggle span:nth-child(3) {
  transform: translateY(6px);
}

.gmd-pro-header.is-open .gmd-pro-header__toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.gmd-pro-header.is-open .gmd-pro-header__toggle span:nth-child(2) {
  opacity: 0;
}

.gmd-pro-header.is-open .gmd-pro-header__toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

@media (max-width: 1100px) {
  .gmd-pro-header__grid {
    gap: 14px;
  }

  .gmd-pro-header__nav .gmd-elementor-menu a {
    padding: 0 9px;
    font-size: 12px;
  }

  .gmd-pro-header__cta {
    min-width: 138px;
    padding: 0 14px;
  }
}

@media (max-width: 760px) {
  body.admin-bar .gmd-pro-header--sticky,
  .gmd-pro-header--sticky {
    top: 0;
  }

  .gmd-pro-header__top {
    display: block;
  }

  .gmd-pro-header__top .gmd-pro-header__wrap {
    min-height: 34px;
    justify-content: space-between;
    gap: 10px;
  }

  .gmd-pro-header__top .gmd-header-contact {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
    overflow: hidden;
    margin-right: 0;
    font-size: 11px;
    white-space: nowrap;
  }

  .gmd-pro-header__top .gmd-header-contact a {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .gmd-pro-header__top .gmd-language-switcher {
    flex: 0 0 auto;
  }

  .gmd-pro-header__top .gmd-language-switcher summary {
    width: 68px;
    min-height: 28px;
  }

  .gmd-pro-header__wrap {
    width: min(100% - 24px, 1400px);
  }

  .gmd-pro-header__grid {
    min-height: 62px;
    grid-template-columns: auto auto;
    gap: 12px;
    justify-content: space-between;
  }

  .gmd-pro-header__brand img {
    max-width: 148px;
    max-height: 44px;
  }

  .gmd-pro-header__toggle {
    display: inline-flex;
  }

  .gmd-pro-header__nav,
  .gmd-pro-header__actions {
    display: none;
  }

  .gmd-pro-header.is-open .gmd-pro-header__nav,
  .gmd-pro-header.is-open .gmd-pro-header__actions {
    display: flex;
  }

  .gmd-pro-header__nav,
  .gmd-pro-header__actions {
    width: 100vw;
    grid-column: 1 / -1;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-right: 16px;
    padding-left: 16px;
  }

  .gmd-pro-header__nav {
    padding-top: 10px;
  }

  .gmd-pro-header__actions {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 14px;
  }

  .gmd-pro-header__nav .gmd-elementor-menu,
  .gmd-pro-header__nav .gmd-elementor-menu > div,
  .gmd-pro-header__nav .gmd-elementor-menu > div > ul,
  .gmd-pro-header__nav .gmd-elementor-menu > ul,
  .gmd-pro-header__nav .gmd-elementor-menu .menu {
    width: 100%;
  }

  .gmd-pro-header__nav .gmd-elementor-menu > div > ul,
  .gmd-pro-header__nav .gmd-elementor-menu > ul,
  .gmd-pro-header__nav .gmd-elementor-menu .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .gmd-pro-header__nav .gmd-elementor-menu li,
  .gmd-pro-header__nav .gmd-elementor-menu a {
    width: 100%;
  }

  .gmd-pro-header__nav .gmd-elementor-menu a {
    min-height: 44px;
    justify-content: space-between;
    padding: 0 14px;
    font-size: 13px;
  }

  .gmd-pro-header__nav .gmd-elementor-menu .sub-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
  }

  
  .gmd-pro-header__cta {
    width: 100%;
  }
}

.gmd-complete-header {
  position: relative;
  z-index: 100;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  color: var(--gmd-navy);
}

.gmd-complete-header--sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5000;
  margin-right: 0;
  margin-left: 0;
}

body.gmd-has-sticky-complete-header {
  padding-top: var(--gmd-complete-header-height, 116px);
}

body.gmd-has-sticky-complete-header :where(section, .elementor-section, .woocommerce, .product, .gmd-shop-layout) {
  scroll-margin-top: calc(var(--gmd-complete-header-height, 116px) + 16px);
}

body.admin-bar .gmd-complete-header--sticky {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .gmd-complete-header--sticky {
    top: 46px;
  }
}

.gmd-complete-header--sticky.is-scrolled .gmd-complete-header__top {
  background: var(--gmd-header-top-bg, #14233d);
  backdrop-filter: blur(14px);
}

.gmd-complete-header--sticky.is-scrolled .gmd-complete-header__main {
  background: var(--gmd-header-main-scrolled, rgba(255, 255, 255, 0.82));
  box-shadow: 0 18px 44px rgba(20, 35, 61, 0.14);
}

.gmd-complete-header__cart:hover {
  border-color: rgba(38, 170, 225, 0.45);
  color: var(--gmd-blue);
  box-shadow: 0 14px 28px rgba(38, 170, 225, 0.14);
  text-decoration: none;
  transform: translateY(-1px);
}

.gmd-complete-header.is-open .gmd-complete-header__toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.gmd-complete-header.is-open .gmd-complete-header__toggle span:nth-child(2) {
  opacity: 0;
}

.gmd-complete-header.is-open .gmd-complete-header__toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.gmd-header-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: var(--gmd-white);
  font-size: 13px;
  font-weight: 700;
}

.gmd-header-contact a {
  color: inherit;
}

.gmd-header-cta:hover {
  background: var(--gmd-navy);
  color: var(--gmd-white);
  text-decoration: none;
  transform: translateY(-1px);
}

.gmd-elementor-menu > div > ul,
.gmd-elementor-menu > ul,
.gmd-elementor-menu .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gmd-elementor-menu li {
  position: relative;
}

.gmd-elementor-menu a {
  position: relative;
  display: flex;
  min-height: 46px;
  align-items: center;
  border-radius: 999px;
  color: #182033;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gmd-elementor-menu a:hover,
.gmd-elementor-menu .current-menu-item > a {
  background: rgba(38, 170, 225, 0.1);
  color: var(--gmd-blue);
  box-shadow: inset 0 0 0 1px rgba(38, 170, 225, 0.18);
  text-decoration: none;
}

.gmd-elementor-menu .menu-item-has-children > a::after {
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  opacity: 0.68;
  transform: rotate(45deg) translateY(-2px);
}

.gmd-elementor-menu .sub-menu {
  position: absolute;
  z-index: 5010;
  top: 100%;
  left: 0;
  display: none;
  min-width: 240px;
  padding: 10px 8px 8px;
  border: 1px solid var(--gmd-line);
  border-radius: 14px;
  background: var(--gmd-white);
  box-shadow: 0 22px 46px rgba(20, 35, 61, 0.16);
}

.gmd-elementor-menu li:hover > .sub-menu,
.gmd-elementor-menu li:focus-within > .sub-menu {
  display: block;
}

.gmd-elementor-menu .sub-menu a {
  min-height: 42px;
  justify-content: flex-start;
  border-radius: 10px;
  padding: 10px 12px;
  text-transform: none;
}

.gmd-language-switcher {
  position: relative;
  display: inline-flex;
  color: var(--gmd-navy);
}

.gmd-language-switcher summary {
  display: inline-flex;
  width: 72px;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(20, 35, 61, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--gmd-navy);
  padding: 0 11px;
  font-size: 12px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(20, 35, 61, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gmd-language-switcher summary::-webkit-details-marker {
  display: none;
}

.gmd-language-switcher summary::after {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.gmd-language-switcher[open] summary,
.gmd-language-switcher summary:hover,
.gmd-currency-switcher summary:hover {
  border-color: rgba(38, 170, 225, 0.45);
  box-shadow: 0 14px 28px rgba(38, 170, 225, 0.14);
  transform: translateY(-1px);
}

.gmd-language-switcher summary img,
.gmd-language-switcher__panel img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.gmd-language-switcher__panel {
  position: absolute;
  z-index: 5020;
  top: calc(100% + 6px);
  right: 0;
  min-width: 210px;
  margin: 0;
  border: 1px solid var(--gmd-line);
  border-radius: 14px;
  background: #ffffff;
  padding: 8px;
  list-style: none;
  box-shadow: 0 22px 46px rgba(20, 35, 61, 0.16);
}

.gmd-language-switcher:not([open]) .gmd-language-switcher__panel {
  display: none;
}

.gmd-language-switcher__panel a {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  color: var(--gmd-navy);
  padding: 8px 10px;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.gmd-language-switcher__panel a > span {
  min-width: 0;
}

.gmd-language-switcher__panel strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.gmd-language-switcher__panel small {
  display: block;
  color: #667085;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.gmd-language-switcher .is-active a,
.gmd-language-switcher__panel a:hover,
.gmd-currency-switcher__panel .is-active,
.gmd-currency-switcher__panel a:hover {
  background: rgba(38, 170, 225, 0.1);
  color: var(--gmd-blue);
  text-decoration: none;
}

.gmd-leaflet-button:hover {
  background: #26aae1;
  color: var(--gmd-white);
  box-shadow: 0 12px 26px rgba(38, 170, 225, 0.24);
  text-decoration: none;
  transform: translateY(-2px);
}

.gmd-elementor-notice {
  border: 1px solid rgba(38, 170, 225, 0.24);
  border-radius: 8px;
  background: #f7fbff;
  color: var(--gmd-navy);
  padding: 18px;
  font-size: 14px;
}

.gmd-back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: #26aae1;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(20, 35, 61, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.gmd-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.gmd-back-to-top:hover {
  background: #17459e;
  box-shadow: 0 22px 46px rgba(23, 69, 158, 0.3);
  transform: translateY(-2px) scale(1);
}

.gmd-back-to-top svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.gmd-floating-actions {
  position: fixed;
  left: 18px;
  top: 50%;
  z-index: 118;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.gmd-floating-actions__item {
  position: relative;
  display: inline-flex;
  width: 58px;
  min-height: 58px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(20, 35, 61, 0.18);
  transition: width 220ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gmd-floating-actions__item--distributor {
  background: linear-gradient(135deg, #17459e, #26aae1);
}

.gmd-floating-actions__item--whatsapp {
  background: linear-gradient(135deg, #18a85b, #26d06f);
}

.gmd-floating-actions__item:hover,
.gmd-floating-actions__item:focus-visible {
  width: 224px;
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(20, 35, 61, 0.24);
  outline: none;
  transform: translateX(3px);
}

.gmd-floating-actions__item--distributor:hover,
.gmd-floating-actions__item--distributor:focus-visible {
  background: linear-gradient(135deg, #10223d, #17459e);
}

.gmd-floating-actions__item--whatsapp:hover,
.gmd-floating-actions__item--whatsapp:focus-visible {
  background: linear-gradient(135deg, #108243, #16b85d);
}

.gmd-floating-actions__icon {
  display: inline-flex;
  width: 58px;
  min-width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
}

.gmd-floating-actions__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.gmd-floating-actions__label {
  display: inline-flex;
  min-width: 154px;
  align-items: center;
  padding-right: 18px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.gmd-currency-switcher a:hover,
.gmd-currency-switcher a:focus-visible,
.gmd-currency-switcher a.is-active,
.gmd-currency-switcher span.is-active {
  background: #26aae1;
  color: #ffffff;
  outline: none;
}

.gmd-currency-switcher a:hover,
.gmd-currency-switcher a:focus-visible {
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .gmd-floating-actions {
    left: 12px;
    bottom: 16px;
    top: auto;
    grid-template-columns: repeat(2, 52px);
    transform: none;
  }

  .gmd-floating-actions__item,
  .gmd-floating-actions__item:hover,
  .gmd-floating-actions__item:focus-visible {
    width: 52px;
    min-height: 52px;
    transform: none;
  }

  .gmd-floating-actions__icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
  }

  .gmd-floating-actions__icon svg {
    width: 24px;
    height: 24px;
  }

  .gmd-floating-actions__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}


body:not([class*=elementor-page-]) .site-main.gmd-about-page,
.gmd-about-page.site-main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-inline: 0;
}

.gmd-about-page {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 42%, #f7f9fc 100%);
  color: var(--gmd-navy);
}

.gmd-about-page__hero-actions a:hover,
.gmd-about-page__process-head a:hover,
.gmd-about-page__cta a:hover {
  background: #ffffff;
  color: #17459e;
  box-shadow: 0 16px 34px rgba(7, 18, 34, 0.22);
  transform: translateY(-2px);
}

.gmd-about-page__cards article:hover {
  border-color: rgba(38, 170, 225, 0.3);
  box-shadow: 0 20px 52px rgba(20, 35, 61, 0.11);
  transform: translateY(-3px);
}

.gmd-sector-hero {
  position: relative;
  min-height: clamp(670px, 80vh, 840px);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(38, 170, 225, 0.18), transparent 28%),
    linear-gradient(120deg, var(--gmd-gradient-start, #0f1f38) 0%, var(--gmd-gradient-end, #153a61) 56%, #f7fbff 100%);
  color: var(--gmd-white);
}

.gmd-sector-slider__track {
  position: relative;
  min-height: inherit;
}

.gmd-sector-slide {
  position: absolute;
  inset: 0;
  display: none;
  min-height: inherit;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 420ms ease;
}

.gmd-sector-slide.is-active {
  position: relative;
  display: flex;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.gmd-sector-hero__lcp-image {
  position: absolute !important;
  inset: 0;
  z-index: 0;
  display: block;
  max-width: none !important;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  opacity: var(--gmd-image-opacity, 0.34);
  object-fit: cover;
  object-position: center 45%;
  pointer-events: none;
}

.gmd-sector-slide--has-lcp-image::before {
  background:
    linear-gradient(
      90deg,
      rgba(9, 22, 40, var(--gmd-overlay-strength, 0.68)) 0%,
      rgba(15, 31, 56, var(--gmd-overlay-strength, 0.68)) 45%,
      rgba(15, 31, 56, 0.18) 100%
    );
}

.gmd-sector-slide::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(9, 22, 40, var(--gmd-overlay-strength, 0.68)) 0%,
      rgba(15, 31, 56, var(--gmd-overlay-strength, 0.68)) 45%,
      rgba(15, 31, 56, 0.18) 100%
    ),
    var(--gmd-slide-bg, linear-gradient(135deg, #0f1f38, #153a61));
  background-position: center;
  background-size: cover;
}

.gmd-sector-slide::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 16% 18%, rgba(38, 170, 225, 0.22), transparent 28%),
    linear-gradient(120deg, rgba(15, 31, 56, 0.92), rgba(21, 58, 97, 0.58) 48%, rgba(255, 255, 255, 0.06));
  opacity: var(--gmd-image-opacity, 0.58);
}

.gmd-sector-hero__intro {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 6.8vw, 86px) 0 28px;
}

.gmd-sector-hero__intro p {
  margin: 0 0 10px;
  color: var(--gmd-sector-accent, #26aae1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gmd-sector-hero__intro h1 {
  max-width: 900px;
  margin: 0;
  color: var(--gmd-sector-heading, var(--gmd-white));
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 1.03;
}

.gmd-sector-hero__subtitle {
  display: block;
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  color: var(--gmd-sector-text, rgba(255, 255, 255, 0.78));
  font-size: 16px;
  line-height: 1.58;
}

.gmd-sector-hero__cta:hover {
  background: var(--gmd-sector-button-hover-bg, var(--gmd-sector-accent, var(--gmd-teal)));
  color: var(--gmd-sector-button-hover-text, var(--gmd-white));
  box-shadow: 0 14px 28px rgba(7, 18, 34, 0.22);
  text-decoration: none;
  transform: translateY(-2px);
}

.gmd-sector-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1280px, calc(100% - 40px));
  min-height: 400px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin: 0 auto;
  padding: 18px 0 clamp(42px, 6vw, 68px);
}

.gmd-sector-card {
  position: relative;
  display: flex;
  min-height: 400px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--gmd-sector-card-border, rgba(255, 255, 255, 0.18));
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 18, 34, 0.08), rgba(7, 18, 34, 0.84)),
    linear-gradient(135deg, rgba(38, 170, 225, 0.42), var(--gmd-sector-card-bg, rgba(20, 35, 61, 0.82)));
  color: var(--gmd-white);
  padding: clamp(22px, 2.6vw, 30px);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gmd-sector-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.38;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.22) 42% 43%, transparent 43%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 72px);
}

.gmd-sector-card::after {
  position: absolute;
  inset: auto -20% -30% 28%;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: var(--gmd-sector-accent, rgba(38, 170, 225, 0.32));
  opacity: 0.34;
  content: "";
  filter: blur(4px);
  transition: transform 220ms ease, opacity 220ms ease;
}

.gmd-sector-card--2 {
  background:
    linear-gradient(180deg, rgba(7, 18, 34, 0.04), rgba(7, 18, 34, 0.82)),
    linear-gradient(135deg, rgba(38, 170, 225, 0.76), rgba(20, 35, 61, 0.94));
}

.gmd-sector-card--3 {
  background:
    linear-gradient(180deg, rgba(7, 18, 34, 0.06), rgba(7, 18, 34, 0.84)),
    linear-gradient(135deg, rgba(38, 83, 132, 0.86), rgba(20, 35, 61, 0.96));
}

.gmd-sector-card:hover {
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 28px 60px rgba(7, 18, 34, 0.24);
  color: var(--gmd-white);
  text-decoration: none;
  transform: translateY(-8px);
}

.gmd-sector-card:hover::after {
  opacity: 0.82;
  transform: scale(1.12) translate(-8px, -10px);
}

.gmd-sector-card__number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255, 255, 255, 0.34);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1;
}

.gmd-sector-card__eyebrow {
  margin-bottom: 8px;
  color: var(--gmd-sector-accent, #26aae1);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gmd-sector-card strong {
  color: var(--gmd-sector-heading, var(--gmd-white));
  font-size: clamp(34px, 3.7vw, 50px);
  line-height: 1.06;
}

.gmd-sector-card__text {
  max-width: 300px;
  margin-top: 10px;
  color: var(--gmd-sector-text, rgba(255, 255, 255, 0.82));
  font-size: 14px;
  line-height: 1.6;
}

.gmd-sector-card__button {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin-top: 16px;
  border-radius: 6px;
  background: var(--gmd-sector-button-bg, var(--gmd-white));
  color: var(--gmd-sector-button-text, var(--gmd-navy));
  padding: 0 14px;
  font-size: 12px;
  font-weight: 600;
  transform: translateY(0);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gmd-sector-card:hover .gmd-sector-card__button {
  background: var(--gmd-sector-button-hover-bg, var(--gmd-sector-accent, var(--gmd-teal)));
  color: var(--gmd-sector-button-hover-text, var(--gmd-white));
  box-shadow: 0 12px 26px rgba(7, 18, 34, 0.28);
  transform: translateY(-3px);
}

.gmd-sector-slider__controls {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - 1280px) / 2));
  bottom: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 18, 34, 0.42);
  backdrop-filter: blur(14px);
}

.gmd-sector-slider__arrow,
.gmd-sector-slider__dot {
  border: 0;
  cursor: pointer;
}

.gmd-sector-slider__arrow {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--gmd-white);
  font-size: 20px;
  line-height: 1;
}

.gmd-sector-slider__arrow:hover {
  background: var(--gmd-white);
  color: var(--gmd-navy);
}

.gmd-sector-slider__dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.gmd-sector-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  padding: 0;
}

.gmd-sector-slider__dot.is-active {
  width: 24px;
  background: var(--gmd-sector-accent, var(--gmd-teal));
}


.gmd-commerce-hero__slide {
  min-height: inherit;
}

.gmd-commerce-hero__slide {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(12px) scale(0.992);
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gmd-commerce-hero__slide::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(7, 18, 34, 0.88), rgba(20, 35, 61, 0.56) 50%, rgba(38, 170, 225, 0.22)),
    var(--gmd-commerce-image, transparent);
  background-position: center;
  background-size: cover;
  content: "";
}

.gmd-commerce-hero__slide.is-active {
  position: relative;
  display: flex;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.gmd-commerce-hero__button:hover {
  background: var(--gmd-commerce-button-hover, #ffffff);
  color: var(--gmd-commerce-button-hover-text, #17459e);
  box-shadow: 0 16px 34px rgba(7, 18, 34, 0.24);
  transform: translateY(-2px);
}

.gmd-commerce-hero__button:hover::before {
  left: 112%;
}

.gmd-commerce-hero__slide.is-active .gmd-commerce-hero__visual img {
  filter: drop-shadow(0 32px 44px rgba(7, 18, 34, 0.36));
  transform: translateY(0) scale(1);
}

.gmd-commerce-hero__controls > button:hover {
  background: #ffffff;
  color: #17459e;
  transform: translateY(-2px);
}

.gmd-commerce-hero__dots button.is-active {
  width: 30px;
  background: var(--gmd-commerce-accent, #26aae1);
}

.gmd-icon-boxes {
  background: var(--gmd-icon-section-bg, #f7f9fc);
  padding: clamp(54px, 8vw, 96px) 0;
}

.gmd-icon-boxes__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.gmd-icon-boxes__header {
  max-width: 720px;
  margin-bottom: 34px;
}

.gmd-icon-boxes__header p {
  margin: 0 0 12px;
  color: var(--gmd-icon-accent, var(--gmd-teal));
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gmd-icon-boxes__header h2 {
  margin: 0;
  color: var(--gmd-icon-title, var(--gmd-navy));
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
}

.gmd-icon-boxes__header span {
  display: block;
  max-width: 620px;
  margin-top: 16px;
  color: var(--gmd-icon-text, #667085);
  font-size: 17px;
}

.gmd-icon-boxes__grid {
  display: grid;
  gap: 18px;
}

.gmd-icon-boxes--cols-4 .gmd-icon-boxes__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gmd-icon-box {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 10px;
  background: var(--gmd-icon-box-bg, #ffffff);
  padding: clamp(30px, 3.7vw, 44px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.gmd-icon-box::after {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: var(--gmd-icon-accent, #26aae1);
  content: "";
  opacity: 0.16;
}

.gmd-icon-box__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: var(--gmd-icon-box-size, 92px);
  height: var(--gmd-icon-box-size, 92px);
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(38, 170, 225, 0.12);
  color: var(--gmd-icon-accent, var(--gmd-teal));
  font-size: var(--gmd-icon-size, 44px);
}

.gmd-icon-box__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.gmd-icon-box__icon svg path {
  fill: currentColor !important;
  stroke: currentColor !important;
}

.gmd-icon-box h3 {
  position: relative;
  z-index: 1;
  margin: 24px 0 10px;
  color: var(--gmd-icon-title, var(--gmd-navy));
  font-size: 22px;
  line-height: 1.18;
}

.gmd-icon-box p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--gmd-icon-text, #667085);
  font-size: 15px;
}

.gmd-icon-box__button:hover {
  background: var(--gmd-icon-button-hover-bg, #ffffff);
  color: var(--gmd-icon-button-hover-text, var(--gmd-navy));
  box-shadow: 0 10px 22px rgba(7, 18, 34, 0.18);
  text-decoration: none;
  transform: translateY(-2px);
}

.gmd-icon-box:hover {
  border-color: transparent;
  background: var(--gmd-icon-box-hover-bg, var(--gmd-navy));
  box-shadow: 0 24px 54px rgba(20, 35, 61, 0.16);
  transform: translateY(-6px);
}

.gmd-icon-box:hover .gmd-icon-box__icon {
  background: var(--gmd-icon-accent, var(--gmd-teal));
  color: var(--gmd-white);
}

.gmd-icon-box:hover h3,
.gmd-icon-box:hover p {
  color: var(--gmd-icon-hover-text, #ffffff);
}

.gmd-about-timeline__cta:hover {
  background: var(--gmd-about-button-hover-bg, var(--gmd-navy));
  color: var(--gmd-about-button-hover-text, #ffffff);
  box-shadow: 0 14px 30px rgba(20, 35, 61, 0.18);
  text-decoration: none;
  transform: translateY(-2px);
}

.gmd-about-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 18px;
  padding: 18px 0;
}

.gmd-about-timeline__item span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 170, 225, 0.28);
  border-radius: 999px;
  background: var(--gmd-about-panel-bg, #f7f9fc);
  color: var(--gmd-about-accent, var(--gmd-teal));
  font-size: 12px;
  font-weight: 700;
}

.gmd-about-timeline__item h3 {
  margin: 0 0 8px;
  color: var(--gmd-about-heading, var(--gmd-navy));
  font-size: 20px;
  line-height: 1.2;
}

.gmd-about-timeline__item p {
  margin: 0;
  color: var(--gmd-about-text, #667085);
  font-size: 15px;
  line-height: 1.6;
}

.gmd-manufacturing-process {
  background: var(--gmd-manufacturing-bg, #f6f9fd);
  padding: clamp(54px, 8vw, 100px) 0;
}

.gmd-manufacturing-process__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.gmd-manufacturing-process__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.gmd-manufacturing-process__kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin: 0 0 14px;
  border-radius: 999px;
  background: rgba(38, 170, 225, 0.12);
  color: var(--gmd-manufacturing-accent, #26aae1);
  padding: 0 13px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gmd-manufacturing-process h2 {
  max-width: 840px;
  margin: 0;
  color: var(--gmd-manufacturing-heading, var(--gmd-navy));
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

.gmd-manufacturing-process__intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--gmd-manufacturing-text, #667085);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
}

.gmd-manufacturing-process figure {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  margin: 0;
  border-radius: 10px;
  background:
    linear-gradient(120deg, rgba(20, 35, 61, 0.96), rgba(38, 170, 225, 0.86)),
    var(--gmd-navy);
  box-shadow: 0 24px 58px rgba(20, 35, 61, 0.12);
}

.gmd-manufacturing-process figure::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 82% 18%, rgba(38, 170, 225, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(7, 18, 34, 0.08), rgba(7, 18, 34, 0.4));
  content: "";
}

.gmd-manufacturing-process figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.gmd-manufacturing-process__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 5vw, 56px);
}

.gmd-manufacturing-process__cards article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 35, 61, 0.08);
  border-radius: 10px;
  background: var(--gmd-manufacturing-card, #ffffff);
  padding: 24px;
  box-shadow: 0 18px 46px rgba(20, 35, 61, 0.07);
}

.gmd-manufacturing-process__cards article::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(38, 170, 225, 0.1);
  content: "";
}

.gmd-manufacturing-process__cards span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(38, 170, 225, 0.12);
  color: var(--gmd-manufacturing-accent, #26aae1);
  font-size: 13px;
  font-weight: 850;
}

.gmd-manufacturing-process__cards h3 {
  margin: 18px 0 10px;
  color: var(--gmd-manufacturing-heading, var(--gmd-navy));
  font-size: 22px;
  line-height: 1.18;
}

.gmd-manufacturing-process__cards p {
  margin: 0;
  color: var(--gmd-manufacturing-text, #667085);
  font-size: 14px;
  line-height: 1.68;
}

.gmd-manufacturing-process__timeline {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 50px);
  margin-top: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(20, 35, 61, 0.08);
  border-radius: 10px;
  background: var(--gmd-manufacturing-card, #ffffff);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 20px 52px rgba(20, 35, 61, 0.07);
}

.gmd-manufacturing-process__timeline-head {
  position: sticky;
  top: 110px;
  align-self: start;
}

.gmd-manufacturing-process__timeline-head span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(38, 170, 225, 0.12);
  color: var(--gmd-manufacturing-accent, #26aae1);
  padding: 0 13px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gmd-manufacturing-process__timeline-head h3 {
  margin: 0;
  color: var(--gmd-manufacturing-heading, var(--gmd-navy));
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.08;
}

.gmd-manufacturing-process__steps {
  display: grid;
  gap: 14px;
}

.gmd-manufacturing-process__steps article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  border-radius: 8px;
  background: #f7fbff;
  padding: 18px;
}

.gmd-manufacturing-process__steps article > span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gmd-manufacturing-accent, #26aae1);
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
}

.gmd-manufacturing-process__steps h4 {
  margin: 0 0 7px;
  color: var(--gmd-manufacturing-heading, var(--gmd-navy));
  font-size: 19px;
  line-height: 1.25;
}

.gmd-manufacturing-process__steps p {
  margin: 0;
  color: var(--gmd-manufacturing-text, #667085);
  font-size: 14px;
  line-height: 1.65;
}

.gmd-welcome-section {
  background: var(--gmd-welcome-bg, #ffffff);
  padding: clamp(54px, 8vw, 100px) 0;
}

.gmd-welcome-section__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.gmd-welcome-section__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.gmd-welcome-section__kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin: 0 0 14px;
  border-radius: 999px;
  background: rgba(38, 170, 225, 0.12);
  color: var(--gmd-welcome-accent, #26aae1);
  padding: 0 13px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gmd-welcome-section h2 {
  max-width: 840px;
  margin: 0;
  color: var(--gmd-welcome-heading, var(--gmd-navy));
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
}

.gmd-welcome-section__description {
  max-width: 760px;
  margin-top: 18px;
  color: var(--gmd-welcome-text, #667085);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
}

.gmd-welcome-section__description p {
  margin: 0 0 14px;
}

.gmd-welcome-section__description p:last-child {
  margin-bottom: 0;
}

.gmd-welcome-section__button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 24px;
  border-radius: 6px;
  background: var(--gmd-welcome-accent, #26aae1);
  color: #ffffff;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gmd-welcome-section__button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -46%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 320ms ease;
}

.gmd-welcome-section__button:hover {
  background: var(--gmd-welcome-gradient-start, #14233d);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(20, 35, 61, 0.18);
  transform: translateY(-2px);
}

.gmd-welcome-section__button:hover::before {
  left: 112%;
}

.gmd-welcome-section__visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 80% 18%, rgba(38, 170, 225, 0.28), transparent 30%),
    linear-gradient(120deg, var(--gmd-welcome-gradient-start, #14233d), var(--gmd-welcome-gradient-end, #26aae1));
  box-shadow: 0 24px 58px rgba(20, 35, 61, 0.13);
}

.gmd-welcome-section__visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 18, 34, 0), rgba(7, 18, 34, 0.54)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 82px);
  content: "";
}

.gmd-welcome-section__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.gmd-welcome-section__panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: clamp(18px, 3vw, 26px);
  backdrop-filter: blur(12px);
}

.gmd-welcome-section__panel strong {
  display: block;
  margin-bottom: 9px;
  color: #ffffff;
  font-size: clamp(22px, 3.4vw, 38px);
  line-height: 1.05;
}

.gmd-welcome-section__panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.68;
}

.gmd-welcome-section__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 5vw, 56px);
}

.gmd-welcome-section__cards article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 35, 61, 0.08);
  border-radius: 10px;
  background: var(--gmd-welcome-card, #ffffff);
  padding: 24px;
  box-shadow: 0 18px 46px rgba(20, 35, 61, 0.07);
}

.gmd-welcome-section__cards article::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(38, 170, 225, 0.1);
  content: "";
}

.gmd-welcome-section__cards span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(38, 170, 225, 0.12);
  color: var(--gmd-welcome-accent, #26aae1);
  font-size: 13px;
  font-weight: 850;
}

.gmd-welcome-section__cards h3 {
  margin: 18px 0 10px;
  color: var(--gmd-welcome-heading, var(--gmd-navy));
  font-size: 20px;
  line-height: 1.18;
}

.gmd-welcome-section__cards p {
  margin: 0;
  color: var(--gmd-welcome-text, #667085);
  font-size: 14px;
  line-height: 1.68;
}

.gmd-welcome-section__why {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  margin-top: clamp(26px, 4vw, 46px);
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 86% 12%, rgba(38, 170, 225, 0.34), transparent 28%),
    linear-gradient(120deg, var(--gmd-welcome-why-start, #10223d) 0%, var(--gmd-welcome-why-mid, #17459e) 58%, var(--gmd-welcome-why-end, #26aae1) 100%),
    var(--gmd-welcome-gradient-start, #14233d);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 22px 56px rgba(20, 35, 61, 0.12);
}

.gmd-welcome-section__why h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.gmd-welcome-section__why > div > p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.gmd-welcome-section__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gmd-welcome-section__benefits article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: var(--gmd-welcome-why-card, rgba(255, 255, 255, 0.1));
  padding: 14px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.gmd-welcome-section__benefits article:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.gmd-welcome-section__benefit-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--gmd-welcome-why-icon, #26aae1);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(7, 18, 34, 0.18);
}

.gmd-welcome-section__benefit-icon svg {
  width: 18px;
  height: 18px;
}

.gmd-welcome-section__benefits h4 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.24;
}

.gmd-welcome-section__benefits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12.5px;
  line-height: 1.55;
}

.gmd-cta-banner {
  position: relative;
  display: flex;
  width: 100vw;
  min-height: var(--gmd-cta-min-height, 360px);
  align-items: center;
  overflow: hidden;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  border-radius: 10px;
  background:
    linear-gradient(120deg, var(--gmd-cta-gradient-start, rgba(20, 35, 61, 0.96)), var(--gmd-cta-gradient-end, rgba(38, 170, 225, 0.86))),
    var(--gmd-cta-image, var(--gmd-navy));
  background-position: center;
  background-size: cover;
  color: #ffffff;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 24px 60px rgba(20, 35, 61, 0.13);
}

.gmd-icon-boxes__inner,
.gmd-manufacturing-process__inner,
.gmd-welcome-section__inner,
.gmd-product-carousel__inner,
.gmd-articles-widget__inner {
  width: min(1180px, calc(100% - 32px));
}

.gmd-cta-banner::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(38, 170, 225, 0.34), transparent 28%),
    linear-gradient(135deg, transparent 0 44%, rgba(255, 255, 255, 0.1) 44% 45%, transparent 45%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 84px);
  content: "";
  pointer-events: none;
}

.gmd-cta-banner::after {
  position: absolute;
  right: clamp(22px, 5vw, 74px);
  bottom: clamp(-70px, -5vw, -42px);
  width: clamp(150px, 24vw, 330px);
  height: clamp(150px, 24vw, 330px);
  border: 34px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.gmd-cta-banner__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  max-width: 760px;
  margin: 0 auto;
}

.gmd-cta-banner--center {
  justify-content: center;
  text-align: center;
}

.gmd-cta-banner--center .gmd-cta-banner__content {
  margin: 0 auto;
  max-width: 860px;
}

.gmd-cta-banner span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  padding: 0 13px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gmd-cta-banner h2 {
  margin: 0;
  color: var(--gmd-cta-title, #ffffff);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

.gmd-cta-banner p {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--gmd-cta-subtitle, rgba(255, 255, 255, 0.82));
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.72;
}

.gmd-cta-banner--center p {
  margin-right: auto;
  margin-left: auto;
}

.gmd-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.gmd-cta-banner--center .gmd-cta-banner__actions {
  justify-content: center;
}

.gmd-cta-banner__button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  background: var(--gmd-cta-button-bg, #26aae1);
  color: var(--gmd-cta-button-text, #ffffff);
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gmd-cta-banner__button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.gmd-cta-banner__button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -46%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 320ms ease;
}

.gmd-cta-banner__button:hover {
  background: var(--gmd-cta-button-hover-bg, #ffffff);
  color: var(--gmd-cta-button-hover-text, #17459e);
  box-shadow: 0 16px 34px rgba(7, 18, 34, 0.22);
  transform: translateY(-2px);
}

.gmd-cta-banner__button--secondary:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #17459e;
}

.gmd-cta-banner__button:hover::before {
  left: 112%;
}

.single-product {
  padding-bottom: 86px;
}

.single-product.woocommerce div.product,
.single-product .woocommerce div.product {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(30px, 5vw, 58px) auto;
}

.single-product.woocommerce div.product::before,
.single-product.woocommerce div.product::after,
.single-product .woocommerce div.product::before,
.single-product .woocommerce div.product::after {
  display: none;
}

.single-product.woocommerce div.product,
.single-product .woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.single-product.woocommerce div.product div.images,
.single-product .woocommerce div.product div.images {
  width: auto;
  float: none;
  margin: 0;
}

.single-product.woocommerce div.product div.images img,
.single-product .woocommerce div.product div.images img {
  overflow: hidden;
  border: 1px solid rgba(217, 226, 236, 0.95);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(38, 170, 225, 0.08), rgba(38, 170, 225, 0.05)),
    #ffffff;
  box-shadow: 0 24px 60px rgba(20, 35, 61, 0.1);
}

.single-product.woocommerce div.product div.summary,
.single-product .woocommerce div.product div.summary {
  width: auto;
  float: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.gmd-variation-label-thumb {
  display: none;
  width: min(560px, 100%);
  margin: 18px auto 0;
}

.gmd-variation-label-thumb.is-loading,
.gmd-variation-label-thumb.is-error {
  display: flex;
  min-height: 180px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 170, 225, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
  color: #17459e;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 18px 42px rgba(20, 35, 61, 0.1);
}

.gmd-variation-label-thumb.is-loading::before,
.gmd-variation-label-mobile-preview.is-loading::before {
  content: "Preparing label...";
}

.gmd-variation-label-thumb.is-error::before,
.gmd-variation-label-mobile-preview.is-error::before {
  content: "Label is taking longer than expected. Please try again.";
  color: #667085;
}

.gmd-variation-label-thumb.is-visible {
  display: block;
}

.gmd-variation-label-thumb.is-loading img,
.gmd-variation-label-thumb.is-error img,
.gmd-variation-label-mobile-preview.is-loading img,
.gmd-variation-label-mobile-preview.is-error img {
  display: none;
}

.gmd-variation-label-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(38, 170, 225, 0.22);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(20, 35, 61, 0.14);
}

.gmd-variation-label-mobile-preview {
  display: none;
}

@media (max-width: 767px) {
  .gmd-variation-label-thumb {
    display: none !important;
  }

  .gmd-variation-label-mobile-preview {
    width: 100%;
    margin: 12px 0 14px;
    padding: 14px;
    border: 1px solid rgba(38, 170, 225, 0.18);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
    box-shadow: 0 16px 34px rgba(20, 35, 61, 0.12);
  }

  .gmd-variation-label-mobile-preview.is-visible {
    display: block;
  }

  .gmd-variation-label-mobile-preview.is-loading,
  .gmd-variation-label-mobile-preview.is-error {
    display: flex;
    min-height: 140px;
    align-items: center;
    justify-content: center;
    color: #17459e;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
  }

  .gmd-variation-label-mobile-preview img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: #ffffff;
  }
}

.gmd-product-badge:hover {
  border-color: #26aae1;
  background: #26aae1;
  color: #ffffff;
  text-decoration: none;
}

.single-product div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 16px 0 12px;
}

.single-product div.product form.cart div.quantity {
  margin: 0;
}

.single-product div.product .gmd-qty-control {
  display: inline-grid;
  width: 112px;
  grid-template-columns: 32px 1fr 32px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 236, 0.96);
  border-radius: 6px;
  background: #ffffff;
}

.single-product div.product form.cart .qty {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  text-align: center;
  appearance: textfield;
}

.single-product div.product form.cart .qty::-webkit-outer-spin-button,
.single-product div.product form.cart .qty::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.single-product div.product .gmd-qty-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #f7fbff;
  color: #17459e;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.single-product div.product .gmd-qty-button:hover {
  background: #26aae1;
  color: #ffffff;
}

.single-product div.product form.variations_form {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.single-product div.product table.variations {
  display: block;
  width: 100%;
  margin: 8px 0 2px;
  border: 0;
  background: transparent !important;
}

.single-product div.product table.variations tr {
  display: grid;
  gap: 6px;
  margin: 0;
  border: 0;
  background: transparent !important;
  transition: opacity 160ms ease;
}

.single-product div.product table.variations tr:has(select[name*="suture-type"]),
.single-product div.product table.variations tr:has(select[name*="suture_type"]) {
  display: none;
}


.single-product div.product table.variations td {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent !important;
  line-height: 1.2;
  text-align: start;
}

.single-product div.product table.variations select {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.gmd-variation-swatches {
  display: flex;
  flex-wrap: wrap;
  max-height: 92px;
  overflow: auto;
  gap: 8px;
  align-items: center;
  padding: 1px 4px 2px 0;
  scrollbar-color: rgba(38, 170, 225, 0.42) transparent;
  scrollbar-width: thin;
  direction: ltr;
}

.gmd-variation-swatches::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.gmd-variation-swatches::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(38, 170, 225, 0.42);
}

.single-product div.product table.variations tr.gmd-variation-row-disabled .gmd-variation-swatches {
  max-height: 42px;
  overflow: hidden;
}

.gmd-variation-swatch {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 226, 236, 0.96);
  border-radius: 999px;
  background: #ffffff;
  color: #14233d;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  direction: ltr;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.gmd-variation-swatch:hover {
  border-color: #2ed3d0;
  background: rgba(46, 211, 208, 0.1);
  color: #138f9c;
  transform: translateY(-1px);
}

.gmd-variation-swatch.is-active {
  border-color: #2ed3d0;
  background: #2ed3d0;
  color: #ffffff;
}

.gmd-variation-swatch.is-single-option {
  border-style: dashed;
  border-color: rgba(46, 211, 208, 0.72);
  background: rgba(46, 211, 208, 0.1);
  color: #138f9c;
  cursor: default;
}

.gmd-variation-swatch.is-single-option.is-active {
  border-style: solid;
}

.gmd-variation-swatch:disabled {
  border-color: rgba(217, 226, 236, 0.86);
  background: #f3f6f9;
  color: #98a2b3;
  opacity: 1;
  cursor: not-allowed;
  transform: none;
}

.single-product div.product table.variations .reset_variations {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(23, 69, 158, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: #17459e;
  padding: 0 12px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.single-product div.product table.variations .reset_variations:hover {
  border-color: #26aae1;
  background: rgba(38, 170, 225, 0.08);
  color: #26aae1;
}

.gmd-variation-required-note {
  display: flex;
  align-items: center;
  border: 1px solid rgba(46, 211, 208, 0.35);
  border-radius: 8px;
  background: rgba(46, 211, 208, 0.08);
  color: #138f9c;
  padding: 10px 12px;
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.gmd-variation-pack-note {
  display: flex;
  align-items: center;
  border: 1px solid rgba(23, 69, 158, 0.16);
  border-radius: 8px;
  background: #f7fbff;
  color: #14233d;
  padding: 10px 12px;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.gmd-variation-required-note.is-hidden {
  display: none;
}

.single-product div.product .woocommerce-variation-add-to-cart {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}

.single-product div.product .woocommerce-variation-add-to-cart .quantity {
  flex: 0 0 auto;
}

.single-product div.product .single_add_to_cart_button,
.single-product div.product .button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: #26aae1;
  color: #ffffff;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.single-product div.product .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  flex: 1 1 180px;
  min-width: 170px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.single-product div.product .single_add_to_cart_button:hover,
.single-product div.product .button:hover {
  background: var(--gmd-navy);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(20, 35, 61, 0.18);
  transform: translateY(-2px);
}

.single-product div.product .gmd-quote-button:hover,
.single-product div.product .gmd-product-checkout-button:hover {
  background: #26aae1;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(38, 170, 225, 0.2);
}


.single-product div.product .gmd-product-checkout-button.is-disabled:hover {
  border: 1px solid rgba(148, 163, 184, 0.42);
  background: #e6ebf1;
  color: #7a8798;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
  transform: none;
}

@keyframes gmd-sale-pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 12px 28px rgba(38, 170, 225, 0.26);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(38, 170, 225, 0.36);
  }
}

.single-product div.product .star-rating,
.single-product div.product .star-rating::before,
.single-product div.product .star-rating span::before,
.single-product div.product p.stars a,
.single-product div.product p.stars a::before {
  color: #17459e;
}

.single-product div.product #review_form #respond .form-submit input:hover,
.single-product div.product #review_form #respond input#submit:hover {
  background: #17459e;
  box-shadow: 0 12px 28px rgba(23, 69, 158, 0.18);
  transform: translateY(-2px);
}

.single-product div.product .related.products ul.products li.product:hover,
.single-product div.product .upsells.products ul.products li.product:hover {
  box-shadow: 0 20px 48px rgba(20, 35, 61, 0.12);
  transform: translateY(-5px);
}

.gmd-related-product:hover {
  border-color: rgba(38, 170, 225, 0.38);
  box-shadow: 0 22px 52px rgba(20, 35, 61, 0.12);
  text-decoration: none;
  transform: translateY(-5px);
}

.gmd-related-product:hover .gmd-related-product__button {
  background: #26aae1;
  color: #ffffff;
  transform: translateY(-1px);
}

.gmd-sticky-cart {
  position: fixed;
  z-index: 80;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  border-top: 1px solid rgba(217, 226, 236, 0.92);
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  box-shadow: 0 -18px 50px rgba(20, 35, 61, 0.12);
  backdrop-filter: blur(14px);
  padding: 16px 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity 220ms ease, transform 260ms ease, visibility 260ms ease;
}

.gmd-sticky-cart.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.gmd-sticky-cart__action {
  display: flex;
  flex-shrink: 0;
  gap: 16px;
  align-items: center;
}

.gmd-sticky-cart__button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  background: #26aae1 !important;
  color: #ffffff !important;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gmd-sticky-cart__button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -46%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 320ms ease;
}

.gmd-sticky-cart__button:hover {
  background: #17459e;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(38, 170, 225, 0.26);
  text-decoration: none;
  transform: translateY(-2px);
}

.gmd-sticky-cart__button:hover::before {
  left: 112%;
}

.gmd-quote-lock {
  overflow: hidden;
}

.gmd-quote-modal {
  position: fixed;
  z-index: 9000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.gmd-quote-modal.is-open {
  display: flex;
}

@keyframes gmd-quote-in {
  to {
    transform: translateY(0);
  }
}

.gmd-quote-modal__close:hover {
  background: #26aae1;
  color: #ffffff;
}

.gmd-phone-field {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 236, 0.96);
  border-radius: 6px;
  background: #f7f9fc;
}

.gmd-phone-field__code {
  display: inline-flex;
  min-width: 96px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(217, 226, 236, 0.96);
  background: #ffffff;
  color: var(--gmd-navy);
  font-size: 14px;
  font-weight: 650;
}

.gmd-phone-field input {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gmd-phone-field input:focus {
  border: 0;
  box-shadow: none;
}

.gmd-phone-field:focus-within {
  border-color: #26aae1;
  box-shadow: 0 0 0 3px rgba(38, 170, 225, 0.14);
}

.gmd-quote-form button[type="submit"]:hover {
  background: #17459e;
  box-shadow: 0 14px 32px rgba(23, 69, 158, 0.2);
  transform: translateY(-2px);
}

.gmd-quote-form button[type="submit"]:hover::before {
  left: 112%;
}

.gmd-distributor-lock {
  overflow: hidden;
}

.gmd-distributor-trigger:hover {
  background: #17459e;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(23, 69, 158, 0.2);
  transform: translateY(-2px);
}

.gmd-distributor-modal {
  position: fixed;
  z-index: 9020;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.gmd-distributor-modal.is-open {
  display: flex;
}

.gmd-distributor-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 34, 0.62);
  backdrop-filter: blur(9px);
}

.gmd-distributor-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1080px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 34px 100px rgba(10, 20, 34, 0.3);
  grid-template-columns: minmax(290px, 0.92fr) minmax(0, 1.08fr);
  transform: translateY(12px) scale(0.985);
  animation: gmd-distributor-in 180ms ease forwards;
}

@keyframes gmd-distributor-in {
  to {
    transform: translateY(0) scale(1);
  }
}

.gmd-distributor-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--gmd-navy);
  padding: 0;
  font-size: 24px;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.gmd-distributor-modal__close:hover {
  background: #26aae1;
  color: #ffffff;
  transform: rotate(90deg);
}

.gmd-distributor-modal__media {
  position: relative;
  display: flex;
  min-height: 100%;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20, 35, 61, 0.08), rgba(20, 35, 61, 0.9)),
    var(--gmd-distributor-image, linear-gradient(135deg, #14233d, #26aae1));
  background-position: center;
  background-size: cover;
  padding: clamp(26px, 4vw, 42px);
}

.gmd-distributor-modal__media::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(38, 170, 225, 0.32), transparent 44%),
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.16), transparent 32%);
  content: "";
}

.gmd-distributor-modal__media div {
  position: relative;
  z-index: 1;
}

.gmd-distributor-modal__media span,
.gmd-distributor-modal__content > span {
  display: block;
  margin-bottom: 10px;
  color: #26aae1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gmd-distributor-modal__media span {
  color: rgba(255, 255, 255, 0.78);
}

.gmd-distributor-modal__media h3 {
  max-width: 360px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 3.1vw, 40px);
  line-height: 1.05;
}

.gmd-distributor-modal__content {
  padding: clamp(24px, 4vw, 40px);
}

.gmd-distributor-modal__dialog h2 {
  margin: 0;
  color: var(--gmd-navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.gmd-distributor-modal__content > p {
  margin: 10px 0 16px;
  color: #667085;
  line-height: 1.65;
}

.gmd-distributor-modal__why {
  margin: 0 0 18px;
  border: 1px solid rgba(38, 170, 225, 0.2);
  border-left: 4px solid #26aae1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(38, 170, 225, 0.08), rgba(23, 69, 158, 0.04));
  padding: 14px 16px;
}

.gmd-distributor-modal__why strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gmd-navy);
  font-size: 15px;
}

.gmd-distributor-modal__why p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
}

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

.gmd-distributor-form label {
  display: grid;
  gap: 7px;
}

.gmd-distributor-form label span {
  color: var(--gmd-navy);
  font-size: 13px;
  font-weight: 600;
}

.gmd-distributor-form input,
.gmd-distributor-form select,
.gmd-distributor-form textarea {
  width: 100%;
  border: 1px solid rgba(217, 226, 236, 0.96);
  border-radius: 6px;
  background: #f7f9fc;
  color: var(--gmd-navy);
  padding: 11px 12px;
  font-size: 14px;
}

.gmd-distributor-form input:focus,
.gmd-distributor-form select:focus,
.gmd-distributor-form textarea:focus {
  border-color: #26aae1;
  outline: none;
  box-shadow: 0 0 0 3px rgba(38, 170, 225, 0.14);
}

.gmd-distributor-form__wide {
  grid-column: 1 / -1;
}

.gmd-turnstile-field {
  grid-column: 1 / -1;
  min-height: 64px;
}

.gmd-distributor-form button[type="submit"] {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #26aae1;
  color: #ffffff;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gmd-distributor-form button[type="submit"]::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -46%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 320ms ease;
}

.gmd-distributor-form button[type="submit"]:hover {
  background: #17459e;
  box-shadow: 0 14px 32px rgba(23, 69, 158, 0.2);
  transform: translateY(-2px);
}

.gmd-distributor-form button[type="submit"]:hover::before {
  left: 112%;
}

.gmd-site-footer {
  position: relative;
  overflow: hidden;
  width: 100vw !important;
  max-width: none !important;
  margin: 0 calc(50% - 50vw) !important;
  background:
    radial-gradient(circle at 84% 12%, rgba(38, 170, 225, 0.22), transparent 30%),
    linear-gradient(135deg, var(--gmd-footer-start, #10223d) 0%, var(--gmd-footer-mid, #17459e) 58%, var(--gmd-footer-end, #26aae1) 100%);
  color: #ffffff;
  padding: 0;
}

.gmd-site-footer::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 34, 0.06), rgba(7, 18, 34, 0.28)),
    radial-gradient(circle at 16% 76%, rgba(46, 211, 208, 0.16), transparent 28%);
  content: "";
  pointer-events: none;
}

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

.gmd-site-footer__cta,
.gmd-site-footer__main,
.gmd-site-footer__bottom {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.gmd-site-footer__cta {
  padding-top: clamp(34px, 5vw, 58px);
}

.gmd-site-footer__cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 24px 54px rgba(7, 18, 34, 0.16);
}

.gmd-site-footer__cta span,
.gmd-site-footer__nav h3,
.gmd-site-footer__contact h3 {
  display: block;
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gmd-site-footer__cta h2 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.12;
}

.gmd-site-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.gmd-site-footer__button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  border-radius: 8px;
  background: #ffffff;
  color: #17459e !important;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.gmd-site-footer__button--ghost {
  background: transparent;
  color: #ffffff !important;
}

.gmd-site-footer__button:hover {
  border-color: var(--gmd-footer-accent, #2ed3d0);
  background: var(--gmd-footer-accent, #2ed3d0);
  color: #10223d !important;
  transform: translateY(-2px);
}

.gmd-site-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(0, 1.7fr) minmax(240px, 0.8fr);
  gap: clamp(28px, 5vw, 58px);
  padding: clamp(38px, 6vw, 72px) 0;
}

.gmd-site-footer__brand p,
.gmd-site-footer__contact p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.75;
}

.gmd-site-footer__logo {
  display: inline-flex;
  max-width: 190px;
  align-items: center;
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.gmd-site-footer__logo img {
  display: block;
  max-width: 180px;
  max-height: 72px;
  width: auto;
  height: auto;
}

.gmd-site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.gmd-site-footer__badges span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.84);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
}

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

.gmd-site-footer__nav a,
.gmd-site-footer__contact a,
.gmd-site-footer__bottom a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  transition: color 160ms ease, transform 160ms ease;
}

.gmd-site-footer__nav a + a,
.gmd-site-footer__contact a + a {
  margin-top: 11px;
}

.gmd-site-footer__nav a:hover,
.gmd-site-footer__contact a:hover,
.gmd-site-footer__bottom a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.gmd-site-footer__contact {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
}

.gmd-site-footer__whatsapp {
  display: inline-flex !important;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 18px !important;
  border-radius: 999px;
  background: var(--gmd-footer-accent, #2ed3d0);
  color: #10223d !important;
  padding: 0 14px;
}

.gmd-site-footer__bottom {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px 0 24px;
}

.gmd-site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.gmd-site-footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gmd-site-footer__bottom a {
  font-size: 13px;
}

@media (max-width: 900px) {
  .gmd-site-footer__cta-inner,
  .gmd-site-footer__main {
    grid-template-columns: 1fr;
  }

  .gmd-site-footer__cta-actions {
    justify-content: flex-start;
  }

  .gmd-site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gmd-site-footer__cta,
  .gmd-site-footer__main,
  .gmd-site-footer__bottom {
    width: min(100% - 28px, 1320px);
  }

  .gmd-site-footer__cta-inner {
    padding: 22px;
  }

  .gmd-site-footer__button,
  .gmd-site-footer__cta-actions {
    width: 100%;
  }

  .gmd-site-footer__nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gmd-site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

.post-type-archive-product .site-main,
.tax-product_cat .site-main,
.tax-product_tag .site-main {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto clamp(56px, 8vw, 96px);
}

.gmd-products-archive-banner__categories a:hover {
  background: #ffffff;
  color: #17459e;
}

.gmd-products-archive-banner__categories a.is-active {
  border-color: #ffffff;
  background: #ffffff;
  color: #17459e;
}

.gmd-products-catalog-card:hover {
  border-color: rgba(38, 170, 225, 0.42);
  box-shadow: 0 24px 54px rgba(20, 35, 61, 0.13);
  transform: translateY(-4px);
}

.gmd-products-catalog-card:hover .gmd-products-catalog-card__image img {
  transform: scale(1.04);
}

.gmd-products-catalog-card__button:hover,
.gmd-products-catalog-card__quote:hover {
  background: #17459e;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(23, 69, 158, 0.2);
  transform: translateY(-2px);
}

.gmd-products-catalog-card__quote:hover {
  border-color: #17459e;
  background: #17459e;
}


.gmd-products-catalog__pagination .page-numbers:hover {
  border-color: #26aae1;
  background: #26aae1;
  color: #ffffff;
}

.gmd-products-view-toggle button.is-active,
.gmd-products-view-toggle button:hover {
  border-color: #26aae1;
  background: #26aae1;
  color: #ffffff;
}

.gmd-shop-layout {
  display: grid;
  clear: both;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: clamp(24px, 3vw, 42px);
}

.gmd-shop-layout.is-loading .gmd-shop-layout__products,
.gmd-shop-layout.is-loading .gmd-shop-filters {
  opacity: 0.52;
  pointer-events: none;
}

.gmd-shop-search {
  position: sticky;
  z-index: 8;
  top: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 0 0 22px;
  border: 1px solid rgba(38, 170, 225, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px;
  box-shadow: 0 18px 42px rgba(20, 35, 61, 0.08);
  backdrop-filter: blur(14px);
}

.gmd-shop-search input[type="search"] {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(217, 226, 236, 0.95);
  border-radius: 11px;
  background: #f8fbff;
  color: var(--gmd-navy);
  padding: 0 86px 0 46px;
  font-size: 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.gmd-shop-search input[type="search"]:focus {
  border-color: rgba(38, 170, 225, 0.62);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(38, 170, 225, 0.12);
}

.gmd-shop-search__clear:hover {
  background: #17459e;
  color: #ffffff;
}

.gmd-shop-search button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  background: #26aae1;
  color: #ffffff;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.gmd-shop-search button:hover {
  background: #17459e;
  box-shadow: 0 14px 26px rgba(23, 69, 158, 0.2);
  transform: translateY(-1px);
}

.gmd-shop-search .gmd-shop-search__suggestion {
  display: grid;
  width: 100%;
  min-height: 68px;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(217, 226, 236, 0.72);
  border-radius: 0;
  background: #ffffff;
  color: var(--gmd-navy);
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.gmd-shop-search .gmd-shop-search__suggestion:last-child {
  border-bottom: 0;
}

.gmd-shop-search .gmd-shop-search__suggestion:hover,
.gmd-shop-search .gmd-shop-search__suggestion:focus {
  background: linear-gradient(135deg, rgba(38, 170, 225, 0.12), rgba(23, 69, 158, 0.06));
  color: #17459e;
  box-shadow: none;
  outline: none;
  transform: none;
}

.gmd-shop-search .gmd-shop-search__suggestion img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #f8fbff;
  object-fit: cover;
}

.gmd-shop-search .gmd-shop-search__suggestion span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.gmd-shop-search .gmd-shop-search__suggestion strong {
  overflow: hidden;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gmd-shop-search .gmd-shop-search__suggestion small {
  overflow: hidden;
  color: #667085;
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gmd-shop-filters {
  position: sticky;
  top: 132px;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 236, 0.92);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(20, 35, 61, 0.07);
}

.gmd-shop-filters__head a:hover,
.gmd-shop-filters__footer a:hover {
  background: #17459e;
  color: #ffffff;
  transform: translateY(-1px);
}

.gmd-shop-filter-group {
  border-bottom: 1px solid rgba(217, 226, 236, 0.72);
  padding: 14px 16px;
}

.gmd-shop-filter-group:last-child {
  border-bottom: 0;
}

.gmd-shop-filter-group__toggle {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  margin: 0 0 10px;
  border: 0;
  background: transparent;
  color: var(--gmd-navy);
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: start;
  cursor: pointer;
}

.gmd-shop-filter-group__toggle span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.gmd-shop-filter-group__toggle span::before {
  display: block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #26aae1;
  content: "";
}

.gmd-shop-filter-group__toggle::after {
  color: #26aae1;
  font-size: 16px;
  font-weight: 700;
  content: "−";
}

.gmd-shop-filter-group.is-collapsed .gmd-shop-filter-group__toggle::after {
  content: "+";
}

.gmd-shop-filter-group.is-collapsed .gmd-shop-filter-group__options {
  display: none;
}

.gmd-shop-filter-group ul {
  display: flex;
  max-height: 146px;
  flex-wrap: wrap;
  gap: 7px;
  overflow: auto;
  margin: 0;
  padding: 1px 4px 2px 0;
  list-style: none;
  scrollbar-color: rgba(38, 170, 225, 0.42) transparent;
  scrollbar-width: thin;
}

.gmd-shop-filter-group ul::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.gmd-shop-filter-group ul::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(38, 170, 225, 0.42);
}

.gmd-shop-filter-group li {
  min-width: 0;
}

.gmd-shop-filter-group a {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 999px;
  background: #f8fbff;
  color: #14233d;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.gmd-shop-filter-group a::before {
  display: none;
}

.gmd-shop-filter-group a span {
  overflow: hidden;
  max-width: 128px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gmd-shop-filter-group a:hover,
.gmd-shop-filter-group a.is-active {
  border-color: rgba(38, 170, 225, 0.42);
  background: rgba(38, 170, 225, 0.1);
  color: #17459e;
  transform: translateY(-1px);
}

.gmd-shop-filter-group a.is-active {
  border-color: #17459e;
  background: #17459e;
  color: #ffffff;
}

.post-type-archive-product ul.products,
.tax-product_cat ul.products,
.tax-product_tag ul.products {
  display: grid;
  clear: both;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
}

.post-type-archive-product ul.products::before,
.post-type-archive-product ul.products::after,
.tax-product_cat ul.products::before,
.tax-product_cat ul.products::after,
.tax-product_tag ul.products::before,
.tax-product_tag ul.products::after {
  display: none;
}

.post-type-archive-product ul.products li.product,
.tax-product_cat ul.products li.product,
.tax-product_tag ul.products li.product {
  position: relative;
  display: flex;
  width: auto;
  min-height: 100%;
  float: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 236, 0.92);
  border-radius: 10px;
  background: #ffffff;
  padding: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.post-type-archive-product ul.products li.product:hover,
.tax-product_cat ul.products li.product:hover,
.tax-product_tag ul.products li.product:hover {
  border-color: rgba(38, 170, 225, 0.36);
  box-shadow: 0 22px 54px rgba(20, 35, 61, 0.12);
  transform: translateY(-5px);
}

.post-type-archive-product ul.products li.product > a.woocommerce-LoopProduct-link,
.tax-product_cat ul.products li.product > a.woocommerce-LoopProduct-link,
.tax-product_tag ul.products li.product > a.woocommerce-LoopProduct-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.post-type-archive-product ul.products li.product a img,
.tax-product_cat ul.products li.product a img,
.tax-product_tag ul.products li.product a img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.78;
  margin: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(38, 170, 225, 0.08), rgba(20, 35, 61, 0.03));
  object-fit: cover;
}

.gmd-loop-matches {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  border: 1px solid rgba(38, 170, 225, 0.18);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(38, 170, 225, 0.08), rgba(23, 69, 158, 0.03)),
    #ffffff;
  padding: 10px;
}

.gmd-loop-match {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(217, 226, 236, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: inherit;
  padding: 7px 8px 7px 7px;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.gmd-loop-match:hover,
.gmd-loop-match:focus {
  border-color: rgba(38, 170, 225, 0.48);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(20, 35, 61, 0.1);
  color: inherit;
  outline: none;
  text-decoration: none;
  transform: translateY(-1px);
}

.gmd-loop-match img {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: #f8fbff;
  object-fit: cover;
}

.gmd-loop-match div {
  min-width: 0;
}

.gmd-loop-match strong {
  display: block;
  overflow: hidden;
  color: var(--gmd-navy);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gmd-loop-match p {
  overflow: hidden;
  margin: 2px 0 0;
  color: #667085;
  font-size: 11px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gmd-loop-match > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(38, 170, 225, 0.12);
  color: #26aae1;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.gmd-loop-match:hover > span,
.gmd-loop-match:focus > span {
  background: #26aae1;
  color: #ffffff;
}

.gmd-loop-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}

.post-type-archive-product ul.products li.product .button,
.tax-product_cat ul.products li.product .button,
.tax-product_tag ul.products li.product .button {
  display: inline-flex;
  flex: 1 1 100%;
  width: auto;
  min-width: 0;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border-radius: 6px;
  background: #26aae1;
  color: #ffffff;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}

.post-type-archive-product ul.products li.product .button.loading,
.tax-product_cat ul.products li.product .button.loading,
.tax-product_tag ul.products li.product .button.loading {
  opacity: 0.82;
  padding-right: 15px;
}

.post-type-archive-product ul.products li.product .button.loading::after,
.tax-product_cat ul.products li.product .button.loading::after,
.tax-product_tag ul.products li.product .button.loading::after {
  position: static;
  margin-left: 8px;
}

.post-type-archive-product ul.products li.product .gmd-loop-show-product,
.tax-product_cat ul.products li.product .gmd-loop-show-product,
.tax-product_tag ul.products li.product .gmd-loop-show-product {
  border: 1px solid rgba(38, 170, 225, 0.34);
  background: rgba(38, 170, 225, 0.08);
  color: #26aae1;
}

.single-product div.product .gmd-single-cart-actions__view:hover,
.single-product div.product .gmd-single-cart-actions__checkout:hover {
  border-color: #17459e;
  background: #17459e;
  color: #ffffff;
}

.post-type-archive-product ul.products li.product .button:hover,
.tax-product_cat ul.products li.product .button:hover,
.tax-product_tag ul.products li.product .button:hover {
  background: #17459e;
  color: #ffffff;
}

.post-type-archive-product ul.products li.product .gmd-loop-show-product:hover,
.tax-product_cat ul.products li.product .gmd-loop-show-product:hover,
.tax-product_tag ul.products li.product .gmd-loop-show-product:hover {
  border-color: #17459e;
  background: #17459e;
  color: #ffffff;
}

.post-type-archive-product ul.products li.product .gmd-loop-product-actions a.added_to_cart.wc-forward:hover,
.tax-product_cat ul.products li.product .gmd-loop-product-actions a.added_to_cart.wc-forward:hover,
.tax-product_tag ul.products li.product .gmd-loop-product-actions a.added_to_cart.wc-forward:hover {
  background: #17459e !important;
  color: #ffffff !important;
}

.post-type-archive-product ul.products.gmd-products-list-view,
.tax-product_cat ul.products.gmd-products-list-view,
.tax-product_tag ul.products.gmd-products-list-view {
  grid-template-columns: 1fr;
}

.post-type-archive-product ul.products.gmd-products-list-view li.product,
.tax-product_cat ul.products.gmd-products-list-view li.product,
.tax-product_tag ul.products.gmd-products-list-view li.product {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.post-type-archive-product ul.products.gmd-products-list-view li.product > a.woocommerce-LoopProduct-link,
.tax-product_cat ul.products.gmd-products-list-view li.product > a.woocommerce-LoopProduct-link,
.tax-product_tag ul.products.gmd-products-list-view li.product > a.woocommerce-LoopProduct-link {
  display: contents;
}

.post-type-archive-product ul.products.gmd-products-list-view li.product a img,
.tax-product_cat ul.products.gmd-products-list-view li.product a img,
.tax-product_tag ul.products.gmd-products-list-view li.product a img {
  grid-row: 1 / span 6;
  width: 100%;
  margin: 0;
}


.post-type-archive-product ul.products.gmd-products-list-view li.product .gmd-loop-product-actions,
.post-type-archive-product ul.products.gmd-products-list-view li.product .button,
.tax-product_cat ul.products.gmd-products-list-view li.product .gmd-loop-product-actions,
.tax-product_cat ul.products.gmd-products-list-view li.product .button,
.tax-product_tag ul.products.gmd-products-list-view li.product .gmd-loop-product-actions,
.tax-product_tag ul.products.gmd-products-list-view li.product .button {
  grid-column: 2;
}

.gmd-product-carousel {
  background: var(--gmd-product-carousel-bg, #f7f9fc);
  direction: ltr;
  text-align: left;
  padding: clamp(54px, 7vw, 92px) 0;
}

.gmd-product-carousel__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.gmd-product-carousel__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.gmd-product-carousel__kicker {
  margin: 0 0 10px;
  color: var(--gmd-product-carousel-accent, #26aae1);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gmd-product-carousel h2 {
  max-width: 720px;
  margin: 0;
  color: var(--gmd-product-carousel-heading, var(--gmd-navy));
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

.gmd-product-carousel__arrows {
  display: inline-flex;
  gap: 10px;
}

.gmd-product-carousel__arrows button {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 35, 61, 0.14);
  border-radius: 50%;
  background: #ffffff;
  color: var(--gmd-product-carousel-heading, var(--gmd-navy));
  cursor: pointer;
  font-size: 18px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.gmd-product-carousel__arrows button:hover:not(:disabled) {
  border-color: var(--gmd-product-carousel-accent, #26aae1);
  background: var(--gmd-product-carousel-accent, #26aae1);
  color: #ffffff;
  transform: translateY(-2px);
}

.gmd-product-carousel__arrows button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.gmd-product-carousel__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.gmd-product-carousel__filters button {
  min-height: 40px;
  border: 1px solid rgba(20, 35, 61, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--gmd-product-carousel-heading, var(--gmd-navy));
  cursor: pointer;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.gmd-product-carousel__filters button:hover,
.gmd-product-carousel__filters button.is-active {
  border-color: var(--gmd-product-carousel-accent, #26aae1);
  background: var(--gmd-product-carousel-accent, #26aae1);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(38, 170, 225, 0.18);
}

.gmd-product-carousel__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gmd-product-carousel__track::-webkit-scrollbar {
  display: none;
}

.gmd-product-carousel__card {
  display: flex;
  flex: 0 0 min(342px, 82vw);
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(20, 35, 61, 0.08);
  border-radius: 8px;
  background: var(--gmd-product-carousel-card, #ffffff);
  box-shadow: 0 18px 42px rgba(20, 35, 61, 0.08);
  scroll-snap-align: start;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

html[lang^="ar"] .gmd-product-carousel {
  direction: rtl;
  text-align: right;
}

html[lang^="ar"] .gmd-product-carousel__track,
html[lang^="ar"] .gmd-product-carousel__card {
  direction: rtl;
}

html[lang^="ar"] .gmd-product-carousel__arrows {
  direction: ltr;
}

.gmd-product-carousel__card:hover {
  border-color: rgba(38, 170, 225, 0.38);
  box-shadow: 0 24px 54px rgba(20, 35, 61, 0.13);
  transform: translateY(-4px);
}

.gmd-product-carousel__card.is-hidden {
  display: none;
}

.gmd-product-carousel__image {
  position: relative;
  display: flex;
  min-height: 238px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fbff, #edf4fb);
}

.gmd-product-carousel__image img {
  width: 100%;
  height: 238px;
  object-fit: contain;
  padding: 22px;
  transition: transform 220ms ease;
}

.gmd-product-carousel__card:hover .gmd-product-carousel__image img {
  transform: scale(1.04);
}

.gmd-product-carousel__body {
  display: flex;
  min-height: 300px;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.gmd-product-carousel__category {
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(38, 170, 225, 0.1);
  color: var(--gmd-product-carousel-accent, #26aae1);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gmd-product-carousel__body h3 {
  margin: 0;
  color: var(--gmd-product-carousel-heading, var(--gmd-navy));
  font-size: 20px;
  line-height: 1.25;
}

.gmd-product-carousel__body h3 a {
  color: inherit;
}

.gmd-product-carousel__body h3 a:hover {
  color: var(--gmd-product-carousel-accent, #26aae1);
  text-decoration: none;
}

.gmd-product-carousel__body p {
  display: -webkit-box;
  min-height: 75px;
  overflow: hidden;
  margin: 12px 0 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--gmd-product-carousel-text, #667085);
  font-size: 14px;
  line-height: 1.78;
}

.gmd-product-carousel__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.gmd-product-carousel__cart,
.gmd-product-carousel__more {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gmd-product-carousel__cart {
  border: 1px solid var(--gmd-product-carousel-button, #26aae1);
  background: var(--gmd-product-carousel-button, #26aae1);
  color: var(--gmd-product-carousel-button-text, #ffffff);
}

.gmd-product-carousel__cart:hover {
  border-color: var(--gmd-product-carousel-button-hover, #17459e);
  background: var(--gmd-product-carousel-button-hover, #17459e);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(38, 170, 225, 0.24);
  text-decoration: none;
  transform: translateY(-2px);
}

.gmd-product-carousel__more {
  border: 1px solid rgba(20, 35, 61, 0.14);
  background: #ffffff;
  color: var(--gmd-product-carousel-link, var(--gmd-navy));
}

.gmd-product-carousel__more:hover {
  border-color: var(--gmd-product-carousel-accent, #26aae1);
  color: var(--gmd-product-carousel-accent, #26aae1);
  text-decoration: none;
  transform: translateY(-2px);
}

.gmd-product-carousel--catalog .gmd-product-carousel__cart--view {
  border-color: var(--gmd-product-carousel-button, #26aae1);
  background: var(--gmd-product-carousel-button, #26aae1);
  color: var(--gmd-product-carousel-button-text, #ffffff);
}

.gmd-product-carousel--catalog .gmd-product-carousel__quote {
  border-color: rgba(38, 170, 225, 0.34);
  background: rgba(38, 170, 225, 0.08);
  color: var(--gmd-product-carousel-link, var(--gmd-navy));
}

.gmd-product-carousel--catalog .gmd-product-carousel__quote:hover {
  border-color: var(--gmd-product-carousel-button-hover, #17459e);
  background: var(--gmd-product-carousel-button-hover, #17459e);
  color: #ffffff;
}

.woocommerce-cart .site-main {
  background: #f7f9fc;
}

.woocommerce-cart .woocommerce {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(62px, 7vw, 96px);
}

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error {
  overflow: hidden;
  border: 1px solid rgba(38, 170, 225, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: var(--gmd-navy);
  box-shadow: 0 16px 36px rgba(20, 35, 61, 0.07);
}

.woocommerce-cart table.cart img {
  width: 86px;
  border-radius: 8px;
  background: #f7f9fc;
  padding: 8px;
}

.woocommerce-cart table.cart .product-name a:hover {
  color: #26aae1;
  text-decoration: none;
}

.woocommerce-cart table.cart .product-remove a:hover {
  background: #dc3545;
  color: #ffffff !important;
}

.woocommerce-cart table.cart .quantity .qty {
  width: 82px;
  min-height: 42px;
  border: 1px solid rgba(20, 35, 61, 0.16);
  border-radius: 6px;
  color: var(--gmd-navy);
  font-weight: 700;
}

.woocommerce-cart table.cart td.actions {
  background: #fbfdff;
  padding: 20px;
}

.woocommerce-cart .button,
.woocommerce-cart button.button,
.woocommerce-cart input.button {
  min-height: 46px;
  border: 1px solid #26aae1;
  border-radius: 6px;
  background: #26aae1;
  color: #ffffff;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 46px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.woocommerce-cart .button:hover,
.woocommerce-cart button.button:hover,
.woocommerce-cart input.button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  border-color: #17459e;
  background: #17459e;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(38, 170, 225, 0.22);
  transform: translateY(-2px);
}

.woocommerce-cart table.cart td.actions > .button {
  float: right;
}

.gmd-cart-sale-product:hover {
  border-color: rgba(38, 170, 225, 0.34);
  box-shadow: 0 18px 42px rgba(20, 35, 61, 0.1);
  transform: translateY(-4px);
}

.gmd-cart-sale-product:hover .gmd-cart-sale-product__image img {
  transform: scale(1.04);
}

.gmd-cart-sale-product__body h3 a:hover {
  color: #26aae1;
}

.gmd-cart-sale-product__button:hover {
  border-color: #17459e;
  background: #17459e;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(23, 69, 158, 0.18);
  transform: translateY(-2px);
}

.woocommerce-cart {
  background:
    linear-gradient(180deg, #f4f9fd 0%, #ffffff 42%, #f7f9fc 100%);
}

.woocommerce-cart .site-main {
  background: transparent;
}

.woocommerce-cart .woocommerce {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 26px;
  align-items: start;
  margin: 0 auto clamp(64px, 8vw, 104px);
}

.woocommerce-cart table.cart img {
  width: 92px;
  box-shadow: inset 0 0 0 1px rgba(20, 35, 61, 0.04);
}

.woocommerce-cart table.cart .quantity .qty {
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.woocommerce-cart table.cart .quantity .qty:focus {
  border-color: #26aae1;
  box-shadow: 0 0 0 3px rgba(38, 170, 225, 0.12);
  outline: 0;
}

.woocommerce-cart table.cart td.actions {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  border-color: #17459e;
  background: #17459e;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(23, 69, 158, 0.24);
  transform: translateY(-2px);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover::before {
  transform: translateX(120%);
}

.gmd-cart-quote-button:hover,
.woocommerce-cart .wc-proceed-to-checkout .gmd-cart-quote-button:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #17459e;
  box-shadow: 0 18px 38px rgba(7, 18, 34, 0.18);
  transform: translateY(-2px);
}

.woocommerce-cart .button,
.woocommerce-cart button.button,
.woocommerce-cart input.button {
  font-weight: 600;
}

.woocommerce-cart .wc-block-components-product-name:hover {
  color: #26aae1;
}

.woocommerce-cart .wc-block-cart-item__remove-link:hover {
  color: #a71d2a;
}

.woocommerce-cart .wc-block-cart__submit-button:hover,
.woocommerce-cart .wc-block-components-button:not(.is-link):hover {
  border-color: #17459e;
  background: #17459e;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(23, 69, 158, 0.24);
  transform: translateY(-2px);
}

.woocommerce-cart .wc-block-cart__submit-button:hover::before,
.woocommerce-cart .wc-block-components-button:not(.is-link):hover::before {
  transform: translateX(120%);
}

@media (max-width: 760px) {

  .gmd-products-catalog-card:hover {
    box-shadow: 0 14px 34px rgba(20, 35, 61, 0.1);
    transform: none;
  }

  .gmd-product-carousel__header {
    grid-template-columns: 1fr;
  }

  .gmd-product-carousel__arrows {
    justify-content: flex-start;
  }

  .gmd-product-carousel__actions {
    grid-template-columns: 1fr;
  }

  
  .woocommerce-cart table.cart td.actions > .button {
    width: 100%;
  }

  .woocommerce-cart table.cart td.actions > .button {
    float: none;
    margin-top: 10px;
  }

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

@media (max-width: 760px) {
  body.admin-bar .gmd-complete-header--sticky,
  .gmd-complete-header--sticky {
    top: 0;
  }

  .gmd-complete-header.is-open .gmd-complete-header__nav,
  .gmd-complete-header.is-open .gmd-complete-header__actions {
    display: flex;
  }

  .gmd-header-contact,
  .gmd-elementor-menu ul,
  .gmd-language-switcher {
    justify-content: center;
  }

  .gmd-elementor-menu > div > ul,
  .gmd-elementor-menu > ul,
  .gmd-elementor-menu .menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .gmd-elementor-menu li,
  .gmd-elementor-menu a {
    width: 100%;
  }

  .gmd-elementor-menu a {
    min-height: 44px;
    justify-content: space-between;
    padding: 0 14px;
    font-size: 13px;
  }

  .gmd-elementor-menu .sub-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    box-shadow: none;
  }

  .gmd-language-switcher__panel {
    right: 50%;
    transform: translateX(50%);
  }

  .gmd-quote-modal,
  .gmd-distributor-modal {
    align-items: flex-start;
    padding: 12px;
    padding-top: max(12px, env(safe-area-inset-top));
  }

  
  .gmd-distributor-modal__dialog {
    max-height: calc(100dvh - 24px);
    border-radius: 10px;
  }

  
  .gmd-distributor-modal__close {
    top: 10px;
    right: 10px;
    z-index: 10;
    width: 38px;
    height: 38px;
    box-shadow: 0 10px 24px rgba(10, 20, 34, 0.16);
  }

  .gmd-sector-hero {
    min-height: auto;
    background: linear-gradient(180deg, #0f1f38, #153a61);
  }

  .gmd-sector-hero__lcp-image {
    height: 100%;
    opacity: var(--gmd-image-opacity, 0.26);
    object-position: center top;
  }

  .gmd-sector-hero__intro {
    width: min(100% - 24px, 1280px);
    padding: 24px 0 10px;
  }

  .gmd-sector-hero__intro h1 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.14;
  }

  .gmd-sector-hero__subtitle {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.42;
  }

  .gmd-sector-hero__grid {
    width: min(100% - 24px, 1280px);
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 7px;
    padding: 2px 0 14px;
  }

  .gmd-sector-card {
    min-height: 124px;
    padding: 15px;
  }

  .gmd-sector-card__number {
    top: 12px;
    right: 14px;
    font-size: 28px;
  }

  .gmd-sector-card__eyebrow {
    margin-bottom: 5px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .gmd-sector-card strong {
    font-size: 21px;
    line-height: 1.08;
  }

  .gmd-sector-card__text {
    max-width: none;
    display: -webkit-box;
    overflow: hidden;
    margin-top: 5px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px;
    line-height: 1.38;
  }

  .gmd-sector-card__button {
    min-height: 31px;
    margin-top: 7px;
    padding: 0 11px;
    font-size: 11px;
  }

  .gmd-sector-slide {
    position: relative;
    display: none;
  }

  .gmd-sector-slide.is-active {
    display: flex;
  }

  .gmd-sector-slider__controls {
    position: static;
    width: fit-content;
    margin: 0 auto 22px;
  }

  
  .gmd-icon-boxes--cols-4 .gmd-icon-boxes__grid {
    grid-template-columns: 1fr;
  }

  .gmd-manufacturing-process__hero,
  .gmd-manufacturing-process__timeline,
  .gmd-welcome-section__hero,
  .gmd-welcome-section__why {
    grid-template-columns: 1fr;
  }

  .gmd-manufacturing-process__cards,
  .gmd-welcome-section__cards,
  .gmd-welcome-section__benefits {
    grid-template-columns: 1fr;
  }

  .gmd-manufacturing-process__timeline-head {
    position: static;
  }

  .gmd-welcome-section__visual {
    min-height: 360px;
  }

  .gmd-cta-banner {
    min-height: auto;
    padding: 28px;
  }

  .gmd-cta-banner__actions,
  .gmd-cta-banner__button {
    width: 100%;
  }

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

  .single-product div.product form.cart {
    align-items: stretch;
  }

  .gmd-variation-swatches {
    max-height: 70px;
    gap: 6px;
  }

  .single-product div.product table.variations tr.gmd-variation-row-disabled .gmd-variation-swatches {
    max-height: 36px;
  }

  .gmd-variation-swatch {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .single-product div.product .single_add_to_cart_button,
  .single-product div.product .button {
    width: 100%;
  }

  .single-product div.product .woocommerce-variation-add-to-cart {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
  }

  .single-product div.product .woocommerce-variation-add-to-cart .quantity {
    grid-column: 1;
  }

  .single-product div.product .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    grid-column: 1 / -1;
    min-width: 0;
  }

  .gmd-sticky-cart__action {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .gmd-sticky-cart__button {
    flex: 1;
  }

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

  .gmd-distributor-modal__dialog {
    grid-template-columns: 1fr;
  }

  .gmd-distributor-modal__media {
    min-height: 220px;
  }

  .post-type-archive-product ul.products,
  .tax-product_cat ul.products,
  .tax-product_tag ul.products {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gmd-shop-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;
  }

  .gmd-shop-search {
    grid-template-columns: 1fr;
    gap: 9px;
    top: 74px;
    margin-bottom: 14px;
  }

  .gmd-shop-search input[type="search"],
  .gmd-shop-search button {
    width: 100%;
    min-height: 46px;
  }

  .gmd-shop-filters {
    position: fixed;
    z-index: 140;
    inset: auto 0 0;
    display: flex;
    width: 100%;
    max-height: min(82vh, 720px);
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .gmd-shop-layout.is-filter-open .gmd-shop-filters {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  html.gmd-shop-filter-lock,
  html.gmd-shop-filter-lock body {
    overflow: hidden;
  }

  .gmd-shop-layout.is-filter-open::before {
    position: fixed;
    z-index: 139;
    inset: 0;
    background: rgba(10, 20, 34, 0.42);
    content: "";
  }

  .gmd-shop-filter-group {
    flex: 0 0 auto;
  }

  .gmd-shop-filters > .gmd-shop-filter-group {
    overflow: visible;
  }

  .gmd-shop-filters {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gmd-shop-filter-group:first-of-type {
    border-top: 0;
  }

  .gmd-shop-filter-group__options {
    max-height: 190px;
    overflow: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }

  .gmd-shop-filter-group ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }

  .post-type-archive-product ul.products li.product,
  .tax-product_cat ul.products li.product,
  .tax-product_tag ul.products li.product {
    width: 100% !important;
    padding: 12px;
    border-radius: 9px;
  }

  .post-type-archive-product ul.products li.product:hover,
  .tax-product_cat ul.products li.product:hover,
  .tax-product_tag ul.products li.product:hover {
    box-shadow: 0 14px 34px rgba(20, 35, 61, 0.1);
    transform: none;
  }

  .post-type-archive-product ul.products li.product a img,
  .tax-product_cat ul.products li.product a img,
  .tax-product_tag ul.products li.product a img {
    aspect-ratio: 1 / 0.68;
    border-radius: 7px;
  }

  .gmd-loop-matches {
    display: none;
  }

  .gmd-loop-product-actions {
    display: block;
    gap: 8px;
    padding-top: 14px;
  }

  .post-type-archive-product ul.products li.product .button,
  .tax-product_cat ul.products li.product .button,
  .tax-product_tag ul.products li.product .button {
    width: 100%;
    min-height: 40px;
    padding: 0 10px;
    font-size: 12.5px;
  }

  .post-type-archive-product ul.products.gmd-products-list-view li.product,
  .tax-product_cat ul.products.gmd-products-list-view li.product,
  .tax-product_tag ul.products.gmd-products-list-view li.product {
    display: flex;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .post-type-archive-product ul.products.gmd-products-list-view li.product > a.woocommerce-LoopProduct-link,
  .tax-product_cat ul.products.gmd-products-list-view li.product > a.woocommerce-LoopProduct-link,
  .tax-product_tag ul.products.gmd-products-list-view li.product > a.woocommerce-LoopProduct-link {
    display: block;
  }

  .post-type-archive-product ul.products.gmd-products-list-view li.product a img,
  .tax-product_cat ul.products.gmd-products-list-view li.product a img,
  .tax-product_tag ul.products.gmd-products-list-view li.product a img {
    grid-row: auto;
  }

  
  .post-type-archive-product ul.products.gmd-products-list-view li.product .gmd-loop-product-actions,
  .post-type-archive-product ul.products.gmd-products-list-view li.product .button,
  .tax-product_cat ul.products.gmd-products-list-view li.product .gmd-loop-product-actions,
  .tax-product_cat ul.products.gmd-products-list-view li.product .button,
  .tax-product_tag ul.products.gmd-products-list-view li.product .gmd-loop-product-actions,
  .tax-product_tag ul.products.gmd-products-list-view li.product .button {
    grid-column: auto;
  }

  .post-type-archive-product ul.products,
  .post-type-archive-product ul.products.gmd-products-list-view,
  .tax-product_cat ul.products,
  .tax-product_cat ul.products.gmd-products-list-view,
  .tax-product_tag ul.products,
  .tax-product_tag ul.products.gmd-products-list-view {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: -16px;
    margin-left: -16px;
    padding: 2px 16px 18px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .post-type-archive-product ul.products::-webkit-scrollbar,
  .tax-product_cat ul.products::-webkit-scrollbar,
  .tax-product_tag ul.products::-webkit-scrollbar {
    display: none;
  }

  .post-type-archive-product ul.products li.product,
  .post-type-archive-product ul.products.gmd-products-list-view li.product,
  .tax-product_cat ul.products li.product,
  .tax-product_cat ul.products.gmd-products-list-view li.product,
  .tax-product_tag ul.products li.product,
  .tax-product_tag ul.products.gmd-products-list-view li.product {
    display: flex !important;
    flex: 0 0 min(82vw, 340px) !important;
    width: min(82vw, 340px) !important;
    min-height: 0;
    scroll-snap-align: start;
    transform: none !important;
  }

  .post-type-archive-product ul.products li.product > a.woocommerce-LoopProduct-link,
  .post-type-archive-product ul.products.gmd-products-list-view li.product > a.woocommerce-LoopProduct-link,
  .tax-product_cat ul.products li.product > a.woocommerce-LoopProduct-link,
  .tax-product_cat ul.products.gmd-products-list-view li.product > a.woocommerce-LoopProduct-link,
  .tax-product_tag ul.products li.product > a.woocommerce-LoopProduct-link,
  .tax-product_tag ul.products.gmd-products-list-view li.product > a.woocommerce-LoopProduct-link {
    display: block !important;
    min-width: 0;
  }

  .post-type-archive-product ul.products li.product a img,
  .post-type-archive-product ul.products.gmd-products-list-view li.product a img,
  .tax-product_cat ul.products li.product a img,
  .tax-product_cat ul.products.gmd-products-list-view li.product a img,
  .tax-product_tag ul.products li.product a img,
  .tax-product_tag ul.products.gmd-products-list-view li.product a img {
    aspect-ratio: 1 / 0.72;
    max-height: 210px;
    object-fit: contain;
  }

  .post-type-archive-product ul.products li.product .gmd-loop-product-actions,
  .post-type-archive-product ul.products.gmd-products-list-view li.product .gmd-loop-product-actions,
  .tax-product_cat ul.products li.product .gmd-loop-product-actions,
  .tax-product_cat ul.products.gmd-products-list-view li.product .gmd-loop-product-actions,
  .tax-product_tag ul.products li.product .gmd-loop-product-actions,
  .tax-product_tag ul.products.gmd-products-list-view li.product .gmd-loop-product-actions {
    margin-top: auto;
  }

  .post-type-archive-product ul.products li.product .button,
  .post-type-archive-product ul.products.gmd-products-list-view li.product .button,
  .tax-product_cat ul.products li.product .button,
  .tax-product_cat ul.products.gmd-products-list-view li.product .button,
  .tax-product_tag ul.products li.product .button,
  .tax-product_tag ul.products.gmd-products-list-view li.product .button {
    min-height: 42px;
    border-radius: 7px;
  }
}

.woocommerce-message .button.wc-forward:hover,
.woocommerce-info .button.wc-forward:hover,
.wc-block-components-notice-banner .button.wc-forward:hover,
.wc-block-components-notice-banner__content .wc-forward:hover {
  border-color: #26aae1;
  background: #26aae1;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(38, 170, 225, 0.2);
  transform: translateY(-1px);
}


.woocommerce-cart .wc-block-components-totals-item {
  padding-left: 4px;
  padding-right: 4px;
}

.woocommerce-cart .wc-block-components-totals-item {
  gap: 14px;
}

.woocommerce-checkout {
  background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 42%, #f7f9fc 100%);
}

.woocommerce-checkout .site-main {
  background: transparent;
}

.woocommerce-checkout .woocommerce {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(64px, 8vw, 104px);
}

.woocommerce-checkout .woocommerce form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 28px;
  align-items: start;
}


.woocommerce-checkout .wc-block-checkout__sidebar {
  overflow: hidden;
  border: 1px solid rgba(20, 35, 61, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(20, 35, 61, 0.07);
}

.woocommerce-checkout h3,
.woocommerce-checkout .wc-block-checkout__sidebar h2 {
  margin: 0 0 18px;
  color: var(--gmd-navy);
  font-size: 24px;
  line-height: 1.2;
}

.woocommerce-checkout .form-row label {
  color: var(--gmd-navy);
  font-size: 13px;
  font-weight: 700;
}


.woocommerce-checkout select,
.woocommerce-checkout textarea {
  min-height: 46px;
  border: 1px solid rgba(20, 35, 61, 0.14);
  border-radius: 6px;
  background: #ffffff;
  color: var(--gmd-navy);
  padding: 0 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.woocommerce-checkout textarea {
  min-height: 110px;
  padding-top: 12px;
}


.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  border-color: #26aae1;
  box-shadow: 0 0 0 3px rgba(38, 170, 225, 0.12);
  outline: 0;
}

.woocommerce-checkout #place_order:hover,
.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  border-color: #17459e;
  background: #17459e;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(23, 69, 158, 0.24);
  transform: translateY(-2px);
}

.woocommerce-checkout .wc-block-checkout__sidebar {
  position: sticky;
  top: 28px;
  width: auto;
  padding: 28px;
}

@media (min-width: 761px) {
  .gmd-sector-hero__intro,
  .gmd-sector-hero__grid {
    width: min(1320px, calc(100% - 32px));
  }

  .gmd-sector-hero__intro h1 {
    max-width: 920px;
  }

  .gmd-sector-hero__subtitle {
    max-width: 760px;
  }

  .gmd-sector-hero__grid {
    gap: 22px;
  }

  .gmd-sector-card {
    min-height: 400px;
  }
}

@media (max-width: 760px) {

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

  
  .woocommerce-checkout .wc-block-checkout__sidebar {
    position: static;
    padding: 22px;
  }

  .gmd-shop-filter-group ul {
    grid-template-columns: 1fr;
  }
}

a.added_to_cart.wc-forward:hover,
.woocommerce a.added_to_cart.wc-forward:hover,
.woocommerce-message .button.wc-forward:hover,
.woocommerce-info .button.wc-forward:hover,
.wc-block-components-notice-banner a.wc-forward:hover,
.wc-block-components-notice-banner .button.wc-forward:hover,
.wc-block-components-notice-banner__content a.wc-forward:hover {
  border-color: #26aae1 !important;
  background: #26aae1 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 20px rgba(38, 170, 225, 0.2) !important;
  transform: translateY(-1px) !important;
}

.gmd-add-more-lock,
.gmd-add-more-lock body {
  overflow: hidden;
}

.gmd-add-more-modal.is-open {
  display: flex;
}

.gmd-add-more-modal__head {
  width: min(680px, 100%);
  margin-bottom: 24px;
  padding-right: 46px;
}

.gmd-add-more-modal__head span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  background: rgba(38, 170, 225, 0.12);
  color: #26aae1;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.gmd-add-more-modal__head h2 {
  margin: 12px 0 8px;
  color: var(--gmd-navy);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 650;
  line-height: 1.08;
}

.gmd-add-more-modal__head p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.6;
}

.gmd-add-more-product .button:hover {
  background: #17459e;
  color: #ffffff;
}

.gmd-add-more-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}

.gmd-add-more-modal__actions .button,
.gmd-add-more-modal__secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 170, 225, 0.28);
  border-radius: 6px;
  background: rgba(38, 170, 225, 0.1);
  color: #17459e;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.gmd-add-more-modal__checkout {
  border-color: #26aae1 !important;
  background: #26aae1 !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(38, 170, 225, 0.22);
}

.gmd-add-more-modal__checkout:hover,
.gmd-add-more-modal__secondary:hover {
  border-color: #17459e !important;
  background: #17459e !important;
  color: #ffffff !important;
}


.gmd-add-more-modal__error {
  border: 1px solid rgba(38, 170, 225, 0.18);
  border-radius: 8px;
  background: #f8fbff;
  color: #667085;
  padding: 22px;
  text-align: center;
}

@media (max-width: 560px) {

  .gmd-add-more-modal__actions .button,
  .gmd-add-more-modal__secondary {
    width: 100%;
  }
}

body.gmd-catalog-mode .add_to_cart_button,
body.gmd-catalog-mode .single_add_to_cart_button,
body.gmd-catalog-mode form.cart,
body.gmd-catalog-mode .gmd-sticky-cart:not(.gmd-sticky-cart--quote) {
  display: none !important;
}

.gmd-single-post__category:hover {
  background: #ffffff;
  color: #17459e;
  text-decoration: none;
}

.gmd-single-post__content a:hover {
  color: #26aae1;
}

.gmd-single-post__tags a:hover {
  background: #26aae1;
  color: #ffffff;
}

.gmd-single-post__products-tab a:hover {
  background: #ffffff;
  color: #17459e;
  box-shadow: 0 12px 24px rgba(7, 18, 34, 0.2);
  transform: translateY(-2px);
}

.gmd-single-post__sidebar-card > a:not(.gmd-single-post__related):hover {
  color: #26aae1;
}

.gmd-single-post__related:hover strong {
  color: #26aae1;
}

.gmd-single-post__pagination-link:hover {
  border-color: rgba(38, 170, 225, 0.3);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(20, 35, 61, 0.08);
  text-decoration: none;
  transform: translateY(-2px);
}

.gmd-single-post__pagination-link:hover span {
  background: #26aae1;
  color: #ffffff;
}

.gmd-single-post__product-cta a:hover {
  background: #ffffff;
  color: #17459e;
  box-shadow: 0 14px 28px rgba(7, 18, 34, 0.2);
  transform: translateY(-2px);
}

.gmd-distributor-cta {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 10px;
  background:
    linear-gradient(120deg, var(--gmd-distributor-cta-start, rgba(20, 35, 61, 0.96)), var(--gmd-distributor-cta-end, rgba(38, 170, 225, 0.86))),
    var(--gmd-navy);
  color: #ffffff;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 22px 55px rgba(20, 35, 61, 0.13);
}

.gmd-distributor-cta::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(38, 170, 225, 0.32), transparent 28%),
    linear-gradient(135deg, transparent 0 44%, rgba(255, 255, 255, 0.1) 44% 45%, transparent 45%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 84px);
  content: "";
  pointer-events: none;
}

.gmd-distributor-cta > * {
  position: relative;
  z-index: 1;
}

.gmd-distributor-cta span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gmd-distributor-cta-eyebrow, rgba(255, 255, 255, 0.88));
  padding: 0 13px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gmd-distributor-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--gmd-distributor-cta-title, #ffffff);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
}

.gmd-distributor-cta p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--gmd-distributor-cta-text, rgba(255, 255, 255, 0.78));
  font-size: 15px;
  line-height: 1.68;
}

.gmd-distributor-cta a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  background: var(--gmd-distributor-cta-button, #26aae1);
  color: var(--gmd-distributor-cta-button-text, #ffffff);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gmd-distributor-cta a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -46%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 320ms ease;
}

.gmd-distributor-cta a:hover {
  background: var(--gmd-distributor-cta-button-hover, #ffffff);
  color: var(--gmd-distributor-cta-button-hover-text, #17459e);
  box-shadow: 0 14px 28px rgba(7, 18, 34, 0.2);
  transform: translateY(-2px);
}

.gmd-distributor-cta a:hover::before {
  left: 112%;
}

.gmd-shop-entry {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background:
    radial-gradient(circle at 86% 8%, rgba(38, 170, 225, 0.16), transparent 30%),
    radial-gradient(circle at 10% 88%, rgba(23, 69, 158, 0.08), transparent 26%),
    linear-gradient(180deg, var(--gmd-shop-entry-bg, #f4f9fd), #ffffff);
  padding: clamp(48px, 6vw, 78px) 0;
}

.gmd-shop-entry::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(38, 170, 225, 0.08) 42% 43%, transparent 43%),
    repeating-linear-gradient(90deg, rgba(20, 35, 61, 0.035) 0 1px, transparent 1px 86px);
  content: "";
  pointer-events: none;
}

.gmd-shop-entry__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(var(--gmd-shop-entry-width, 1320px), calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: clamp(20px, 4vw, 52px);
  align-items: center;
  margin: 0 auto;
  border: 1px solid rgba(217, 226, 236, 0.8);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92)),
    var(--gmd-shop-entry-card, #ffffff);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: 0 22px 58px rgba(20, 35, 61, 0.08);
}

.gmd-shop-entry__copy {
  max-width: 920px;
}

.gmd-shop-entry__icon {
  position: relative;
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 170, 225, 0.1);
  border-radius: 10px;
  background:
    radial-gradient(circle at 68% 26%, rgba(38, 170, 225, 0.12), transparent 34%),
    rgba(38, 170, 225, 0.045);
}

.gmd-shop-entry__icon::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(38, 170, 225, 0.08);
  border-radius: 8px;
  content: "";
}

.gmd-shop-entry__icon svg {
  position: relative;
  z-index: 1;
  width: clamp(118px, 13vw, 168px);
  height: clamp(118px, 13vw, 168px);
  fill: none;
  stroke: var(--gmd-shop-entry-accent, #26aae1);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  opacity: 0.24;
}

.gmd-shop-entry__eyebrow {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 15px;
  border-radius: 999px;
  background: rgba(38, 170, 225, 0.12);
  color: var(--gmd-shop-entry-accent, #26aae1);
  padding: 0 13px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gmd-shop-entry h2 {
  max-width: 820px;
  margin: 0;
  color: var(--gmd-shop-entry-heading, var(--gmd-navy));
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 650;
  line-height: 1.04;
}

.gmd-shop-entry p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--gmd-shop-entry-text, #667085);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.72;
}

.gmd-shop-entry__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gmd-shop-entry__button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gmd-shop-entry__button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -46%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 320ms ease;
}

.gmd-shop-entry__button--primary {
  border: 1px solid var(--gmd-shop-entry-button, #26aae1);
  background: var(--gmd-shop-entry-button, #26aae1);
  color: var(--gmd-shop-entry-button-text, #ffffff);
  box-shadow: 0 16px 32px rgba(38, 170, 225, 0.2);
}

.gmd-shop-entry__button--secondary {
  border: 1px solid rgba(20, 35, 61, 0.14);
  background: #ffffff;
  color: var(--gmd-shop-entry-heading, var(--gmd-navy));
}

.gmd-shop-entry__button:hover {
  border-color: var(--gmd-shop-entry-button-hover, #17459e);
  background: var(--gmd-shop-entry-button-hover, #17459e);
  color: var(--gmd-shop-entry-button-hover-text, #ffffff);
  box-shadow: 0 18px 38px rgba(20, 35, 61, 0.16);
  text-decoration: none;
  transform: translateY(-2px);
}

.gmd-shop-entry__button:hover::before {
  left: 112%;
}

@media (max-width: 760px) {

  .gmd-distributor-cta {
    grid-template-columns: 1fr;
  }

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

  .gmd-shop-entry__icon {
    min-height: 150px;
  }
}

@media (max-width: 640px) {
  .gmd-shop-entry {
    padding: 46px 0;
  }

  .gmd-shop-entry__inner {
    width: min(100% - 28px, var(--gmd-shop-entry-width, 1320px));
  }

  .gmd-shop-entry__actions,
  .gmd-shop-entry__button {
    width: 100%;
  }

  .gmd-shop-entry__inner {
    padding: 24px;
  }
}

.gmd-articles-archive__filters a:hover,
.gmd-articles-archive__filters a.is-active {
  border-color: #26aae1;
  background: #26aae1;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(38, 170, 225, 0.18);
  transform: translateY(-1px);
}

.gmd-article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(20, 35, 61, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(20, 35, 61, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gmd-article-card:hover {
  border-color: rgba(38, 170, 225, 0.32);
  box-shadow: 0 24px 58px rgba(20, 35, 61, 0.12);
  transform: translateY(-4px);
}

.gmd-article-card__image {
  display: flex;
  min-height: 240px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(38, 170, 225, 0.18), transparent 28%),
    linear-gradient(135deg, #10223d, #17459e);
  color: #ffffff;
  text-decoration: none;
}

.gmd-article-card__image img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gmd-article-card:hover .gmd-article-card__image img {
  transform: scale(1.045);
}

.gmd-article-card__image span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gmd-article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.gmd-article-card__category {
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(38, 170, 225, 0.1);
  color: #17459e;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.gmd-article-card__category:hover {
  background: #26aae1;
  color: #ffffff;
  text-decoration: none;
}

.gmd-article-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.22;
}

.gmd-article-card h2 a {
  color: var(--gmd-navy);
  text-decoration: none;
}

.gmd-article-card h2 a:hover {
  color: #26aae1;
}

.gmd-article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}

.gmd-article-card__meta span:not(:last-child)::after {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 8px;
  border-radius: 50%;
  background: rgba(102, 112, 133, 0.42);
  content: "";
  vertical-align: middle;
}

.gmd-article-card p {
  display: -webkit-box;
  min-height: 76px;
  overflow: hidden;
  margin: 14px 0 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #4f5f73;
  font-size: 14px;
  line-height: 1.78;
}

.gmd-article-card__more {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid #26aae1;
  border-radius: 6px;
  background: #26aae1;
  color: #ffffff;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gmd-article-card__more:hover {
  border-color: #17459e;
  background: #17459e;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(38, 170, 225, 0.2);
  text-decoration: none;
  transform: translateY(-2px);
}


.gmd-articles-archive__pagination .page-numbers:hover {
  border-color: #26aae1;
  background: #26aae1;
  color: #ffffff;
}

@media (max-width: 700px) {

  .gmd-article-card__image,
  .gmd-article-card__image img {
    min-height: 210px;
    height: 210px;
  }
}

.gmd-articles-widget {
  background: var(--gmd-articles-widget-bg, #f7f9fc);
  padding: clamp(54px, 7vw, 92px) 0;
}

.gmd-articles-widget__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.gmd-articles-widget__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.gmd-articles-widget__header p {
  margin: 0 0 10px;
  color: var(--gmd-articles-widget-accent, #26aae1);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gmd-articles-widget__header h2 {
  max-width: 720px;
  margin: 0;
  color: var(--gmd-articles-widget-heading, var(--gmd-navy));
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

.gmd-articles-widget__header span {
  display: block;
  max-width: 720px;
  margin-top: 16px;
  color: var(--gmd-articles-widget-text, #667085);
  font-size: 16px;
  line-height: 1.72;
}

.gmd-articles-widget__header > a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gmd-articles-widget-accent, #26aae1);
  border-radius: 6px;
  color: var(--gmd-articles-widget-accent, #26aae1);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gmd-articles-widget__header > a:hover {
  background: var(--gmd-articles-widget-accent, #26aae1);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(38, 170, 225, 0.2);
  transform: translateY(-2px);
}

.gmd-articles-widget__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.gmd-articles-widget__filters button {
  min-height: 40px;
  border: 1px solid rgba(20, 35, 61, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--gmd-articles-widget-heading, var(--gmd-navy));
  cursor: pointer;
  padding: 0 17px;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gmd-articles-widget__filters button:hover,
.gmd-articles-widget__filters button.is-active {
  border-color: var(--gmd-articles-widget-accent, #26aae1);
  background: var(--gmd-articles-widget-accent, #26aae1);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(38, 170, 225, 0.18);
  transform: translateY(-1px);
}

.gmd-articles-widget__grid {
  display: grid;
  gap: 24px;
}

.gmd-articles-widget--cols-3 .gmd-articles-widget__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gmd-articles-widget .gmd-article-card {
  background: var(--gmd-articles-widget-card, #ffffff);
}

.gmd-articles-widget .gmd-article-card__category {
  color: var(--gmd-articles-widget-accent, #26aae1);
}

.gmd-articles-widget .gmd-article-card__more {
  border-color: var(--gmd-articles-widget-button, #26aae1);
  background: var(--gmd-articles-widget-button, #26aae1);
}

.gmd-articles-widget .gmd-article-card__more:hover {
  border-color: var(--gmd-articles-widget-button-hover, #17459e);
  background: var(--gmd-articles-widget-button-hover, #17459e);
}

.gmd-articles-widget .gmd-article-card.is-hidden {
  display: none;
}

@media (max-width: 1024px) {
  .gmd-articles-widget--cols-3 .gmd-articles-widget__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gmd-articles-widget__header {
    grid-template-columns: 1fr;
  }

  
  .gmd-articles-widget--cols-3 .gmd-articles-widget__grid {
    grid-template-columns: 1fr;
  }
}

.gmd-infrastructure__hero-panel li a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transform: translateX(3px);
}

.gmd-infrastructure__stats {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1400px, calc(100% - 32px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: clamp(26px, 4vw, 44px) auto 0;
}

.gmd-infrastructure__stats div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 20px;
  box-shadow: 0 18px 46px rgba(7, 18, 34, 0.16);
  backdrop-filter: blur(10px);
}

.gmd-infrastructure__stats span {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
}

.gmd-infrastructure__stats p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.gmd-infrastructure__cta a:hover {
  background: #ffffff;
  color: #17459e;
  box-shadow: 0 14px 28px rgba(7, 18, 34, 0.2);
  transform: translateY(-2px);
}

.gmd-contact-hero__panel a:hover,
.gmd-contact-bottom a:hover,
.gmd-contact-side__note a:hover,
.gmd-contact-form button[type="submit"]:hover {
  background: #17459e;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(23, 69, 158, 0.2);
  transform: translateY(-2px);
}

.gmd-contact-hero__panel a:hover::before,
.gmd-contact-bottom a:hover::before,
.gmd-contact-side__note a:hover::before,
.gmd-contact-form button[type="submit"]:hover::before {
  left: 112%;
}

.gmd-contact-overview {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1400px, calc(100% - 32px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: -48px auto 0;
}

.gmd-contact-card:hover {
  border-color: rgba(38, 170, 225, 0.36);
  color: var(--gmd-navy);
  box-shadow: 0 22px 58px rgba(20, 35, 61, 0.12);
  transform: translateY(-3px);
}

.gmd-contact-bottom a:hover {
  background: #ffffff;
  color: #17459e;
}


body:not([class*=elementor-page-]) .site-main.gmd-shop-landing-page,
.gmd-shop-landing-page.site-main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-inline: 0;
}

.gmd-shop-landing-page {
  overflow-x: hidden;
  background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 38%, #f7f9fc 100%);
  color: var(--gmd-navy);
}

.gmd-shop-landing-hero__actions a:hover,
.gmd-shop-landing-hero__panel a:hover,
.gmd-shop-landing-section-head--split > a:hover,
.gmd-shop-landing-product__cart:hover,
.gmd-shop-landing-product__details:hover,
.gmd-shop-landing-support a:hover {
  background: #17459e;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 18, 34, 0.18);
  transform: translateY(-2px);
  text-decoration: none;
}

.gmd-shop-hero-slide {
  position: absolute;
  inset: 0;
  display: none;
  grid-template-rows: minmax(220px, 1fr) auto;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(24px) scale(0.985);
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gmd-shop-hero-slide.is-active {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.gmd-shop-hero-slide.is-active .gmd-shop-hero-slide__media img {
  transform: translateY(0);
}

.gmd-shop-hero-slide__bottom a:hover {
  background: #17459e;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(20, 35, 61, 0.16);
  transform: translateY(-2px);
}

.gmd-shop-landing-hero-slider__controls > button:hover {
  background: #ffffff;
  color: #17459e;
  transform: translateY(-2px);
}

.gmd-shop-landing-hero-slider__dots button.is-active {
  width: 26px;
  background: #ffffff;
}

.gmd-shop-landing-trust {
  width: min(1480px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.gmd-shop-landing-trust {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: -54px;
}

.gmd-shop-landing-trust article {
  min-height: 142px;
  border: 1px solid rgba(20, 35, 61, 0.08);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(20, 35, 61, 0.09);
}

.gmd-shop-landing-trust strong {
  display: block;
  color: #17459e;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1;
}

.gmd-shop-landing-trust p {
  margin: 12px 0 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

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

.gmd-shop-landing-sizing__grid article {
  min-height: 156px;
  border: 1px solid rgba(217, 226, 236, 0.92);
  border-radius: 8px;
  background: #f7fbff;
  padding: 20px;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.gmd-shop-landing-sizing__grid article:hover {
  border-color: rgba(38, 170, 225, 0.34);
  background: #ffffff;
  transform: translateY(-2px);
}

.gmd-shop-landing-sizing__grid h3 {
  margin: 0 0 10px;
  color: var(--gmd-navy);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.2;
}

.gmd-shop-landing-sizing__grid p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.62;
}

.gmd-shop-landing-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gmd-shop-landing-categories__grid a {
  position: relative;
  display: flex;
  min-height: 138px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(20, 35, 61, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 10%, rgba(38, 170, 225, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 100%),
    #ffffff;
  color: var(--gmd-navy);
  padding: 24px;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(20, 35, 61, 0.075);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gmd-shop-landing-categories__grid a:hover {
  border-color: rgba(38, 170, 225, 0.34);
  box-shadow: 0 20px 52px rgba(20, 35, 61, 0.12);
  transform: translateY(-3px);
}

.gmd-shop-landing-categories__grid span {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(38, 170, 225, 0.14);
  color: #26aae1;
  font-size: 14px;
  font-weight: 700;
  order: 2;
}

.gmd-shop-landing-categories__grid strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.16;
}


.gmd-shop-landing-sale__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gmd-shop-landing-product-slide.gmd-product-carousel__card {
  flex: 0 0 min(334px, calc(100vw - 54px));
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  scroll-snap-align: start;
}

.gmd-shop-landing-product-slide.gmd-product-carousel__card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

@media (min-width: 900px) {
  .gmd-shop-landing-product-slide.gmd-product-carousel__card {
    flex-basis: calc((100% - 36px) / 3);
    min-width: 292px;
  }
}

@media (min-width: 1280px) {
  .gmd-shop-landing-product-slide.gmd-product-carousel__card {
    flex-basis: calc((100% - 54px) / 4);
  }
}

.gmd-shop-landing-product:hover {
  border-color: rgba(38, 170, 225, 0.32);
  box-shadow: 0 22px 56px rgba(20, 35, 61, 0.12);
  transform: translateY(-3px);
}

.gmd-shop-landing-product h3 a:hover {
  color: #26aae1;
}

@media (max-width: 1100px) {
  
  .gmd-shop-landing-sale__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {

  .gmd-shop-landing-trust,
  .gmd-shop-landing-categories__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  
  .gmd-shop-landing-sale__grid,
  .gmd-shop-landing-sizing__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {

  .gmd-infrastructure__stats {
    grid-template-columns: 1fr;
  }

  .gmd-contact-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {

  .gmd-infrastructure__stats {
    margin-top: 26px;
  }

  .gmd-contact-overview {
    grid-template-columns: 1fr;
  }
}

html[lang^="ar"],
html[dir="rtl"],
body.rtl {
  --gmd-arabic-font: "Almarai", Arial, sans-serif;
}

html[lang^="ar"] body,
html[dir="rtl"] body,
body.rtl,
html[lang^="ar"] button,
html[lang^="ar"] input,
html[lang^="ar"] select,
html[lang^="ar"] textarea,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea,
body.rtl button,
body.rtl input,
body.rtl select,
body.rtl textarea,
html[lang^="ar"] .elementor-widget,
html[dir="rtl"] .elementor-widget,
body.rtl .elementor-widget {
  font-family: var(--gmd-arabic-font);
}

html[lang^="ar"] [class*="gmd-"],
html[dir="rtl"] [class*="gmd-"],
body.rtl [class*="gmd-"] {
  letter-spacing: 0;
}


body.rtl .gmd-product-head-banner__category a,
body.rtl .gmd-products-archive-banner__inner > span,
body.rtl .gmd-articles-archive__hero span,
body.rtl .gmd-single-post__category,
body.rtl .gmd-infrastructure__hero-copy > span,
body.rtl .gmd-contact-hero__copy span {
  font-weight: 700;
  text-transform: none;
}


body.rtl .gmd-product-head-banner h1,
body.rtl .gmd-products-archive-banner h1,
body.rtl .gmd-articles-archive__hero h1,
body.rtl .gmd-single-post__hero h1,
body.rtl .gmd-infrastructure__hero h1,
body.rtl .gmd-contact-hero__copy h1 {
  font-weight: 800;
  line-height: 1.18;
}


body.rtl .gmd-product-head-banner__inner,
body.rtl .gmd-products-archive-banner__inner,
body.rtl .gmd-articles-archive__hero-inner,
body.rtl .gmd-single-post__hero-inner,
body.rtl .gmd-infrastructure__hero-inner,
body.rtl .gmd-contact-hero__inner {
  direction: rtl;
  text-align: right;
}

html[lang^="ar"] .gmd-about-page,
html[dir="rtl"] .gmd-about-page,
body.rtl .gmd-about-page {
  direction: rtl;
  text-align: right;
}


body.rtl .gmd-about-page__hero-inner,
body.rtl .gmd-about-page__intro,
body.rtl .gmd-about-page__process,
body.rtl .gmd-about-page__certificates,
body.rtl .gmd-about-page__cta {
  direction: rtl;
  text-align: right;
}


body.rtl .gmd-about-page__hero-actions {
  justify-content: flex-start;
}


body.rtl .gmd-about-page__steps article {
  grid-template-columns: 48px minmax(0, 1fr);
}


body.rtl .gmd-about-page__certificates li::before {
  content: "✓";
  margin-left: 8px;
}

html[lang^="ar"] .gmd-elementor-menu .sub-menu,
html[dir="rtl"] .gmd-elementor-menu .sub-menu,
body.rtl .gmd-elementor-menu .sub-menu {
  right: 0;
  left: auto;
  text-align: right;
}

html[lang^="ar"] .gmd-elementor-menu .menu-item-has-children > a::after,
html[dir="rtl"] .gmd-elementor-menu .menu-item-has-children > a::after,
body.rtl .gmd-elementor-menu .menu-item-has-children > a::after {
  margin-right: 8px;
  margin-left: 0;
}


html[lang^="ar"] .gmd-quote-modal label,
html[lang^="ar"] .gmd-distributor-modal label,
html[dir="rtl"] .gmd-quote-modal label,
html[dir="rtl"] .gmd-distributor-modal label,
body.rtl .gmd-contact-form label,
body.rtl .gmd-quote-modal label,
body.rtl .gmd-distributor-modal label {
  text-align: right;
}

html[lang^="ar"] .gmd-shop-search__suggestion,
html[dir="rtl"] .gmd-shop-search__suggestion,
body.rtl .gmd-shop-search__suggestion {
  text-align: right;
}

html[lang^="ar"] .gmd-shop-layout,
html[dir="rtl"] .gmd-shop-layout,
body.rtl .gmd-shop-layout {
  direction: rtl;
}

html[lang^="ar"] .gmd-shop-filters,
html[dir="rtl"] .gmd-shop-filters,
body.rtl .gmd-shop-filters,
body.rtl .gmd-shop-filter-toggle {
  direction: rtl;
  text-align: right;
}


html[lang^="ar"] .gmd-shop-filter-group__toggle,
html[lang^="ar"] .gmd-shop-filter-group a,
html[dir="rtl"] .gmd-shop-filter-group__toggle,
html[dir="rtl"] .gmd-shop-filter-group a,
body.rtl .gmd-shop-filters__head,
body.rtl .gmd-shop-filter-group__toggle,
body.rtl .gmd-shop-filter-group a {
  text-align: right;
}

html[lang^="ar"] .gmd-shop-filter-group a,
html[dir="rtl"] .gmd-shop-filter-group a,
body.rtl .gmd-shop-filter-group a {
  justify-content: flex-start;
}

html[lang^="ar"] .gmd-shop-filter-group a span,
html[dir="rtl"] .gmd-shop-filter-group a span,
body.rtl .gmd-shop-filter-group a span {
  min-width: 0;
  text-align: right;
}

html[lang^="ar"] .gmd-shop-filter-group__toggle::after,
html[dir="rtl"] .gmd-shop-filter-group__toggle::after,
body.rtl .gmd-shop-filter-group__toggle::after {
  margin-right: auto;
  margin-left: 0;
}


body.rtl .gmd-shop-filters__close {
  order: 3;
}


body.rtl .gmd-shop-filters__head > span {
  order: 1;
}


body.rtl .gmd-shop-filters__head a {
  order: 2;
}

html[lang^="ar"] .gmd-shop-search,
html[dir="rtl"] .gmd-shop-search,
body.rtl .gmd-shop-search {
  direction: rtl;
}


body.rtl .gmd-shop-search__icon {
  right: 15px;
  left: auto;
}


body.rtl .gmd-shop-search__clear {
  right: auto;
  left: 12px;
}

html[lang^="ar"] .gmd-shop-search input[type="search"],
html[dir="rtl"] .gmd-shop-search input[type="search"],
body.rtl .gmd-shop-search input[type="search"] {
  padding-right: 46px;
  padding-left: 86px;
  text-align: right;
}


html[lang^="ar"] .gmd-cta-banner__button,
html[dir="rtl"] .gmd-cta-banner__button,
body.rtl .gmd-header-cta,
body.rtl .gmd-sector-hero__button,
body.rtl .gmd-commerce-hero__button,
body.rtl .gmd-product-carousel__button,
body.rtl .gmd-cta-banner__button {
  font-weight: 700;
}


html[lang^="ar"] .gmd-sector-hero,
html[lang^="ar"] .gmd-sector-hero *,
html[dir="rtl"] .gmd-sector-hero,
html[dir="rtl"] .gmd-sector-hero *,
body.rtl .gmd-commerce-hero,
body.rtl .gmd-commerce-hero *,
body.rtl .gmd-sector-hero,
body.rtl .gmd-sector-hero * {
  font-family: var(--gmd-arabic-font) !important;
}


html[lang^="ar"] .gmd-sector-hero__intro,
html[lang^="ar"] .gmd-sector-card,
html[dir="rtl"] .gmd-sector-hero__intro,
html[dir="rtl"] .gmd-sector-card,
body.rtl .gmd-commerce-hero__copy,
body.rtl .gmd-sector-hero__intro,
body.rtl .gmd-sector-card {
  direction: rtl;
  text-align: right;
}


html[lang^="ar"] .gmd-sector-hero__intro h1,
html[dir="rtl"] .gmd-sector-hero__intro h1,
body.rtl .gmd-commerce-hero h1,
body.rtl .gmd-sector-hero__intro h1 {
  font-weight: 800;
  line-height: 1.16;
}


html[lang^="ar"] .gmd-sector-hero__intro p,
html[lang^="ar"] .gmd-sector-card__eyebrow,
html[dir="rtl"] .gmd-sector-hero__intro p,
html[dir="rtl"] .gmd-sector-card__eyebrow,
body.rtl .gmd-commerce-hero__kicker,
body.rtl .gmd-sector-hero__intro p,
body.rtl .gmd-sector-card__eyebrow {
  letter-spacing: 0;
  text-transform: none;
}

html[lang^="ar"] h1,
html[lang^="ar"] h2,
html[lang^="ar"] h3,
html[lang^="ar"] h4,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl h4,
body.rtl h5,
body.rtl h6,
body.rtl .elementor-heading-title,
body.rtl .elementor-widget-heading .elementor-heading-title,
body.rtl .entry-title,
body.rtl .page-title,
body.rtl .product_title,
body.rtl .woocommerce-loop-product__title,
body.rtl .wc-block-components-product-name {
  font-family: var(--gmd-arabic-font) !important;
  letter-spacing: 0 !important;
}

html[lang^="ar"] :where(a, p, span, li, div, label, button, input, select, textarea, option, table, td, summary, strong, b, small),
html[dir="rtl"] :where(a, p, span, li, div, label, button, input, select, textarea, option, table, td, summary, strong, b, small),
body.rtl :where(a, p, span, li, div, label, button, input, select, textarea, option, table, td, summary, strong, b, small) {
  font-family: var(--gmd-arabic-font) !important;
}

html[lang^="ar"] :where(button, .button, .wp-element-button, input[type="button"], input[type="submit"], input[type="reset"], .added_to_cart, .single_add_to_cart_button),
html[dir="rtl"] :where(button, .button, .wp-element-button, input[type="button"], input[type="submit"], input[type="reset"], .added_to_cart, .single_add_to_cart_button),
body.rtl :where(button, .button, .wp-element-button, input[type="button"], input[type="submit"], input[type="reset"], .added_to_cart, .single_add_to_cart_button) {
  font-family: var(--gmd-arabic-font) !important;
  letter-spacing: 0 !important;
  text-transform: none;
}

html[lang^="ar"] :where( .gmd-article-card__category, .gmd-product-carousel__category, .tag),
html[dir="rtl"] :where( .gmd-article-card__category, .gmd-product-carousel__category, .tag),
body.rtl :where( .gmd-article-card__category, .gmd-product-carousel__category, .tag) {
  font-family: var(--gmd-arabic-font) !important;
  letter-spacing: 0 !important;
  text-transform: none;
}

html[lang^="ar"] :where(i, svg),
html[dir="rtl"] :where(i, svg),
body.rtl :where(i, svg) {
  font-family: inherit !important;
}

.gmd-scroll-reveal {
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1), filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.gmd-scroll-reveal:not(.is-visible) {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 34px, 0);
}

.gmd-reveal-item {
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1), filter 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--gmd-reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.gmd-scroll-reveal:not(.is-visible) .gmd-reveal-item {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 24px, 0);
}

.gmd-tax-included-note {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-inline-start: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(38, 170, 225, 0.26);
  border-radius: 999px;
  background: rgba(38, 170, 225, 0.09);
  color: #17459e;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  vertical-align: middle;
  white-space: nowrap;
}

.single_variation .gmd-tax-included-note {
  transform: translateY(-1px);
}

.woocommerce-cart table.cart .gmd-tax-included-note {
  margin-top: 6px;
  margin-inline-start: 0;
}

.gmd-tax-included-block-note {
  display: flex;
  justify-content: flex-end;
  margin-top: -6px;
  margin-bottom: 12px;
}

.wc-block-cart__totals .gmd-tax-included-block-note,
.wc-block-checkout__sidebar .gmd-tax-included-block-note {
  padding-inline: 0;
}

.wc-block-cart__totals .gmd-tax-included-block-note .gmd-tax-included-note,
.wc-block-checkout__sidebar .gmd-tax-included-block-note .gmd-tax-included-note {
  margin-inline-start: 0;
}

html[dir="rtl"] .gmd-tax-included-block-note,
body.rtl .gmd-tax-included-block-note {
  justify-content: flex-start;
}

html[dir="rtl"] .gmd-tax-included-note,
body.rtl .gmd-tax-included-note {
  margin-inline-start: 8px;
  margin-inline-end: 0;
}

@media (prefers-reduced-motion: reduce) {
  .gmd-scroll-reveal,
  .gmd-reveal-item {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

/* Cart and checkout final polish. */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  color: var(--gmd-navy);
}

.woocommerce-cart table.cart td {
  vertical-align: middle;
}

.woocommerce-cart table.cart .variation {
  display: grid;
  gap: 3px;
  margin: 4px 0 0;
  color: #667085;
  font-size: 11.5px;
  line-height: 1.35;
}

.woocommerce-cart table.cart img {
  width: 74px !important;
  padding: 6px !important;
}

.woocommerce-cart table.cart .quantity .qty,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  min-height: 42px !important;
  border: 1px solid rgba(20, 35, 61, 0.14) !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  color: var(--gmd-navy) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  box-shadow: none !important;
}

.woocommerce-checkout textarea {
  min-height: 92px !important;
  padding-top: 11px !important;
}


.woocommerce-checkout select {
  padding: 0 12px !important;
}

.woocommerce-checkout .form-row {
  margin-bottom: 13px !important;
}

.woocommerce-checkout .form-row label {
  margin-bottom: 6px;
  color: #344054;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.woocommerce-checkout .form-row .required {
  color: #26aae1;
  text-decoration: none;
}

.woocommerce-checkout h3 {
  color: var(--gmd-navy);
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.2;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-block-cart__submit-button:hover,
.woocommerce-checkout #place_order:hover,
.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  border-color: #17459e !important;
  background: #17459e !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

@media (max-width: 760px) {

  .woocommerce-cart table.cart img {
    width: 62px !important;
  }

  .woocommerce-checkout h3 {
    font-size: 19px !important;
  }
}

/* Cart totals below table and wider checkout fields. */
.woocommerce-cart .woocommerce {
  display: block !important;
  width: min(1180px, calc(100% - 32px)) !important;
}


.woocommerce-checkout select,
.woocommerce-checkout textarea {
  min-height: 48px !important;
  font-size: 14px !important;
}


.woocommerce-checkout select {
  padding-right: 14px !important;
  padding-left: 14px !important;
}

.woocommerce-checkout textarea {
  min-height: 118px !important;
  padding: 13px 14px !important;
}

.woocommerce-checkout .form-row {
  margin-bottom: 16px !important;
}

/* Checkout layout final override. */
.woocommerce-checkout .site-main {
  overflow: visible !important;
}

.woocommerce-checkout .woocommerce {
  display: block !important;
  width: min(1220px, calc(100% - 32px)) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.woocommerce-checkout .woocommerce form.checkout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.8fr) !important;
  gap: 28px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto clamp(64px, 8vw, 104px) !important;
  align-items: start !important;
}

.woocommerce-checkout .form-row {
  display: block !important;
  clear: both !important;
  width: 100% !important;
  max-width: none !important;
  float: none !important;
}


.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}


.woocommerce-checkout select,
.woocommerce-checkout textarea {
  min-height: 52px !important;
  border-color: rgba(20, 35, 61, 0.16) !important;
  border-radius: 7px !important;
  font-size: 14px !important;
}

.woocommerce-checkout textarea {
  min-height: 132px !important;
}

@media (max-width: 980px) {
  .woocommerce-checkout .woocommerce {
    width: min(720px, calc(100% - 28px)) !important;
  }

  .woocommerce-checkout .woocommerce form.checkout {
    display: block !important;
  }
}

@media (max-width: 640px) {
  .woocommerce-checkout .woocommerce {
    width: calc(100% - 22px) !important;
  }

  
  .woocommerce-checkout select,
  .woocommerce-checkout textarea {
    min-height: 48px !important;
  }
}

/* WooCommerce block checkout fallback, in case the page renders blocks before shortcode replacement. */

.woocommerce-checkout .wc-block-checkout__sidebar {
  width: 34% !important;
  max-width: none !important;
  padding-left: 0 !important;
}

@media (max-width: 980px) {

  
  .woocommerce-checkout .wc-block-checkout__sidebar {
    width: 100% !important;
  }
}

/* Mobile header cart shortcut. */
@media (max-width: 760px) {
  .gmd-pro-header__grid {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    column-gap: 8px !important;
  }

  .gmd-pro-header__brand {
    min-width: 0;
  }

  .gmd-pro-header__toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .gmd-pro-header__actions {
    display: flex !important;
    width: auto !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
  }

  .gmd-pro-header__cta {
    display: none !important;
  }

  .gmd-pro-header__nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
  }

  .gmd-pro-header.is-open .gmd-pro-header__actions,
  .gmd-complete-header.is-open .gmd-complete-header__actions {
    display: flex !important;
  }
}

/* Checkout payment flow: customer details first, payment and order review below. */
.woocommerce-checkout .woocommerce {
  width: min(980px, calc(100% - 32px)) !important;
  max-width: none !important;
}

.woocommerce-checkout .woocommerce form.checkout {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}


.woocommerce-checkout .wc-block-checkout__sidebar {
  width: 100% !important;
  max-width: none !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.woocommerce-checkout .wc-block-checkout__sidebar {
  margin-top: 28px !important;
}

.gmd-order-received-payment-note__actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

/* Final checkout/cart production fixes. */
body.woocommerce-cart,
body.woocommerce-checkout {
  overflow-x: hidden !important;
}


body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main {
  max-width: 100% !important;
  overflow-x: clip !important;
}


body.rtl.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::after,
body.rtl.woocommerce-cart .wc-block-cart__submit-button::after {
  content: "←";
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-block-cart__submit-button:hover {
  background: linear-gradient(135deg, #17459e 0%, #10223d 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(23, 69, 158, 0.28) !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover::after,
.woocommerce-cart .wc-block-cart__submit-button:hover::after {
  background: rgba(255, 255, 255, 0.26);
  transform: translateX(2px);
}

html[dir="rtl"] .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover::after,
body.rtl.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover::after,
html[dir="rtl"] .woocommerce-cart .wc-block-cart__submit-button:hover::after,
body.rtl.woocommerce-cart .wc-block-cart__submit-button:hover::after {
  transform: translateX(-2px);
}


body.rtl .gmd-order-received-payment-note__steps ol {
  padding-right: 18px;
  padding-left: 0;
}

@media (hover: none), (pointer: coarse) {
  .post-type-archive-product ul.products li.product,
  .tax-product_cat ul.products li.product,
  .tax-product_tag ul.products li.product,
  .post-type-archive-product ul.products li.product > a.woocommerce-LoopProduct-link,
  .tax-product_cat ul.products li.product > a.woocommerce-LoopProduct-link,
  .tax-product_tag ul.products li.product > a.woocommerce-LoopProduct-link {
    touch-action: manipulation;
  }

  .post-type-archive-product ul.products li.product:hover,
  .tax-product_cat ul.products li.product:hover,
  .tax-product_tag ul.products li.product:hover {
    transform: none !important;
  }
}

/* Sticky header spacing guard. Keeps fixed Elementor headers from covering page content. */
body.gmd-has-sticky-pro-header {
  padding-top: var(--gmd-pro-header-height, 110px);
}

body.gmd-has-sticky-pro-header :where(section, .elementor-section, .woocommerce, .product, .gmd-shop-layout),
body.gmd-has-sticky-complete-header :where(section, .elementor-section, .woocommerce, .product, .gmd-shop-layout) {
  scroll-margin-top: calc(max(var(--gmd-pro-header-height, 0px), var(--gmd-complete-header-height, 0px)) + 18px);
}

@media (max-width: 760px) {
  body.gmd-has-sticky-pro-header {
    padding-top: var(--gmd-pro-header-height, 94px);
  }

  body.gmd-has-sticky-complete-header {
    padding-top: var(--gmd-complete-header-height, 94px);
  }

  .gmd-pro-header__top .gmd-pro-header__wrap {
    min-height: 36px;
    align-items: center;
  }

  .gmd-pro-header__top .gmd-header-contact {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
    gap: 9px;
    overflow: hidden;
    line-height: 1.1;
  }

  .gmd-pro-header__top .gmd-header-contact a {
    display: inline-flex;
    min-width: 0;
    max-width: 50%;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .gmd-pro-header__grid {
    align-items: center;
  }

  .gmd-pro-header.is-open,
  .gmd-complete-header.is-open {
    max-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

/* GMD MOBILE LCP SCROLL SNAP FIX
 * Prevent Chrome mobile from performing an automatic 2px snap scroll
 * during initial rendering. Horizontal swiping remains available.
 */
@media (max-width: 767px) {
  .gmd-product-carousel__track {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
    scroll-padding-inline: 0 !important;
  }

  .gmd-product-carousel__track > .gmd-product-carousel__card {
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }
}

/* GMD Accessibility: enlarge sector slider dot touch targets without changing visual dot size. */
.gmd-sector-slider__dots {
  gap: 2px;
}

.gmd-sector-slider__dot {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  background: transparent;
}

.gmd-sector-slider__dot::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  content: "";
}

.gmd-sector-slider__dot.is-active {
  width: 48px;
  background: transparent;
}

.gmd-sector-slider__dot.is-active::before {
  width: 24px;
  background: var(--gmd-sector-accent, var(--gmd-teal));
}

.gmd-sector-slider__dot:focus-visible {
  outline: 2px solid var(--gmd-white);
  outline-offset: -5px;
}
