/* ============================================================
   SKG theme ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â header, landing modules, footer
   Accent: #FF5D22
   ============================================================ */
:root {
  --skg-accent: #37bdaf;
  --skg-accent-dark: #2fa99c;
  --skg-header-bg: #1a1a1a;
  --skg-dark: #15171c;
  --skg-text: #23262b;
  --skg-muted: #8b9099;
  --skg-line: #ececec;
  --skg-radius: 14px;
  --skg-header-h: 74px;
}

/* ---------------------- HEADER ---------------------- */
.skg-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  background: #15171c;
  box-shadow: 0 2px 18px rgba(0, 0, 0, .25);
  transition: box-shadow .3s ease, background .3s ease, transform .3s ease;
  margin-bottom: 60px;
}

.skg-header.skg-scrolled {
  box-shadow: 0 6px 26px rgba(0, 0, 0, .45);
}

.skg-header__spacer {
  height: var(--skg-header-h);
}

.skg-header__inner {
  display: flex;
  align-items: center;
  gap: 0px;
  height: var(--skg-header-h);
  position: relative;
}

.skg-header__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.skg-header__logo img {
  max-height: 35px;
  width: auto;
  display: block;
}

.skg-header__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

/* nav takes the middle */
.skg-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding-left: 40px;
}

/* Catalog button */
.skg-catalog {
  position: relative;
  flex: 0 0 auto;
}

.skg-catalog__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  background: var(--skg-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 10px;
  transition: background .25s ease, transform .15s ease, box-shadow .25s ease;
}

.skg-catalog__btn:hover {
  background: var(--skg-accent-dark);
  box-shadow: 0 8px 18px rgba(55, 189, 175, .32);
}

.skg-catalog__btn:active {
  transform: translateY(1px);
}

.skg-catalog__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: 16px;
}

.skg-catalog__icon span {
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .25s ease;
}

.skg-catalog__icon span:nth-child(2) {
  width: 70%;
}

.skg-catalog.open .skg-catalog__icon span:nth-child(2) {
  width: 100%;
}

.skg-catalog__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: var(--skg-radius);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .16);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 40;
}

.skg-catalog.open .skg-catalog__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.skg-catalog__menu>ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.skg-catalog__menu li {
  position: relative;
}

.skg-catalog__menu li>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  color: var(--skg-text);
  text-decoration: none;
  border-radius: 9px;
  font-size: 14.5px;
  transition: background .2s ease, color .2s ease;
}

.skg-catalog__menu li>a:hover {
  background: #e7f7f5;
  color: var(--skg-accent);
}

.skg-catalog__menu li>a .fa {
  font-size: 12px;
  opacity: .5;
}

.skg-catalog__submenu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: -8px;
  left: calc(100% + 6px);
  min-width: 230px;
  background: #fff;
  border-radius: var(--skg-radius);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: .22s ease;
}

.skg-catalog__menu li.has-children:hover>.skg-catalog__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Extra menu */
.skg-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.skg-menu a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  transition: color .2s ease;
}

.skg-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--skg-accent);
  transition: width .25s ease;
}

.skg-menu a:hover {
  color: var(--skg-accent);
}

.skg-menu a:hover::after {
  width: 100%;
}

/* Right cluster */
.skg-header__right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Social ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â keep the icon's own colours, fixed 28x28, no hover/offset */
.skg-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.skg-social__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.skg-social__item svg,
.skg-social__item img {
  width: 28px;
  height: 28px;
  display: block;
}

.skg-phone {
  font-size: 19px;
  font-weight: 700;
  color: var(--skg-accent);
  text-decoration: none;
  white-space: nowrap;
}

.skg-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.skg-lang__item {
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px 8px;
  font-size: 14px;
  color: #fff;
  border-radius: 7px;
  transition: color .2s ease;
}

.skg-lang__item:hover {
  color: var(--skg-accent);
}

.skg-lang__item.active {
  color: #fff;
  font-weight: 700;
}

.skg-lang__item+.skg-lang__item {
  border-left: 1px solid rgba(255, 255, 255, .25);
  border-radius: 0;
}

/* Burger */
.skg-burger {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.skg-burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s ease;
}

.skg-burger span+span {
  margin-top: 5px;
}

.skg-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.skg-burger.open span:nth-child(2) {
  opacity: 0;
}

.skg-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile slide-in drawer overlay (must sit BELOW the header so the drawer,
   which lives inside the header's stacking context, stays clickable) */
.skg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 1020;
}

.skg-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ----- Responsive header ----- */
@media (max-width: 991px) {
  .skg-nav {
    gap: 18px;
  }

  .skg-menu {
    gap: 16px;
  }

  .skg-header__right {
    gap: 5px;
  }

  .skg-phone {
    font-size: 14px;
  }
}

@media (max-width: 880px) {
  .skg-header__inner {
    gap: 12px;
  }

  /* Top bar (like the donor): [burger] [logo] ........ [social] [languages] */
  .skg-burger {
    display: block;
    order: -1;
    padding: 8px 6px;
  }

  .skg-header__logo {
    order: 0;
    margin-right: auto;
  }

  .skg-header__logo img {
    max-height: 25px;
  }

  .skg-header__right {
    order: 1;
    gap: 12px;
  }

  /* no call button in the mobile bar */
  .skg-phone {
    display: none;
  }

  .skg-social {
    gap: 10px;
  }

  /* sliding drawer from the left, opens BELOW the header (top is set by JS to
     the header's current bottom edge, since the sticky header's position varies) */
  .skg-nav {
    position: fixed;
    top: var(--skg-header-h);
    left: 0;
    bottom: 0;
    width: 84%;
    max-width: 340px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--skg-header-bg);
    box-shadow: 4px 0 30px rgba(0, 0, 0, .4);
    padding: 22px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .32s ease;
    z-index: 1045;
  }

  .skg-nav.open {
    transform: translateX(0);
  }

  .skg-catalog {
    width: 100%;
  }

  .skg-catalog__btn {
    width: 100%;
    justify-content: center;
  }

  .skg-catalog__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    min-width: 0;
    padding: 6px 0 2px;
    margin-top: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }

  .skg-catalog.open .skg-catalog__menu {
    max-height: 1600px;
  }

  .skg-catalog__menu li>a {
    color: #fff;
  }

  .skg-catalog__menu li>a:hover {
    background: rgba(255, 255, 255, .08);
    color: var(--skg-accent);
  }

  /* first-level categories only on mobile */
  .skg-catalog__menu li>a .fa {
    display: none;
  }

  .skg-catalog__submenu {
    display: none;
  }

  .skg-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }

  .skg-menu a {
    color: #fff;
    padding: 13px 4px;
    /* border-bottom: 1px solid rgba(255, 255, 255, .12); */
  }

  .skg-menu a::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .skg-lang__item {
    padding: 4px 5px;
    font-size: 13px;
  }

  .skg-header__right {
    gap: 9px;
  }
}

/* ---------------------- TRAINING MODULE ---------------------- */
.skg-training {
  padding: 0px 0 20px;
}

