@charset "UTF-8";
/* ============================================================
   5werk Product Gallery – Single Product Page
   Extreme SCSS Nesting Version
   ============================================================ */
.fwerk-modal button svg,
.fwerk-gallery button svg {
  inline-size: 1.5em;
  translate: unset;
}

.fwerk-gallery {
  position: relative;
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
  user-select: none;
  -webkit-user-select: none;
}
.fwerk-gallery.is-ready {
  opacity: 1 !important;
}
.fwerk-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: visible;
  border-radius: 0.5rem;
  cursor: pointer;
}
.fwerk-gallery__main:hover .fwerk-gallery__arrow,
.fwerk-gallery__main:hover .fwerk-gallery__zoom {
  opacity: 1;
}
.fwerk-gallery__main .fwerk-3d-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: 0.5rem;
}
.fwerk-gallery__main .fwerk-3d-hidden {
  visibility: hidden !important;
}
.fwerk-gallery__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}
.fwerk-gallery__track {
  display: flex;
  height: 100%;
  width: 100%;
  gap: 1rem;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
  will-change: transform;
}
.fwerk-gallery__slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  box-sizing: border-box;
}
.fwerk-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 1.5rem;
}
.fwerk-gallery__video {
  object-fit: cover;
}
.fwerk-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  cursor: pointer;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.12);
  transition: background 0.2s, transform 0.15s, opacity 0.2s;
  opacity: 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}
.fwerk-gallery__arrow:focus-visible {
  opacity: 1;
}
.fwerk-gallery__arrow:hover {
  background: #fff;
}
.fwerk-gallery__arrow--prev {
  left: -3rem;
}
.fwerk-gallery__arrow--next {
  right: -3rem;
}
.fwerk-gallery__zoom {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  cursor: pointer;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.1);
  transition: background 0.2s, opacity 0.2s;
  opacity: 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}
