
.info-title_wrapper,
.submenunav_wrapper_bottom,
.info-panel-wrapper {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#viewer {
    width: 100%;
    height: 100svh;
    object-fit: cover;
}

#preloader-txt {
    transition: opacity 0.5s ease;
    opacity: 0;
}

.submenunav_wrapper {
    display: none;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.submenunav_wrapper.show {
    display: flex;
    transform: scaleY(1);
    opacity: 1;
}

.submenu_item {
    display: none;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.5s ease;
    pointer-events: none;
}

.submenu_item.visible {
    display: flex;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.submenu_item_img {
    transition: box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.submenu_item_img:not(.price-below-filter) {
    transform: scale(1);
}

.subemnu_item_img_active {
    box-shadow: 0 0 0 1px #ff00cc;
    transform: scale(1.05);
}

html,
body {
    height: 100dvh;
    overflow: hidden;
}


.info-panel-header {
    user-select: none;
}


.info-panel-wrapper {
    display: none;
    transition: opacity 1s ease, max-height 0.4s ease;
    opacity: 0;
    overflow: hidden;
}

.info-panel-wrapper.show {
    display: flex;
    opacity: 1;
}

.info-panel-wrapper.collapsed {
    max-height: 50px;
}

.info-video {
  height: 220px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .info-video {
    width: 120px;
    height: 120px;
  }
}



.slider-button-container {
    width: 35px;
    height: 35px;
    background: linear-gradient(to right, #ff002d, #500084);
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: width 0.4s ease, border-radius 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-button-container.expanded {
    width: 150px;
    border-radius: 999px;
}

.slider-icon {
    width: 15px;
    transition: opacity 0.3s ease;
    padding-top: 2px;
    object-fit: contain;
}

.slider-button-container.expanded .slider-icon {
    opacity: 0;
    pointer-events: none;
}

.slider-button-container:not(.expanded) .slider-icon {
    opacity: 1;
    pointer-events: auto;
}

.slider-button-container.value-set .slider-icon {
    opacity: 0;
    pointer-events: none;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 32px;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease 0.2s;
}

.slider-button-container.expanded .range-slider {
    opacity: 1;
    pointer-events: auto;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background: linear-gradient(to right, #ff002d, #500084);
    cursor: pointer;
    border: none;
    margin-top: 0;
    transition: background 0.3s ease;
}

.range-slider::-moz-range-thumb {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background: linear-gradient(to right, #ff002d, #500084);
    cursor: pointer;
    border: none;
}

.slider-value {
    position: absolute;
    color: white;
    font-size: 10px;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.slider-button-container.expanded .slider-value,
.slider-button-container.value-set .slider-value {
    opacity: 1;
}

.price-below-filter {
    
    outline-offset: 3px;
    transform: scale(1.02);
    opacity: 1;
}

.filtered-out {
    opacity: 0.3 !important;
    pointer-events: none !important; 
}

@keyframes pulse-opacity {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.loading-disable {
    animation: pulse-opacity 1.2s ease-in-out infinite both;
    animation-delay: 0.2s;
    pointer-events: none !important;
}

.submenu_item.loading-disable:nth-child(1) {
  animation-delay: 0s;
}
.submenu_item.loading-disable:nth-child(2) {
  animation-delay: 0.15s;
}
.submenu_item.loading-disable:nth-child(3) {
  animation-delay: 0.3s;
}
.submenu_item.loading-disable:nth-child(4) {
  animation-delay: 0.45s;
}
.submenu_item.loading-disable:nth-child(5) {
  animation-delay: 0.6s;
}
.submenu_item.loading-disable:nth-child(6) {
  animation-delay: 0.75s;
}
.submenu_item.loading-disable:nth-child(7) {
  animation-delay: 0.9s;
}
.submenu_item.loading-disable:nth-child(8) {
  animation-delay: 1.05s;
}

#tutorial-title {
    color: black;
}

#tutorial-text {
    color: black;
}

.info-h3-button {
  background: -webkit-linear-gradient(135deg, #ff002d, #500084);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




#specs-button,
#examples-button,
#pricing-button,
#designers-button {
    opacity: 0.5;
    transition: opacity 0.3s ease;
    cursor: pointer; 
}


#specs-button.active-tab-button,
#examples-button.active-tab-button,
#pricing-button.active-tab-button,
#designers-button.active-tab-button {
    opacity: 1;
}



#specs-wrapper, #examples-wrapper, #pricing-wrapper, #designers-wrapper {
    display: block; 
    opacity: 0;
    max-height: 0; 
    overflow: hidden; 
    
    transition: opacity 0.3s ease;
}


#specs-wrapper.active-tab-content,
#examples-wrapper.active-tab-content,
#pricing-wrapper.active-tab-content,
#designers-wrapper.active-tab-content {
    opacity: 1;
    max-height: 1000px; 
    
    transition: opacity 0.3s ease;
}

#preloader-heading {
  background: -webkit-linear-gradient(135deg, #ff002d, #500084);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader-button {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
  background-image: linear-gradient(135deg, #ff002d, #500084, #ff002d, #500084);
  background-size: 400% 400%;
  transition: opacity 0.3s ease, cursor 0.3s ease, background-position 0.5s ease;
}

.preloader-button.ready {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

.preloader-button.ready:hover {
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 1);
  color: black;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.slider-prev {
  left: 15px;
}

.slider-next {
  right: 15px;
}

.slider-nav.disabled {
  opacity: 0.5;
  cursor: default;
}


.slider-icon {
  position: absolute;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.prev-icon {
  left: 11px;
}

.next-icon {
  left: 14px;
}

.slider-nav:hover .slider-icon {
  transform: scale(1.1);
}


.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(0 0 0 / 62%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.overlay-image {
  max-width: 95%;
  max-height: 95%;
  height: initial;
  width: initial;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  cursor: pointer;
  object-fit: unset;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.overlay-video {
  max-width: 95%;
  max-height: 95%;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  cursor: pointer;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.overlay-image.show,
.overlay-video.show {
  opacity: 1;
  transform: scale(1);
}


.image-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: visible; 
}

.image-slides-container {
  display: flex;
  transition: transform 0.3s ease;
  overflow: hidden; 
}

.image-slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.image-slide img,
.image-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.slider-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s ease;
}

.slider-dot.active {
  background: rgba(255, 255, 255, 1);
}


.submenunav_wrapper_toggle {
  grid-column-gap: 5px; 
}

.submenunav_wrapper_toggle.price-slider-visible {
  grid-column-gap: 8px; 
}

/* Prinfo Popup Styles */
.prinfo-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prinfo-popup {
  background: white;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  max-width: 60vw;
  max-height: 90vh;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  overflow: auto;
}

.prinfo-popup img {
  max-width: 100%;
  max-height: calc(90vh - 40px);
  display: block;
  border-radius: 8px;
  margin: 0 auto;
}

.prinfo-popup button {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.prinfo-popup button:hover {
  background-color: #f0f0f0;
  color: #333;
}

.info-priceuponrequest {
  display: none
}