.skg-training__overline {
  display: inline-block;
  color: var(--skg-accent);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.skg-training__title {
  font-size: 30px;
  line-height: 1.12;
  font-weight: 700;
  color: var(--skg-text);
  margin: 0 0 34px;
}

.skg-training__banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.skg-training__banner {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  min-height: 430px;
  text-decoration: none;
  color: #fff;
  background: #ddd center/cover no-repeat;
  transition: transform .35s ease, box-shadow .35s ease;
}

.skg-training__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .45));
}

.skg-training__banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .2);
}

.skg-training__banner span {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  font-size: 26px;
  font-weight: 700;
}

/* "One banner" mode ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â a single banner spanning the whole container width */
.skg-training__banners--wide {
  grid-template-columns: 1fr;
}

.skg-training__banners--wide .skg-training__banner {
  min-height: 320px;
}

@media (max-width: 767px) {
  .skg-training__banners--wide .skg-training__banner {
    min-height: 200px;
  }
}

@media (max-width: 767px) {
  .skg-training {
    padding: 36px 0 10px;
  }

  .skg-training__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .skg-training__banners {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .skg-training__banner {
    min-height: 200px;
  }
}

@media (min-width: 285px) and (max-width: 991px) {
  .skg-training__banner {
    min-height: 420px;
  }
}

/* ---------------------- ADVANTAGES MODULE ---------------------- */
.skg-advantages {
  padding: 26px 0 50px;
}

.skg-advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.skg-advantage {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--skg-line);
  border-radius: var(--skg-radius);
  padding: 15px 15px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.skg-advantage:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
  border-color: transparent;
}

.skg-advantage__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e7f7f5;
  color: var(--skg-accent);
}

.skg-advantage__icon svg,
.skg-advantage__icon img {
  width: 35px;
  height: 35px;
  display: block;
}

.skg-advantage__icon svg path {
  fill: currentColor;
}

.skg-advantage__body {
  display: flex;
  flex-direction: column;
}

.skg-advantage__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--skg-text);
  line-height: 1.2;
}

.skg-advantage__text {
  font-size: 14px;
  color: var(--skg-muted);
  margin-top: 3px;
}

@media (max-width: 991px) {
  .skg-advantages__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------- FOOTER ---------------------- */
.skg-footer {
  background: var(--skg-dark);
  color: #c7ccd4;
  padding: 54px 0 34px;
  margin-top: 50px;
}

.skg-footer a {
  color: #c7ccd4;
  text-decoration: none;
  transition: color .2s ease;
}

.skg-footer a:hover {
  color: var(--skg-accent);
}

.skg-footer__logo {
  text-align: center;
  margin-bottom: 14px;
}

.skg-footer__logo img {
  max-height: 34px;
  width: auto;
}

.skg-footer__powered {
  text-align: center;
  color: #8a909a;
  font-size: 14px;
  margin: 0px 0 50px;
}

.skg-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.skg-footer__col-title {
  color: var(--skg-accent);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 18px;
}

.skg-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.skg-footer__links li {
  margin-bottom: 12px;
  font-size: 15px;
}

.skg-footer__contacts .skg-footer__phone {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.skg-footer__label {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  margin: 14px 0 4px;
}

.skg-footer__value {
  font-size: 16px;
  line-height: 2.5;
  color: #aeb4bd;
}

.skg-footer__email {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 800;
}

.skg-footer__email a {
  color: var(--skg-accent);
}

@media (max-width: 991px) {
  .skg-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}

@media (max-width: 575px) {
  .skg-footer__grid {
    grid-template-columns: 1fr;
  }
}

#content>section.skg-training>div>div>a:nth-child(1n)>span {
  color: #ffffff;
}

.skg-footer__email a {
  font-size: 15px;
  font-weight: 400;
}

/* ---------------------- TICKER STRIP ---------------------- */
.skg-ticker-wrap {
  background: #e84435;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}

.skg-ticker-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.skg-ticker {
  width: 100%;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}

.skg-ticker__inner {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  white-space: nowrap;
  animation: skg-ticker-scroll 60s linear infinite;
}

.skg-ticker__text {
  flex: 0 0 auto;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: .03em;
}

.skg-ticker__sep {
  margin: 0 22px;
  opacity: .7;
}

@keyframes skg-ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------------------- BREADCRUMBS HIDDEN ---------------------- */
.skg-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------------------- MAGNIFIC POPUP OVERRIDES ---------------------- */
.mfp-bg {
  background: #fff !important;
  opacity: 1 !important;
}

.mfp-container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 100vh;
  padding: 20px !important;
}

.mfp-figure {
  max-width: 90vw;
}

.mfp-figure::after {
  display: none !important;
}

img.mfp-img {
  max-height: 90vh !important;
  max-width: 90vw !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
}

.mfp-figure figure {
  position: relative;
  margin: 0;
}

/* figcaption must NOT be a positioning context, otherwise the absolutely
   positioned caption anchors to the empty (0-height) figcaption and ends up
   under the photo. Anchor it to <figure> (which wraps the image) instead. */
.mfp-figure figure figcaption {
  position: static !important;
}

.mfp-bottom-bar {
  position: absolute !important;
  top: auto !important;
  /* beat rb-gallery's `top: 100%` so the caption sits ON the image */
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  margin-top: 0 !important;
  background: transparent !important;
  padding: 12px !important;
  text-align: center !important;
}

.mfp-title {
  display: inline-block !important;
  background: rgba(0, 0, 0, .6) !important;
  color: #fff !important;
  padding: 6px 14px !important;
  border-radius: 8px !important;
  line-height: 1.35 !important;
  font-size: 14px !important;
}

.mfp-close {
  position: fixed !important;
  top: 16px !important;
  right: 16px !important;
  background: rgba(255, 255, 255, .9) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  color: #333 !important;
  opacity: 1 !important;
  font-size: 26px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
}

.mfp-arrow {
  opacity: .7;
}

.mfp-arrow:hover {
  opacity: 1;
}

/* ---------------------- CATEGORY PRODUCT CARDS ---------------------- */
.skg-product-grid {
  display: flex !important;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 30px;
}

.skg-product-col {
  display: flex !important;
  float: none !important;
  align-items: stretch;
  padding: 10px;
  margin-bottom: 10px;
}

.skg-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border: 1px solid var(--skg-line);
  border-radius: var(--skg-radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow .3s ease, transform .3s ease;
}

.skg-product-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, .10);
  transform: translateY(-3px);
}

.skg-product-card__category {
  display: none;
  /* temporarily hidden */
  padding: 12px 16px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--skg-accent);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.skg-product-card__name {
  padding: 15px 15px 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--skg-text);
  line-height: 1.25;
  display: flex;
  align-items: center;
}

.skg-product-card__name a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  /* text-transform: uppercase; */
}

.skg-product-card__name a:hover {
  color: var(--skg-accent);
}

.skg-product-card__image {
  padding: 0 0px;
  text-align: center;
}

.skg-product-card__image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  background: #f6f6f6;
}

