body .oxy-product-gallery {
  --oxy-thumb-size: 96px;
  --oxy-thumb-width: 95px;
  --oxy-thumb-gap: 14px;
  --oxy-arrow-space: 52px;
  --oxy-thumb-safe: 5px;

  width: 100%;
  min-height: 500px !important;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

body .oxy-product-gallery,
body .oxy-product-gallery * {
  box-sizing: border-box;
}

/* Thumbnail oszlop */

body .oxy-product-gallery__thumbs {
  width: 104px;
  height: 500px !important;
  min-height: 500px !important;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  gap: 14px;
  padding-top: 0;
}

body .oxy-product-gallery__thumb-window {
  width: var(--oxy-thumb-width);
  margin: calc(var(--oxy-thumb-safe) * -1) auto;
  padding: var(--oxy-thumb-safe);
  overflow: hidden;
  box-sizing: content-box;
}

body .oxy-product-gallery__thumb-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--oxy-thumb-gap);
  transition: transform 0.42s cubic-bezier(0.22, 0.75, 0.25, 1);
  will-change: transform;
  padding: 0;
}

body .oxy-product-gallery__thumb {
  width: var(--oxy-thumb-width);
  height: var(--oxy-thumb-size);
  flex: 0 0 var(--oxy-thumb-size);

  border: 1px solid #d7e2ef !important;
  border-radius: 24px !important;
  background: #ffffff;

  display: grid;
  place-items: center;
  padding: 8px;

  cursor: pointer;
  opacity: 0.78;
  overflow: hidden;

  box-shadow: inset 0 0 0 0 rgba(37, 92, 168, 0);

  transition:
    opacity 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    background-color 0.22s ease;
}

body .oxy-product-gallery__thumb:hover {
  opacity: 1;
  transform: none;
  border-color: #bfd4ec !important;
  background: #ffffff;
}

body .oxy-product-gallery__thumb.is-active {
  opacity: 1;
  border-color: #2664ae !important;
  background: #ffffff;
  box-shadow: inset 0 0 0 2px rgba(38, 100, 174, 0.1);
}

body .oxy-product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  display: block;
  border-radius: 16px;
}

/* Lefelé lapozó */

body .oxy-product-gallery__arrow {
  width: var(--oxy-thumb-width);
  height: 46px;
  flex: 0 0 46px;

  border-radius: 18px !important;
  border: 1px solid #d9e6f4 !important;
  background: #ffffff !important;
  color: #2664ae;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  box-shadow: none !important;

  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease;
}

body .oxy-product-gallery__arrow:hover {
  transform: translateY(1px);
  border-color: #2664ae !important;
  background: #f5faff !important;
  color: #2664ae;
  box-shadow: none !important;
}

body .oxy-product-gallery__arrow svg {
  display: none;
}

body .oxy-product-gallery__arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

body .oxy-product-gallery__arrow.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body .oxy-product-gallery__main {
  position: relative;
  align-self: start;

  min-height: 500px;
  height: 650px;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  padding: 0;
  margin-top: 0;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;

  overflow: visible;
}

body .oxy-product-gallery__main::before,
body .oxy-product-gallery__main::after {
  display: none !important;
}

body .oxy-product-gallery__main-img {
  width: 100%;
  height: 100%;

  max-width: 100% !important;
  max-height: 100% !important;

  object-fit: cover !important;
  object-position: center top;

  display: block;

  border-radius: 28px;

  filter: none !important;
  box-shadow: none !important;

  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

body .oxy-product-gallery__main.is-changing .oxy-product-gallery__main-img {
  opacity: 0;
  transform: translateY(8px) scale(0.985);
}

/* Tablet */

@media (max-width: 1024px) {
  body .oxy-product-gallery {
    --oxy-thumb-size: 82px;
    --oxy-thumb-width: 82px;
    --oxy-thumb-gap: 12px;
    --oxy-arrow-space: 50px;
    --oxy-thumb-safe: 5px;

    min-height: 460px !important;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 32px;
  }

  body .oxy-product-gallery__thumbs {
    width: 90px;
    height: 460px !important;
    min-height: 460px !important;
  }

  body .oxy-product-gallery__thumb {
    border-radius: 20px !important;
  }

  body .oxy-product-gallery__thumb img {
    border-radius: 13px;
  }

  body .oxy-product-gallery__arrow {
    width: var(--oxy-thumb-width);
    height: 42px;
    flex-basis: 42px;
    border-radius: 16px !important;
  }

  body .oxy-product-gallery__main {
    min-height: 460px !important;
    height: 460px !important;
    padding: 0;
    margin-top: 0;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible;
  }

  body .oxy-product-gallery__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center top;
    border-radius: 22px;

    filter: none !important;
    box-shadow: none !important;
  }
}

/* Mobil */

@media (max-width: 767px) {
  body .oxy-product-gallery {
    --oxy-thumb-size: 72px;
    --oxy-thumb-width: 72px;
    --oxy-thumb-gap: 10px;
    --oxy-thumb-safe: 4px;

    min-height: auto !important;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body .oxy-product-gallery__main {
    order: 1;
    height: 360px !important;
    min-height: 360px !important;

    padding: 0;
    margin-top: 0;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    overflow: visible;
  }

  body .oxy-product-gallery__main-img {
    width: 100%;
    height: 100%;

    object-fit: cover !important;
    object-position: center top;

    border-radius: 20px;

    filter: none !important;
    box-shadow: none !important;
  }

  body .oxy-product-gallery__thumbs {
    order: 2;
    width: 100%;
    height: auto !important;
    min-height: auto !important;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  body .oxy-product-gallery__thumb-window {
    width: 100%;
    margin: 0;
    padding: var(--oxy-thumb-safe) 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    box-sizing: border-box;
  }

  body .oxy-product-gallery__thumb-window::-webkit-scrollbar {
    display: none;
  }

  body .oxy-product-gallery__thumb-track {
    flex-direction: row;
    align-items: center;
    gap: var(--oxy-thumb-gap);
    transform: none !important;
    padding: 0 var(--oxy-thumb-safe);
  }

  body .oxy-product-gallery__thumb {
    width: var(--oxy-thumb-size);
    height: var(--oxy-thumb-size);
    flex: 0 0 var(--oxy-thumb-size);
    border-radius: 16px !important;
  }

  body .oxy-product-gallery__thumb img {
    border-radius: 11px;
  }

  body .oxy-product-gallery__arrow {
    display: none;
  }
}
