:root {
  --bs-body-font-size: 14px;
}

body {
  font-size: var(--bs-body-font-size);
}

a {
  color: #1f2937;
  transition: color 0.2s ease;
}

a:hover {
  color: #edbb6f;
}

.header {
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

.glorex-header-main {
  display: flex;
  align-items: center;
  min-height: 116px;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.glorex-header-main .container-md {
  width: 100%;
}

.glorex-header-main__row {
  display: grid;
  grid-template-columns: minmax(180px, 240px) auto;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.glorex-header-main__title {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.glorex-header-main__logo-link {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}

.glorex-header-main__logo-image {
  display: block;
  width: 100%;
  max-width: 14rem;
  height: auto;
}

.glorex-header-main__utilities {
  display: flex;
  gap: 0.95rem;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.72rem;
  white-space: nowrap;
}

.glorex-social-links,
.glorex-footer__social {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.glorex-social-links__link,
.glorex-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
  text-decoration: none;
  transition: color 0.2s ease;
}

.glorex-social-links__link {
  width: 1.75rem;
  height: 1.75rem;
}

.glorex-social-links__link svg,
.glorex-footer__social a svg {
  display: block;
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.glorex-social-links__link:hover,
.glorex-footer__social a:hover {
  color: #edbb6f;
}

.glorex-header-main__language {
  display: flex;
  align-items: center;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(15, 23, 42, 0.12);
}

.glorex-header-main__language #_desktop_ps_languageselector,
.glorex-header-main__language .ps-languageselector {
  display: flex;
  align-items: center;
}

.glorex-header-main__language .form-select {
  min-width: auto;
  padding: 0 1.35rem 0 0;
  font-size: 0.72rem;
  color: #5b6470;
  background-position: right 0 center;
  border: 0;
  box-shadow: none;
}

.glorex-header-categories {
  background: #e8e8e8;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.glorex-header-categories__inner {
  min-height: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.85);
}

.glorex-header-categories__placeholder {
  display: block;
  width: 100%;
  min-height: 45px;
}

.footer__main.glorex-footer {
  min-height: 280px;
  padding: 0;
  color: #374151;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer__main.glorex-footer .container-md {
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.glorex-footer__columns {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  align-content: center;
  min-height: 210px;
  padding: 2rem 0 1rem;
}

.glorex-footer__title {
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
}

.glorex-footer__links a {
  display: inline-block;
  padding: 0.22rem 0;
  font-size: 0.74rem;
  color: #6b7280;
  text-decoration: none;
}

.glorex-footer__links a:hover {
  color: #edbb6f;
}

.glorex-footer__meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px;
  padding: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.glorex-footer__copyright {
  font-size: 0.66rem;
  color: #6b7280;
}

.glorex-footer__social {
  justify-self: center;
}

.glorex-footer__social a {
  width: 1rem;
  height: 1rem;
  font-size: 0.78rem;
}

@media (max-width: 991.98px) {
  .glorex-header-main__row {
    grid-template-columns: minmax(160px, 220px) auto;
  }

  .glorex-header-main__utilities {
    grid-column: 1 / -1;
    justify-content: space-between;
    padding-top: 0.35rem;
  }
}

@media (max-width: 767.98px) {
  .glorex-header-main {
    min-height: 0;
    padding: 0.85rem 0;
  }

  .glorex-header-main__row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .glorex-header-main__utilities {
    justify-content: flex-start;
    gap: 0.8rem;
    padding-top: 0;
  }

  .glorex-header-main__language {
    padding-left: 0;
    border-left: 0;
  }

  .glorex-header-categories {
    display: none;
  }

  .footer__main.glorex-footer {
    min-height: 0;
  }

  .footer__main.glorex-footer .container-md {
    min-height: 0;
  }

  .glorex-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
    min-height: 0;
    padding: 1.5rem 0;
  }

  .glorex-footer__meta {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    justify-items: start;
    min-height: 70px;
  }

  .glorex-footer__social {
    justify-self: start;
  }
}

.glorex-home {
  padding: 2.5rem 0 1rem;
}

.glorex-home__tile,
.glorex-home__banner,
.glorex-home__catalog-card {
  display: block;
  overflow: hidden;
}

.glorex-home__tile img,
.glorex-home__banner img,
.glorex-home__catalog-card img {
  display: block;
  width: 100%;
  height: auto;
}

.glorex-home__catalog-title {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.glorex-home__catalog-link {
  display: block;
  margin-top: 0.75rem;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.glorex-home__catalog-link:hover {
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .glorex-footer__columns {
    grid-template-columns: 1fr;
  }
}


#cms .page-title-section {
  display: none !important;
}

.breadcrumb__wrapper{
  display: none !important;
}

body#cms.cms-id-14 .page-content--cms .row.bm-5 section {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

body#cms.cms-id-14 #carousel-last-viewed,
body#cms.cms-id-14 #carousel-last-viewed2,
body#cms.cms-id-14 #carousel-last-viewed3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

body#cms.cms-id-14 #carousel-last-viewed > div,
body#cms.cms-id-14 #carousel-last-viewed2 > div,
body#cms.cms-id-14 #carousel-last-viewed3 > div {
  display: block;
}

body#cms.cms-id-14 .article-overview {
  height: 100%;
}

body#cms.cms-id-14 .article-overview a {
  display: block;
}

body#cms.cms-id-14 .article-overview img {
  display: block;
  width: 100%;
  height: auto;
}

body#cms.cms-id-14 #carousel-last-viewed-controls,
body#cms.cms-id-14 #carousel-last-viewed2-controls,
body#cms.cms-id-14 #carousel-last-viewed3-controls {
  display: none;
}