.skg-product-card__price {
  padding: 20px 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.skg-price-new {
  font-size: 22px;
  font-weight: 800;
  color: #37bdaf;
}

.skg-price-old {
  font-size: 15px;
  color: var(--skg-muted);
  text-decoration: line-through;
}

.skg-product-card__attrs {
  flex: 1 1 auto;
  padding: 0 16px 10px;
}

.skg-attr-row {
  font-size: 14px;
  color: var(--skg-muted);
  padding: 2px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.skg-attr-name {
  font-weight: 600;
  color: var(--skg-text);
}

.skg-product-card__buttons {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  margin-top: auto;
}

.skg-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
}

.skg-btn-detail {
  border-color: #15171c;
  color: #15171c;
  background: transparent;
}

.skg-btn-detail:hover {
  background: var(--skg-accent);
  color: #fff;
  border: 1px solid var(--skg-accent);
}

.skg-btn-buy {
  background: var(--skg-accent);
  color: #fff;
  border-color: var(--skg-accent);
}

.skg-btn-buy:hover {
  background: var(--skg-accent-dark);
  border-color: var(--skg-accent-dark);
}

/* ---------------------- BREADCRUMBS ----------------------
   Visually hidden but kept in the DOM so search engines still read them. */
.breadcrumb {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------------------- MODALS (Buy in 1 click etc.) ----------------------
   Keep dialogs above the fixed header (1030) and the mobile overlay (1020). */
.modal {
  z-index: 1060 !important;
}

.modal-backdrop {
  z-index: 1055 !important;
}

/* ---------------------- PRODUCT PAGE ---------------------- */
.skg-product {
  margin: 10px 0 40px;
}

.skg-product__top {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
}

.skg-product__gallery,
.skg-product__info {
  flex: 1 1 0;
  min-width: 0;
}

/* Gallery */
.skg-gallery {
  position: relative;
  display: flex;
  align-items: center;
}

.skg-gallery__main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 440px;
  border: 1px solid var(--skg-line);
  border-radius: var(--skg-radius);
  overflow: hidden;
  background: #fff;
  cursor: zoom-in;
}

.skg-gallery__main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.skg-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  color: var(--skg-text);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .14);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}

.skg-gallery__arrow:hover {
  background: var(--skg-accent);
  color: #fff;
}

.skg-gallery__prev {
  left: 10px;
}

.skg-gallery__next {
  right: 10px;
}

.skg-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.skg-gallery__thumb {
  width: 63px;
  height: 63px;
  border: 2px solid var(--skg-line);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease;
}

.skg-gallery__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.skg-gallery__thumb.active,
.skg-gallery__thumb:hover {
  border-color: var(--skg-accent);
}

/* Info column */
.skg-product__name {
  font-size: 30px;
  font-weight: 800;
  color: var(--skg-text);
  margin: 0 0 10px;
}

.skg-product__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 30px;
}

.skg-product__price .skg-price-new {
  font-size: 30px;
  font-weight: 800;
  color: #289f93;
}

.skg-product__price .skg-price-old {
  font-size: 18px;
  color: var(--skg-muted);
  text-decoration: line-through;
}

.skg-product__buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.skg-product__buttons .skg-btn {
  flex: 1;
  padding: 14px 16px;
  font-size: 15px;
}

.skg-btn-wa {
  gap: 8px;
}

.skg-btn-wa__icon {
  display: inline-flex;
  align-items: center;
}

.skg-btn-wa__icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.skg-product__html {
  font-size: 15px;
  line-height: 1.6;
  color: var(--skg-text);
}

.skg-product__html img {
  max-width: 100%;
  height: auto;
}

/* Full-width sections */
.skg-product__section {
  margin-top: 46px;
}

.skg-product__section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--skg-text);
  margin: 0 0 26px;
}

.skg-product__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--skg-text);
}

.skg-product__desc img {
  max-width: 100%;
  height: auto;
}

/* Characteristics table */
.skg-specs {
  width: 100%;
  border-collapse: collapse;
}

.skg-specs tr {
  border-bottom: 1px solid #eef0f3;
}

.skg-specs tr:nth-child(even) {
  background: #f7f8fb;
}

.skg-specs__name,
.skg-specs__value {
  padding: 18px 22px;
  font-size: 15px;
  vertical-align: top;
}

.skg-specs__name {
  width: 50%;
  color: var(--skg-text);
}

.skg-specs__value {
  color: #3a3f47;
}

@media (max-width: 767px) {
  .skg-product__top {
    gap: 22px;
  }

  .skg-product__gallery,
  .skg-product__info {
    flex: 1 1 100%;
  }

  .skg-gallery__main {
    height: 320px;
  }

  .skg-product__name {
    font-size: 23px;
  }

  .skg-product__buttons {
    flex-direction: column;
  }

  .skg-product__section-title {
    font-size: 24px;
  }

  .skg-specs__name,
  .skg-specs__value {
    padding: 12px 14px;
    font-size: 14px;
  }
}

/* ---------------------- PRODUCT PAGE ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â FIXES ---------------------- */
/* Breadcrumbs are hidden site-wide; show them again on the product page */
#product-product .breadcrumb {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 22px 0 30px !important;
  padding: 8px 0px !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  background-color: #ffffff;
}

/* The theme forces `.breadcrumb > li { white-space: nowrap }`, which makes a long
   product name overflow the page on mobile. Allow it to wrap. */
#product-product .breadcrumb>li {
  white-space: normal;
}

#product-product .breadcrumb a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Product description / information page body text */
#product-product #tab-description,
#information-information #content {
  font-size: 15px;
  line-height: 22px;
}

/* Model line under the product title */
.skg-product__model {
  font-size: 18px;
  color: var(--skg-muted);
  margin: 10px 0 30px;
  font-weight: 400;
}

.skg-product__model span {
  color: var(--skg-muted);
}

/* Messenger button colour comes from theme settings (CSS vars). Only this
   button is themed ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â the "ÃƒÆ’Ã‚ÂÃƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬ËœÃƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¿ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¸ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬ËœÃƒâ€¦Ã¢â‚¬â„¢" button keeps the theme accent. */
.skg-btn-wa {
  gap: 8px;
  background: var(--wa, #25d366);
  border-color: var(--wa, #25d366);
  color: #fff;
}

.skg-btn-wa:hover {
  background: var(--wa-d, #1fb457);
  border-color: var(--wa-d, #1fb457);
  color: #fff;
}

/* Smooth main-image fade */
#skg-gallery-img {
  transition: opacity .25s ease;
  will-change: opacity;
}

/* Product zoom lightbox: big photo with prev/next arrows, but no caption bar */
.skg-zoom .mfp-bottom-bar {
  display: none !important;
}

.skg-zoom img.mfp-img {
  max-height: 92vh !important;
  max-width: 92vw !important;
}

/* dark arrows so they're visible on the white background */
.skg-zoom .mfp-arrow {
  opacity: 1 !important;
}

.skg-zoom .mfp-arrow:before {
  display: none !important;
}

.skg-zoom .mfp-arrow-left:after {
  border-right-color: #333 !important;
}

.skg-zoom .mfp-arrow-right:after {
  border-left-color: #333 !important;
}

/* ---------------------- BUYONECLICK (quick order) MODAL ---------------------- */
/* Vertically + horizontally centre the modal on screen */
#boc_order.modal {
  text-align: center;
  padding: 0 !important;
}

#boc_order.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  width: 0;
  vertical-align: middle;
  margin-right: -0.25em;
}

#boc_order .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  width: 620px;
  max-width: 94%;
  margin: 20px auto;
}

