﻿@media (max-width: 992px) {
  .quickview-button {
    visibility: hidden;
  }
}

.quickviewmodal {
  display: none;
  position: fixed;
  z-index: 99;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 70%;
  overflow: auto;
  max-width: 900px;
  min-height: 380px;
  background-color: white;
  transform: translate(-50%, -50%);
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
  display: none;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 8px solid #f3f3f3;
  border-top: 8px solid var(--clr-primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.xzoom-preview,
.xzoom-source {
  z-index: 1002;
}

.picture-gallery {
  position: relative;
}

.product-item .picture {
  position: relative;
}

.picture-gallery .xzoom-thumbs .splide__pagination .splide__pagination__page {
  background: #4ab2f1;
}

.picture-gallery .xzoom-thumbs .splide__arrows .splide__arrow {
  background: #4ab2f1;
}

.quickviewdetails .overview .product-name {
  width: 95%;
}

.quickviewdetails .product-specs-box {
  margin: 0 0 24px;
}