.fwerk-gallery__zoom:focus-visible {
  opacity: 1;
}
.fwerk-gallery__zoom:hover {
  background: #fff;
}
.fwerk-gallery__thumbs {
  margin-top: 0.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.fwerk-gallery__thumbs:active {
  cursor: grabbing;
}
.fwerk-gallery__thumbs::-webkit-scrollbar {
  display: none;
}
.fwerk-gallery__thumbs-track {
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem 0;
}
.fwerk-gallery__thumb {
  flex: 0 0 auto;
  width: 4.5rem;
  height: 4.5rem;
  padding: 0;
  border: 0.125rem solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.fwerk-gallery__thumb img,
.fwerk-gallery__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.fwerk-gallery__thumb:hover {
  border-color: rgba(0, 0, 0, 0.25);
}
.fwerk-gallery__thumb--active {
  border-color: #c7a787;
  box-shadow: 0 0 0 0.0625rem #c7a787;
}

body.fwerk-modal-open {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fwerk-modal {
  position: fixed;
  inset: 0;
  z-index: 99999999999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.fwerk-modal .fwerk-cube-control {
  display: none !important;
  transform: translateX(-50%) scale(0.75);
}
.fwerk-modal .fwerk-cube-control::before {
  background-color: #c7a787;
}
.fwerk-modal[aria-hidden=false] {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.fwerk-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}
.fwerk-modal__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  padding: 1rem 0.5rem;
  padding-bottom: 0.25rem;
  box-sizing: border-box;
}
.fwerk-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 3, 3, 0.5);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}
.fwerk-modal__close:hover {
  background: rgba(25, 25, 25, 0.85);
}
.fwerk-modal__viewport-wrap {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  max-width: 105rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.fwerk-modal__viewport {
  position: relative;
  width: 100%;
  max-width: 62.5rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 0;
  -webkit-user-select: none;
  user-select: none;
}
.fwerk-modal__track {
  display: flex;
  height: 100%;
  width: 100%;
  gap: 1rem;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
  will-change: transform;
}
.fwerk-modal__slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  box-sizing: border-box;
}
.fwerk-modal__slide img,
.fwerk-modal__slide video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 1.5rem;
}
.fwerk-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.5);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}
.fwerk-modal__arrow:hover {
  background: rgba(25, 25, 25, 0.85);
}
.fwerk-modal__arrow--prev {
  left: 1rem;
}
.fwerk-modal__arrow--next {
  right: 1rem;
}
.fwerk-modal__counter {
  display: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  text-align: center;
  min-height: 1.25rem;
}
.fwerk-modal__thumbs {
  margin-top: 0.5rem;
  overflow: visible;
  max-width: 105rem;
  width: auto;
}
.fwerk-modal__thumbs-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.fwerk-modal__thumb {
  flex: 0 0 7.5rem;
  padding: 0;
  aspect-ratio: 1/1;
  border: 0.125rem solid transparent;
  background: #1a1a1a;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.5;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 0.75rem;
}
.fwerk-modal__thumb img,
.fwerk-modal__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.fwerk-modal__thumb:hover {
  opacity: 0.8;
}
.fwerk-modal__thumb--active {
  border-color: #c7a787;
  opacity: 1;
}
.fwerk-modal__swatches {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
}
.fwerk-modal__swatches .fwerk-swatches {
  margin: 0;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.fwerk-modal__swatches .fwerk-swatch circle {
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}
.fwerk-modal__swatches button {
  background-color: #e5e5e514;
}
.fwerk-modal__swatches .fwerk-swatch--icon,
.fwerk-modal__swatches .fwerk-swatch--3d {
  display: none;
}

/* --- External Dependencies & Global Overrides --- */
.eltdf-single-product-content {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
}

body.fwerk-modal-open {
  overflow: hidden !important;
}

.fwerk-swatch--3d {
  opacity: 1 !important;
  cursor: pointer !important;
}
.fwerk-swatch--3d.fwerk-swatch--disabled {
  opacity: 1 !important;
  cursor: pointer !important;
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
  .fwerk-gallery {
    max-width: 100%;
  }
  .fwerk-gallery__main {
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
    aspect-ratio: auto;
    background: none;
  }
  .fwerk-gallery__viewport {
    flex: 0 0 100%;
    order: 0;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 0.5rem;
    display: block;
  }
  .fwerk-gallery__arrow {
    transform: none;
    order: 1;
    width: 2.25rem;
    height: 2.25rem;
    opacity: 1;
    margin-top: 0.5rem;
    flex: 0 0 auto;
  }
  .fwerk-gallery__arrow--prev {
    margin-right: auto;
  }
  .fwerk-gallery__arrow--next {
    margin-left: auto;
  }
  .fwerk-gallery__zoom {
    order: 1;
    opacity: 1;
    margin-top: 0.5rem;
    flex: 0 0 auto;
  }
  .fwerk-gallery__thumb {
    width: 3.5rem;
    height: 3.5rem;
  }

  .fwerk-modal__content {
    padding: 0.75rem;
  }
  .fwerk-modal__arrow {
    width: 2.375rem;
    height: 2.375rem;
  }
  .fwerk-modal__arrow--prev {
    left: -1.3rem;
  }
  .fwerk-modal__arrow--next {
    right: -1.3rem;
  }
  .fwerk-modal__thumbs-track {
    justify-content: center;
    max-height: none;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding-bottom: 0.5rem;
  }
  
  .fwerk-modal__thumb {
    flex: 0 0 5rem;
  }

  .fwerk-cube-control {
    display: none !important;
    transform: translateX(-50%) scale(0.5) !important;
  }
}
@media (max-height: 768px) {
  .fwerk-modal__thumbs-track button {
    flex: 0 0 2.5rem;
  }
  .fwerk-modal__swatches button {
    width: 2rem;
    height: 2rem;
  }
}
@keyframes fwerk-levitate {
  0% {
    transform: translate(25%, 0) scale(0.75);
  }
  50% {
    transform: translate(15%, 0) scale(0.75);
  }
  100% {
    transform: translate(25%, 0) scale(0.75);
  }
}
/* --- 3D Cube Control --- */
.fwerk-cube-control {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) scale(0.75);
  transform-origin: center bottom;
  width: 4.5rem;
  height: 4.5rem;
  perspective: 1200px;
  z-index: 10;
  cursor: grab;
  opacity: 0.8;
  transition: opacity 0.1s;
  display: none !important;
}
.fwerk-cube-control::before {
  content: " ";
  position: absolute;
  top: 60%;
  left: 50%;
  width: 125%;
  /* The original size */
  height: 125%;
  transform: translate(25%, 0);
  /* This color is your FILL color */
  background-color: #a78360;
  -webkit-mask: url(../img/touch-symbol.svg) no-repeat center/contain;
  mask: url(../img/touch-symbol.svg) no-repeat center/contain;
  opacity: 0.65;
  pointer-events: none;
  animation: fwerk-levitate 6s ease-in-out infinite;
  z-index: 11;
  /* Sit on top of the stroke */
}
.fwerk-cube-control:hover {
  opacity: 1;
}
.fwerk-cube-control:active {
  cursor: grabbing;
}

.fwerk-cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(-30deg);
  transition: transform 0.1s;
  animation: fwerk-spin-continuous 20s linear infinite;
  backface-visibility: hidden;
}
.fwerk-cube:hover {
  animation-play-state: paused;
}
.fwerk-cube__face {
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  background: transparent;
  border: 0.6rem solid #c7a787b8;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-font-smoothing: antialiased;
  outline: 1rem solid #fed4bd64;
  outline-offset: -1.75rem;
}
.fwerk-cube__face--front {
  transform: rotateY(0deg) translateZ(2.25rem);
}
.fwerk-cube__face--right {
  transform: rotateY(90deg) translateZ(2.25rem);
}
.fwerk-cube__face--back {
  transform: rotateY(180deg) translateZ(2.25rem);
}
.fwerk-cube__face--left {
  transform: rotateY(-90deg) translateZ(2.25rem);
}
.fwerk-cube__face--top {
  transform: rotateX(90deg) translateZ(2.25rem);
}
.fwerk-cube__face--bottom {
  transform: rotateX(-90deg) translateZ(2.25rem);
}

.fwerk-cube-control.is-hidden::after, .fwerk-cube-control.is-hidden::before {
  opacity: 0 !important;
  transition: opacity 0.2s ease;
}