/* Taller inputs, no icon add-ons */
#boc_order input.form-control {
  height: 50px;
}

#boc_order .modal-body {
  padding: 18px 22px 22px;
}

/* ---------------------- FONT: Manrope (main) ---------------------- */
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --skg-font: 'Manrope', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
textarea,
button,
.btn {
  font-family: var(--skg-font) !important;
}

div#information-information {
  margin-top: 60px;
}

@media (max-width: 1200px) {
  .skg-menu a {
    font-size: 14px;
  }

  .skg-nav {
    padding-left: 10px;
  }
}

.wall-category {
  box-shadow: 0px 0px 6px 1px rgb(0 0 0 / 5%) !important;
  border-radius: var(--skg-radius) !important;
}

div#product-category {
  margin-top: 40px;
}

.rsc-stats {
  font-family: 'Manrope', sans-serif;
  background: #ffffff;
  color: #111111;
  padding: 100px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding-top: 30px;
}

.rsc-stats * {
  box-sizing: border-box;
}

.rsc-head {
  max-width: 760px;
  text-align: center;
  margin-bottom: 64px;
}

.rsc-eyebrow {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #37bdaf;
  font-weight: 700;
  margin-bottom: 20px;
}

.rsc-title {
  font-size: clamp(28px, 3.4vw, 30px);
  line-height: 1.12;
  font-weight: 700;
  margin: 0;
  letter-spacing: -.02em;
  color: #111111;
}

.rsc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1140px;
}

.rsc-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 32px 30px;
  cursor: default;
  z-index: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
  transition: transform .35s cubic-bezier(.2, .7, .2, 1),
    box-shadow .35s ease, border-color .35s ease;
}

.rsc-card:hover {
  transform: translateY(-6px) scale(1.035);
  border-color: #37bdaf;
  box-shadow: 0 24px 60px -20px rgba(55, 189, 175, .35);
  z-index: 2;
}

.rsc-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rsc-stat {
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: #37bdaf;
}

.rsc-cardtitle {
  font-size: 18px;
  font-weight: 700;
  margin-top: 14px;
  letter-spacing: -.01em;
}

.rsc-desc {
  color: #5a5a5a;
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 400;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height .4s ease, opacity .35s ease, margin-top .35s ease;
}

.rsc-card:hover .rsc-desc {
  max-height: 160px;
  opacity: 1;
  margin-top: 16px;
}

@media (max-width:900px) {
  .rsc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:600px) {
  .rsc-stats {
    padding: 64px 24px;
  }

  .rsc-grid {
    grid-template-columns: 1fr;
  }
}

.skg-guarantee {
  --acc: #37bdaf;
  margin: 30px auto;
  color: #23262b;
  font-family: inherit;
  line-height: 1.6
}

.skg-guarantee__title {
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 10px
}

.skg-guarantee__subtitle {
  font-size: 18px;
  color: #37bdaf;
  text-align: ÃƒÂÃ‚Â´Ãƒâ€˜Ã†â€™;
  font-weight: 600;
  margin: 0 0 26px
}

.skg-sec__h {
  font-size: 24px;
  font-weight: 800;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  /* border-bottom:2px solid #eef0f3; */
}

.skg-guarantee p {
  font-size: 15px;
  color: #3a3f47;
  margin: 0 0 12px
}

.skg-pay {
  border: 1px solid #e7e9ee;
  /* border-left:4px solid var(--acc); */
  border-radius: 12px;
  background: #fbfdfd;
  padding: 16px 18px;
  margin: 0 0 14px
}

.skg-pay__t {
  font-size: 16px;
  font-weight: 700;
  color: #23262b;
  margin: 0 0 8px
}

.skg-list {
  list-style: none;
  margin: 0;
  padding: 0
}

.skg-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
  font-size: 15px;
  color: #3a3f47
}

.skg-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acc)
}

/* ===== ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂºÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½ ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Â ÃƒÂÃ‚Âµ Ãƒâ€šÃ‚Â«ÃƒÂÃ¢â‚¬Å“ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚Â ÃƒÂÃ‚Â¸ Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â²ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚ÂÃƒâ€šÃ‚Â» ===== */
.skg-acc {
  border: 1px solid #e7e9ee;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  margin-top: 14px
}

.skg-acc__item {
  border-top: 1px solid #eef0f3
}

.skg-acc__item:first-child {
  border-top: none
}

.skg-acc__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.skg-acc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: #23262b;
  transition: background .2s ease, color .2s ease;
  user-select: none
}

.skg-acc__head:hover {
  background: #f3fbfa;
  color: var(--acc)
}

.skg-acc__icon {
  flex: 0 0 auto;
  position: relative;
  width: 18px;
  height: 18px
}

.skg-acc__icon::before,
.skg-acc__icon::after {
  content: "";
  position: absolute;
  background: var(--acc);
  border-radius: 2px;
  transition: transform .3s ease
}

.skg-acc__icon::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px
}

.skg-acc__icon::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 18px
}

.skg-acc__toggle:checked~.skg-acc__head .skg-acc__icon::after {
  transform: rotate(90deg);
  opacity: 0
}

.skg-acc__toggle:checked~.skg-acc__head {
  color: var(--acc)
}

.skg-acc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.skg-acc__toggle:checked~.skg-acc__body {
  max-height: 1200px
}

.skg-acc__inner {
  padding: 2px 20px 20px;
  font-size: 15px;
  color: #3a3f47
}

.skg-acc__inner p:last-child {
  margin-bottom: 0
}

@media(max-width:600px) {
  .skg-guarantee__title {
    font-size: 25px
  }

  .skg-guarantee__subtitle {
    font-size: 16px
  }

  .skg-sec__h {
    font-size: 20px
  }

  .skg-acc__head {
    padding: 15px 16px;
    font-size: 15px
  }

  .skg-acc__inner {
    padding: 2px 16px 16px;
    font-size: 14px
  }
}

/* ============================================================
   SKG theme ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â header, landing modules, footer
   Accent: #FF5D22
   ============================================================ */
:root {
  --skg-accent: #37bdaf;
  --skg-accent-dark: #2fa99c;
  --skg-header-bg: #1a1a1a;
  --skg-dark: #15171c;
  --skg-text: #23262b;
  --skg-muted: #8b9099;
  --skg-line: #ececec;
  --skg-radius: 14px;
  --skg-header-h: 74px;
}

/* ---------------------- HEADER ---------------------- */
.skg-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  background: #15171c;
  box-shadow: 0 2px 18px rgba(0, 0, 0, .25);
  transition: box-shadow .3s ease, background .3s ease, transform .3s ease;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .skg-header {
    margin-bottom: 20px;
  }
}

.skg-header.skg-scrolled {
  box-shadow: 0 6px 26px rgba(0, 0, 0, .45);
}

.skg-header__spacer {
  height: var(--skg-header-h);
}

.skg-header__inner {
  display: flex;
  align-items: center;
  gap: 0px;
  height: var(--skg-header-h);
  position: relative;
}

.skg-header__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.skg-header__logo img {
  max-height: 35px;
  width: auto;
  display: block;
}

.skg-header__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

/* nav takes the middle */
.skg-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding-left: 40px;
}

/* Catalog button */
.skg-catalog {
  position: relative;
  flex: 0 0 auto;
}

.skg-catalog__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  background: var(--skg-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 10px;
  transition: background .25s ease, transform .15s ease, box-shadow .25s ease;
}

.skg-catalog__btn:hover {
  background: var(--skg-accent-dark);
  box-shadow: 0 8px 18px rgba(55, 189, 175, .32);
}

.skg-catalog__btn:active {
  transform: translateY(1px);
}

.skg-catalog__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: 16px;
}

.skg-catalog__icon span {
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .25s ease;
}

.skg-catalog__icon span:nth-child(2) {
  width: 70%;
}

.skg-catalog.open .skg-catalog__icon span:nth-child(2) {
  width: 100%;
}

.skg-catalog__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: var(--skg-radius);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .16);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 40;
}

.skg-catalog.open .skg-catalog__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.skg-catalog__menu>ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.skg-catalog__menu li {
  position: relative;
}

.skg-catalog__menu li>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  color: var(--skg-text);
  text-decoration: none;
  border-radius: 9px;
  font-size: 14.5px;
  transition: background .2s ease, color .2s ease;
}

.skg-catalog__menu li>a:hover {
  background: #e7f7f5;
  color: var(--skg-accent);
}

.skg-catalog__menu li>a .fa {
  font-size: 12px;
  opacity: .5;
}

.skg-catalog__submenu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: -8px;
  left: calc(100% + 6px);
  min-width: 230px;
  background: #fff;
  border-radius: var(--skg-radius);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: .22s ease;
}

.skg-catalog__menu li.has-children:hover>.skg-catalog__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Extra menu */
.skg-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.skg-menu a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  transition: color .2s ease;
}

.skg-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--skg-accent);
  transition: width .25s ease;
}

.skg-menu a:hover {
  color: var(--skg-accent);
}

.skg-menu a:hover::after {
  width: 100%;
}

/* Right cluster */
.skg-header__right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Social ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â keep the icon's own colours, fixed 28x28, no hover/offset */
.skg-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.skg-social__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.skg-social__item svg,
.skg-social__item img {
  width: 28px;
  height: 28px;
  display: block;
}

.skg-phone {
  font-size: 19px;
  font-weight: 700;
  color: var(--skg-accent);
  text-decoration: none;
  white-space: nowrap;
}

.skg-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.skg-lang__item {
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px 8px;
  font-size: 14px;
  color: #fff;
  border-radius: 7px;
  transition: color .2s ease;
}

.skg-lang__item:hover {
  color: var(--skg-accent);
}

.skg-lang__item.active {
  color: #fff;
  font-weight: 700;
}

.skg-lang__item+.skg-lang__item {
  border-left: 1px solid rgba(255, 255, 255, .25);
  border-radius: 0;
}

/* Burger */
.skg-burger {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.skg-burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s ease;
}

.skg-burger span+span {
  margin-top: 5px;
}

.skg-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.skg-burger.open span:nth-child(2) {
  opacity: 0;
}

.skg-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile slide-in drawer overlay (must sit BELOW the header so the drawer,
   which lives inside the header's stacking context, stays clickable) */
.skg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 1020;
}

.skg-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ----- Responsive header ----- */
@media (max-width: 991px) {
  .skg-nav {
    gap: 18px;
  }

  .skg-menu {
    gap: 16px;
  }

  .skg-header__right {
    gap: 5px;
  }

  .skg-phone {
    font-size: 14px;
  }
}

@media (max-width: 880px) {
  .skg-header__inner {
    gap: 12px;
  }

  /* Top bar (like the donor): [burger] [logo] ........ [social] [languages] */
  .skg-burger {
    display: block;
    order: -1;
    padding: 8px 6px;
  }

  .skg-header__logo {
    order: 0;
    margin-right: auto;
  }

  .skg-header__logo img {
    max-height: 25px;
  }

  .skg-header__right {
    order: 1;
    gap: 12px;
  }

  /* no call button in the mobile bar */
  .skg-phone {
    display: none;
  }

  .skg-social {
    gap: 10px;
  }

  /* sliding drawer from the left, opens BELOW the header (top is set by JS to
     the header's current bottom edge, since the sticky header's position varies) */
  .skg-nav {
    position: fixed;
    top: var(--skg-header-h);
    left: 0;
    bottom: 0;
    width: 84%;
    max-width: 340px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--skg-header-bg);
    box-shadow: 4px 0 30px rgba(0, 0, 0, .4);
    padding: 22px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .32s ease;
    z-index: 1045;
  }

  .skg-nav.open {
    transform: translateX(0);
  }

  .skg-catalog {
    width: 100%;
  }

  .skg-catalog__btn {
    width: 100%;
    justify-content: center;
  }

  .skg-catalog__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    min-width: 0;
    padding: 6px 0 2px;
    margin-top: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }

  .skg-catalog.open .skg-catalog__menu {
    max-height: 1600px;
  }

  .skg-catalog__menu li>a {
    color: #fff;
  }

  .skg-catalog__menu li>a:hover {
    background: rgba(255, 255, 255, .08);
    color: var(--skg-accent);
  }

  /* first-level categories only on mobile */
  .skg-catalog__menu li>a .fa {
    display: none;
  }

  .skg-catalog__submenu {
    display: none;
  }

  .skg-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }

  .skg-menu a {
    color: #fff;
    padding: 13px 4px;
    /* border-bottom: 1px solid rgba(255, 255, 255, .12); */
  }

  .skg-menu a::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .skg-lang__item {
    padding: 4px 5px;
    font-size: 13px;
  }

  .skg-header__right {
    gap: 9px;
  }
}

/* ---------------------- TRAINING MODULE ---------------------- */
.skg-training {
  padding: 0px 0 20px;
}

.skg-training__overline {
  display: inline-block;
  color: var(--skg-accent);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.skg-training__title {
  font-size: 30px;
  line-height: 1.12;
  font-weight: 700;
  color: var(--skg-text);
  margin: 0 0 34px;
}

.skg-training__banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.skg-training__banner {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  min-height: 430px;
  text-decoration: none;
  color: #fff;
  background: #ddd center/cover no-repeat;
  transition: transform .35s ease, box-shadow .35s ease;
}

.skg-training__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .45));
}

.skg-training__banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .2);
}

.skg-training__banner span {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  font-size: 26px;
  font-weight: 700;
}

/* "One banner" mode ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â a single banner spanning the whole container width */
.skg-training__banners--wide {
  grid-template-columns: 1fr;
}

.skg-training__banners--wide .skg-training__banner {
  min-height: 320px;
}

@media (max-width: 767px) {
  .skg-training__banners--wide .skg-training__banner {
    min-height: 200px;
  }
}

@media (max-width: 767px) {
  .skg-training {
    padding: 36px 0 10px;
  }

  .skg-training__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .skg-training__banners {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .skg-training__banner {
    min-height: 200px;
  }
}

@media (min-width: 285px) and (max-width: 991px) {
  .skg-training__banner {
    min-height: 420px;
  }
}

/* ---------------------- ADVANTAGES MODULE ---------------------- */
.skg-advantages {
  padding: 26px 0 50px;
}

.skg-advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.skg-advantage {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--skg-line);
  border-radius: var(--skg-radius);
  padding: 15px 15px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.skg-advantage:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
  border-color: transparent;
}

.skg-advantage__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e7f7f5;
  color: var(--skg-accent);
}

.skg-advantage__icon svg,
.skg-advantage__icon img {
  width: 35px;
  height: 35px;
  display: block;
}

.skg-advantage__icon svg path {
  fill: currentColor;
}

.skg-advantage__body {
  display: flex;
  flex-direction: column;
}

.skg-advantage__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--skg-text);
  line-height: 1.2;
}

.skg-advantage__text {
  font-size: 14px;
  color: var(--skg-muted);
  margin-top: 3px;
}

@media (max-width: 991px) {
  .skg-advantages__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------- FOOTER ---------------------- */
.skg-footer {
  background: var(--skg-dark);
  color: #c7ccd4;
  padding: 54px 0 34px;
  margin-top: 50px;
}

.skg-footer a {
  color: #c7ccd4;
  text-decoration: none;
  transition: color .2s ease;
}

.skg-footer a:hover {
  color: var(--skg-accent);
}

.skg-footer__logo {
  text-align: center;
  margin-bottom: 14px;
}

.skg-footer__logo img {
  max-height: 34px;
  width: auto;
}

.skg-footer__powered {
  text-align: center;
  color: #8a909a;
  font-size: 14px;
  margin: 0px 0 50px;
}

.skg-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.skg-footer__col-title {
  color: var(--skg-accent);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 18px;
}

.skg-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.skg-footer__links li {
  margin-bottom: 12px;
  font-size: 15px;
}

.skg-footer__contacts .skg-footer__phone {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.skg-footer__label {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  margin: 14px 0 4px;
}

.skg-footer__value {
  font-size: 16px;
  line-height: 2.5;
  color: #aeb4bd;
}

.skg-footer__email {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 800;
}

.skg-footer__email a {
  color: var(--skg-accent);
}

@media (max-width: 991px) {
  .skg-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}

@media (max-width: 575px) {
  .skg-footer__grid {
    grid-template-columns: 1fr;
  }
}

#content>section.skg-training>div>div>a:nth-child(1n)>span {
  color: #ffffff;
}

.skg-footer__email a {
  font-size: 15px;
  font-weight: 400;
}

/* ---------------------- TICKER STRIP ---------------------- */
.skg-ticker-wrap {
  background: #e84435;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}

.skg-ticker-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.skg-ticker {
  width: 100%;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}

.skg-ticker__inner {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  white-space: nowrap;
  animation: skg-ticker-scroll 60s linear infinite;
}

.skg-ticker__text {
  flex: 0 0 auto;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: .03em;
}

.skg-ticker__sep {
  margin: 0 22px;
  opacity: .7;
}

@keyframes skg-ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------------------- BREADCRUMBS HIDDEN ---------------------- */
.skg-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------------------- MAGNIFIC POPUP OVERRIDES ---------------------- */
.mfp-bg {
  background: #fff !important;
  opacity: 1 !important;
}

.mfp-container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 100vh;
  padding: 20px !important;
}

.mfp-figure {
  max-width: 90vw;
}

.mfp-figure::after {
  display: none !important;
}

img.mfp-img {
  max-height: 90vh !important;
  max-width: 90vw !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
}

.mfp-figure figure {
  position: relative;
  margin: 0;
}

/* figcaption must NOT be a positioning context, otherwise the absolutely
   positioned caption anchors to the empty (0-height) figcaption and ends up
   under the photo. Anchor it to <figure> (which wraps the image) instead. */
.mfp-figure figure figcaption {
  position: static !important;
}

.mfp-bottom-bar {
  position: absolute !important;
  top: auto !important;
  /* beat rb-gallery's `top: 100%` so the caption sits ON the image */
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  margin-top: 0 !important;
  background: transparent !important;
  padding: 12px !important;
  text-align: center !important;
}

.mfp-title {
  display: inline-block !important;
  background: rgba(0, 0, 0, .6) !important;
  color: #fff !important;
  padding: 6px 14px !important;
  border-radius: 8px !important;
  line-height: 1.35 !important;
  font-size: 14px !important;
}

.mfp-close {
  position: fixed !important;
  top: 16px !important;
  right: 16px !important;
  background: rgba(255, 255, 255, .9) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  color: #333 !important;
  opacity: 1 !important;
  font-size: 26px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
}

.mfp-arrow {
  opacity: .7;
}

.mfp-arrow:hover {
  opacity: 1;
}

/* ---------------------- CATEGORY PRODUCT CARDS ---------------------- */
.skg-product-grid {
  display: flex !important;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 30px;
}

.skg-product-col {
  display: flex !important;
  float: none !important;
  align-items: stretch;
  padding: 10px;
  margin-bottom: 10px;
}

.skg-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border: 1px solid var(--skg-line);
  border-radius: var(--skg-radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow .3s ease, transform .3s ease;
}

.skg-product-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, .10);
  transform: translateY(-3px);
}

.skg-product-card__category {
  display: none;
  /* temporarily hidden */
  padding: 12px 16px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--skg-accent);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.skg-product-card__name {
  padding: 15px 15px 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--skg-text);
  line-height: 1.25;
  display: flex;
  align-items: center;
}

.skg-product-card__name a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  /* text-transform: uppercase; */
}

.skg-product-card__name a:hover {
  color: var(--skg-accent);
}

.skg-product-card__image {
  padding: 0 0px;
  text-align: center;
}

.skg-product-card__image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  background: #f6f6f6;
}

.skg-product-card__price {
  padding: 20px 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.skg-price-new {
  font-size: 22px;
  font-weight: 800;
  color: #37bdaf;
}

.skg-price-old {
  font-size: 15px;
  color: var(--skg-muted);
  text-decoration: line-through;
}

.skg-product-card__attrs {
  flex: 1 1 auto;
  padding: 0 16px 10px;
}

.skg-attr-row {
  font-size: 14px;
  color: var(--skg-muted);
  padding: 2px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.skg-attr-name {
  font-weight: 600;
  color: var(--skg-text);
}

.skg-product-card__buttons {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  margin-top: auto;
}

.skg-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
}

.skg-btn-detail {
  border-color: #15171c;
  color: #15171c;
  background: transparent;
}

.skg-btn-detail:hover {
  background: var(--skg-accent);
  color: #fff;
  border: 1px solid var(--skg-accent);
}

.skg-btn-buy {
  background: var(--skg-accent);
  color: #fff;
  border-color: var(--skg-accent);
}

.skg-btn-buy:hover {
  background: var(--skg-accent-dark);
  border-color: var(--skg-accent-dark);
}

/* ---------------------- BREADCRUMBS ----------------------
   Visually hidden but kept in the DOM so search engines still read them. */
.breadcrumb {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------------------- MODALS (Buy in 1 click etc.) ----------------------
   Keep dialogs above the fixed header (1030) and the mobile overlay (1020). */
.modal {
  z-index: 1060 !important;
}

.modal-backdrop {
  z-index: 1055 !important;
}

/* ---------------------- PRODUCT PAGE ---------------------- */
.skg-product {
  margin: 10px 0 40px;
}

.skg-product__top {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
}

.skg-product__gallery,
.skg-product__info {
  flex: 1 1 0;
  min-width: 0;
}

/* Gallery */
.skg-gallery {
  position: relative;
  display: flex;
  align-items: center;
}

.skg-gallery__main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 440px;
  border: 1px solid var(--skg-line);
  border-radius: var(--skg-radius);
  overflow: hidden;
  background: #fff;
  cursor: zoom-in;
}

.skg-gallery__main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.skg-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  color: var(--skg-text);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .14);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}

.skg-gallery__arrow:hover {
  background: var(--skg-accent);
  color: #fff;
}

.skg-gallery__prev {
  left: 10px;
}

.skg-gallery__next {
  right: 10px;
}

.skg-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.skg-gallery__thumb {
  width: 63px;
  height: 63px;
  border: 2px solid var(--skg-line);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease;
}

.skg-gallery__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.skg-gallery__thumb.active,
.skg-gallery__thumb:hover {
  border-color: var(--skg-accent);
}

/* Info column */
.skg-product__name {
  font-size: 30px;
  font-weight: 800;
  color: var(--skg-text);
  margin: 0 0 10px;
}

.skg-product__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 30px;
}

.skg-product__price .skg-price-new {
  font-size: 30px;
  font-weight: 800;
  color: #289f93;
}

.skg-product__price .skg-price-old {
  font-size: 18px;
  color: var(--skg-muted);
  text-decoration: line-through;
}

.skg-product__buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.skg-product__buttons .skg-btn {
  flex: 1;
  padding: 14px 16px;
  font-size: 15px;
}

.skg-btn-wa {
  gap: 8px;
}

.skg-btn-wa__icon {
  display: inline-flex;
  align-items: center;
}

.skg-btn-wa__icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.skg-product__html {
  font-size: 15px;
  line-height: 1.6;
  color: var(--skg-text);
}

.skg-product__html img {
  max-width: 100%;
  height: auto;
}

/* Full-width sections */
.skg-product__section {
  margin-top: 46px;
}

.skg-product__section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--skg-text);
  margin: 0 0 26px;
}

.skg-product__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--skg-text);
}

.skg-product__desc img {
  max-width: 100%;
  height: auto;
}

/* Characteristics table */
.skg-specs {
  width: 100%;
  border-collapse: collapse;
}

.skg-specs tr {
  border-bottom: 1px solid #eef0f3;
}

.skg-specs tr:nth-child(even) {
  background: #f7f8fb;
}

.skg-specs__name,
.skg-specs__value {
  padding: 18px 22px;
  font-size: 15px;
  vertical-align: top;
}

.skg-specs__name {
  width: 50%;
  color: var(--skg-text);
}

.skg-specs__value {
  color: #3a3f47;
}

@media (max-width: 767px) {
  .skg-product__top {
    gap: 22px;
  }

  .skg-product__gallery,
  .skg-product__info {
    flex: 1 1 100%;
  }

  .skg-gallery__main {
    height: 320px;
  }

  .skg-product__name {
    font-size: 23px;
  }

  .skg-product__buttons {
    flex-direction: column;
  }

  .skg-product__section-title {
    font-size: 24px;
  }

  .skg-specs__name,
  .skg-specs__value {
    padding: 12px 14px;
    font-size: 14px;
  }
}

/* ---------------------- PRODUCT PAGE ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â FIXES ---------------------- */
/* Breadcrumbs are hidden site-wide; show them again on the product page */
#product-product .breadcrumb {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 22px 0 30px !important;
  padding: 8px 0px !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  background-color: #ffffff;
}

/* The theme forces `.breadcrumb > li { white-space: nowrap }`, which makes a long
   product name overflow the page on mobile. Allow it to wrap. */
#product-product .breadcrumb>li {
  white-space: normal;
}

#product-product .breadcrumb a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Product description / information page body text */
#product-product #tab-description,
#information-information #content {
  font-size: 15px;
  line-height: 22px;
}

/* Model line under the product title */
.skg-product__model {
  font-size: 18px;
  color: var(--skg-muted);
  margin: 10px 0 30px;
  font-weight: 400;
}

.skg-product__model span {
  color: var(--skg-muted);
}

/* Messenger button colour comes from theme settings (CSS vars). Only this
   button is themed ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â the "ÃƒÆ’Ã‚ÂÃƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬ËœÃƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¿ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¸ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬ËœÃƒâ€¦Ã¢â‚¬â„¢" button keeps the theme accent. */
.skg-btn-wa {
  gap: 8px;
  background: var(--wa, #25d366);
  border-color: var(--wa, #25d366);
  color: #fff;
}

.skg-btn-wa:hover {
  background: var(--wa-d, #1fb457);
  border-color: var(--wa-d, #1fb457);
  color: #fff;
}

/* Smooth main-image fade */
#skg-gallery-img {
  transition: opacity .25s ease;
  will-change: opacity;
}

/* Product zoom lightbox: big photo with prev/next arrows, but no caption bar */
.skg-zoom .mfp-bottom-bar {
  display: none !important;
}

.skg-zoom img.mfp-img {
  max-height: 92vh !important;
  max-width: 92vw !important;
}

/* dark arrows so they're visible on the white background */
.skg-zoom .mfp-arrow {
  opacity: 1 !important;
}

.skg-zoom .mfp-arrow:before {
  display: none !important;
}

.skg-zoom .mfp-arrow-left:after {
  border-right-color: #333 !important;
}

.skg-zoom .mfp-arrow-right:after {
  border-left-color: #333 !important;
}

/* ---------------------- BUYONECLICK (quick order) MODAL ---------------------- */
/* Vertically + horizontally centre the modal on screen */
#boc_order.modal {
  text-align: center;
  padding: 0 !important;
}

#boc_order.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  width: 0;
  vertical-align: middle;
  margin-right: -0.25em;
}

#boc_order .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  width: 620px;
  max-width: 94%;
  margin: 20px auto;
}

/* Taller inputs, no icon add-ons */
#boc_order input.form-control {
  height: 50px;
}

#boc_order .modal-body {
  padding: 18px 22px 22px;
}

/* ---------------------- FONT: Manrope (main) ---------------------- */
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --skg-font: 'Manrope', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
textarea,
button,
.btn {
  font-family: var(--skg-font) !important;
}

div#information-information {
  margin-top: 25px;
}

@media (max-width: 1200px) {
  .skg-menu a {
    font-size: 14px;
  }

  .skg-nav {
    padding-left: 10px;
  }
}

.wall-category {
  box-shadow: 0px 0px 6px 1px rgb(0 0 0 / 5%) !important;
  border-radius: var(--skg-radius) !important;
}

div#product-category {
  margin-top: 40px;
}

.rsc-stats {
  font-family: 'Manrope', sans-serif;
  background: #ffffff;
  color: #111111;
  padding: 100px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding-top: 30px;
}

.rsc-stats * {
  box-sizing: border-box;
}

.rsc-head {
  max-width: 760px;
  text-align: center;
  margin-bottom: 64px;
}

.rsc-eyebrow {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #37bdaf;
  font-weight: 700;
  margin-bottom: 20px;
}

.rsc-title {
  font-size: clamp(28px, 3.4vw, 30px);
  line-height: 1.12;
  font-weight: 700;
  margin: 0;
  letter-spacing: -.02em;
  color: #111111;
}

.rsc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1140px;
}

.rsc-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 32px 30px;
  cursor: default;
  z-index: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
  transition: transform .35s cubic-bezier(.2, .7, .2, 1),
    box-shadow .35s ease, border-color .35s ease;
}

.rsc-card:hover {
  transform: translateY(-6px) scale(1.035);
  border-color: #37bdaf;
  box-shadow: 0 24px 60px -20px rgba(55, 189, 175, .35);
  z-index: 2;
}

.rsc-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rsc-stat {
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: #37bdaf;
}

.rsc-cardtitle {
  font-size: 18px;
  font-weight: 700;
  margin-top: 14px;
  letter-spacing: -.01em;
}

.rsc-desc {
  color: #5a5a5a;
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 400;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height .4s ease, opacity .35s ease, margin-top .35s ease;
}

.rsc-card:hover .rsc-desc {
  max-height: 160px;
  opacity: 1;
  margin-top: 16px;
}

@media (max-width:900px) {
  .rsc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:600px) {
  .rsc-stats {
    padding: 64px 24px;
  }

  .rsc-grid {
    grid-template-columns: 1fr;
  }
}

.skg-guarantee {
  --acc: #37bdaf;
  margin: 30px auto;
  color: #23262b;
  font-family: inherit;
  line-height: 1.6
}

.skg-guarantee__title {
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 10px
}

.skg-guarantee__subtitle {
  font-size: 18px;
  color: #37bdaf;
  text-align: ÃƒÂÃ‚Â´Ãƒâ€˜Ã†â€™;
  font-weight: 600;
  margin: 0 0 26px
}

.skg-sec__h {
  font-size: 24px;
  font-weight: 800;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  /* border-bottom:2px solid #eef0f3; */
}

.skg-guarantee p {
  font-size: 15px;
  color: #3a3f47;
  margin: 0 0 12px
}

.skg-pay {
  border: 1px solid #e7e9ee;
  /* border-left:4px solid var(--acc); */
  border-radius: 12px;
  background: #fbfdfd;
  padding: 16px 18px;
  margin: 0 0 14px
}

.skg-pay__t {
  font-size: 16px;
  font-weight: 700;
  color: #23262b;
  margin: 0 0 8px
}

.skg-list {
  list-style: none;
  margin: 0;
  padding: 0
}

.skg-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
  font-size: 15px;
  color: #3a3f47
}

.skg-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acc)
}

/* ===== ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂºÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½ ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Â ÃƒÂÃ‚Âµ Ãƒâ€šÃ‚Â«ÃƒÂÃ¢â‚¬Å“ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚Â ÃƒÂÃ‚Â¸ Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â²ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚ÂÃƒâ€šÃ‚Â» ===== */
.skg-acc {
  border: 1px solid #e7e9ee;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  margin-top: 14px
}

.skg-acc__item {
  border-top: 1px solid #eef0f3
}

.skg-acc__item:first-child {
  border-top: none
}

.skg-acc__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.skg-acc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: #23262b;
  transition: background .2s ease, color .2s ease;
  user-select: none
}

.skg-acc__head:hover {
  background: #f3fbfa;
  color: var(--acc)
}

.skg-acc__icon {
  flex: 0 0 auto;
  position: relative;
  width: 18px;
  height: 18px
}

.skg-acc__icon::before,
.skg-acc__icon::after {
  content: "";
  position: absolute;
  background: var(--acc);
  border-radius: 2px;
  transition: transform .3s ease
}

.skg-acc__icon::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px
}

.skg-acc__icon::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 18px
}

.skg-acc__toggle:checked~.skg-acc__head .skg-acc__icon::after {
  transform: rotate(90deg);
  opacity: 0
}

.skg-acc__toggle:checked~.skg-acc__head {
  color: var(--acc)
}

.skg-acc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.skg-acc__toggle:checked~.skg-acc__body {
  max-height: 1200px
}

.skg-acc__inner {
  padding: 2px 20px 20px;
  font-size: 15px;
  color: #3a3f47
}

.skg-acc__inner p:last-child {
  margin-bottom: 0
}

@media(max-width:600px) {
  .skg-guarantee__title {
    font-size: 25px
  }

  .skg-guarantee__subtitle {
    font-size: 16px
  }

  .skg-sec__h {
    font-size: 20px
  }

  .skg-acc__head {
    padding: 15px 16px;
    font-size: 15px
  }

  .skg-acc__inner {
    padding: 2px 16px 16px;
    font-size: 14px
  }
}

.skg-tech {
  --acc: #37bdaf;
  margin: 0px auto;
  padding: 0 0px;
  color: #23262b;
  font-family: inherit
}

.skg-tech__title {
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 36px
}

.skg-tech__card {
  display: flex;
  align-items: center;
  gap: 46px;
  margin: 0 0 56px
}

.skg-tech__card:last-child {
  margin-bottom: 0
}

.skg-tech__card--rev {
  flex-direction: row-reverse
}

.skg-tech__media {
  flex: 1 1 0;
  min-width: 0
}

.skg-tech__media video,
.skg-tech__media img {
  width: 100%;
  display: block;
  border-radius: 18px;
  background: #f3f4f6
}

.skg-tech__text {
  flex: 1 1 0;
  min-width: 0
}

.skg-tech__name {
  font-size: 27px;
  font-weight: 800;
  margin: 0 0 6px
}

.skg-tech__sub {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--acc);
  margin: 0 0 12px
}

.skg-tech__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4f57;
  margin: 0
}

@media(max-width:768px) {

  .skg-tech__card,
  .skg-tech__card--rev {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px
  }

  .skg-tech__title {
    font-size: 25px;
    margin-bottom: 26px
  }

  .skg-tech__name {
    font-size: 22px
  }

  .skg-tech__sub {
    font-size: 16px
  }

  .skg-tech__desc {
    font-size: 15px
  }
}

a.btn.btn-primary.btn-block {
  font-size: 13px;
  white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  height: auto !important;
  line-height: 1.3;
  padding: 8px 12px;
  display: block;
}

@media (max-width: 450px) {
  a.btn.btn-primary.btn-block {
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 991px) {
a.btn.btn-primary.btn-block {
  font-size: 15px;
}