@charset "UTF-8";
/* ==========================================================
   TABLE OF CONTENTS
   ----------------------------------------------------------
   1. CSS Variables (Theme Colors)
   2. Main Gallery Wrapper & Layout Base
   3. Sale Badge & Play Icon
   4. Preview Slider Container (Main Slider)
   5. Preview Slider – Product Image & Zoom
   6. Preview Slider – Lightbox & Video
   7. Preview Slider – Navigation Arrows
   8. Thumbnail Slider Container
   9. Thumbnail Slider – Navigation
   10. Gallery Layout Variations (Thumbs / Carousel)
   11. Fancybox & Lightbox Overrides
   12. 360 Degree Product Popup
   13. 360 Degree Viewer & Navigation
   14. 360 Degree Button & Tooltip
   15. 360 Degree Loader & Spinner
   16. Slider Hover Behaviors
   17. Slider Pagination Styles
   18. Zoom Feature Styles
   19. Grid Layout Styles
   20. Carousel One Layout Adjustments
   21. Sticky Elements & Wrapper Helpers
   22. Accessibility & Utility Classes
   23. Media Queries
========================================================== */
/* =====================================================
   1. CSS Variables (Theme Colors)
===================================================== */
:root {
  --esqv-post-popup-bg: #fff;
  --esqv-title-color: #2C3C28;
  --esqv-primary-color: #629d23;
  --esqv-slider-btn-color: #2C3C28;
  --esqv-text-color: #6E777D;
}

/* =====================================================
   2. Main Gallery Wrapper & Layout Base
===================================================== */
.eapgy-easy-woo-gallery-image-area {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50%;
  float: left;
  /* =====================================================
  3. Sale Badge & Play Icon
  ===================================================== */
}
.eapgy-easy-woo-gallery-image-area span.onsale {
  z-index: 2 !important;
  padding: 0;
  font-size: 13px;
  min-height: 40px;
  min-width: 40px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  top: 10px !important;
  left: 10px !important;
}
.eapgy-easy-woo-gallery-image-area .figure {
  display: inline-block;
}
.eapgy-easy-woo-gallery-image-area .play-icon {
  height: 45px;
  width: 45px;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
}
.eapgy-easy-woo-gallery-image-area {
  /* =====================================================
  4. Preview Slider Container (Main Slider)
  ===================================================== */
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: all 1.2s;
  height: auto;
  margin-bottom: 15px;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper {
  height: 466px;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container {
  /* =====================================================
  5. Preview Slider – Product Image & Zoom
  ===================================================== */
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb {
  border: 1px solid #f1f1f1;
  border-radius: 6px;
  background-size: 150%;
  box-sizing: border-box;
  overflow: hidden;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb img {
  transition: opacity 0.5s;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb.zoom-on-mousemove img {
  cursor: url("../img/plus-cursor.png"), auto;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb .play-icon {
  height: 75px;
  width: 75px;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb .play-icon.position-top_left {
  right: unset;
  left: 10px;
  top: 10px;
  transform: unset;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb .play-icon.position-top_right {
  left: unset;
  top: 10px;
  right: 10px;
  transform: unset;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb .play-icon.position-bottom_left {
  top: unset;
  right: unset;
  bottom: 10px;
  left: 10px;
  transform: unset;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb .play-icon.position-bottom_right {
  top: unset;
  left: unset;
  bottom: 10px;
  right: 10px;
  transform: unset;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb .play-icon.position-middle {
  top: 50%;
  left: 50%;
  right: unset;
  transform: translate(-50%, -50%);
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb {
  /* =====================================================
  6. Preview Slider – Lightbox & Video
  ===================================================== */
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb .eapgy-woglry-lightbox-trigger {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 40px;
  width: 40px;
  padding: 0;
  background: #fff;
  border: none;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  overflow: hidden;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb .eapgy-woglry-lightbox-trigger.position-top_left {
  right: unset;
  left: 10px;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb .eapgy-woglry-lightbox-trigger.position-bottom_left {
  top: unset;
  right: unset;
  bottom: 10px;
  left: 10px;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb .eapgy-woglry-lightbox-trigger.position-bottom_right {
  top: unset;
  left: unset;
  bottom: 10px;
  right: 10px;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb .eapgy-woglry-lightbox-trigger.position-middle {
  top: 50%;
  left: 50%;
  right: unset;
  transform: translate(-50%, -50%);
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb .lightbox-contents {
  display: block;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb [data-fancybox=gallery] {
  display: inline;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb .inline-contents {
  display: block !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .product-thumb .inline-contents iframe {
  width: auto;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container {
  /* =====================================================
  7. Preview Slider – Navigation Arrows
  ===================================================== */
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-next,
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-prev {
  transition: 0.4s all;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-next:focus,
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-prev:focus {
  outline: none;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-next::after,
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-prev::after {
  font-size: 14px;
  color: var(--esqv-slider-btn-color);
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-next:hover,
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-prev:hover {
  background: rgba(17, 17, 17, 0.6705882353);
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-next:hover::after,
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-prev:hover::after {
  font-size: 14px;
  color: #fff;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-prev {
  left: 0;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-next {
  right: 0;
}
.eapgy-easy-woo-gallery-image-area {
  /* =====================================================
  8. Thumbnail Slider Container
  ===================================================== */
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container {
  position: relative;
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper {
  width: 100%;
  height: 100%;
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper .swiper-wrapper .swiper-slide {
  width: 25%;
  height: 100%;
  margin-bottom: 0;
  opacity: 40%;
  cursor: pointer;
  transition: opacity 0.5;
  border-radius: 4px;
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper .swiper-wrapper .swiper-slide.active, .eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper .swiper-wrapper .swiper-slide .image-caption {
  position: absolute;
  z-index: 2;
  top: 50%;
  font-size: initial;
  background: #222;
  color: #fff;
  border-radius: 3px;
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container {
  /* =====================================================
  9. Thumbnail Slider – Navigation
  ===================================================== */
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-next,
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-prev {
  transition: 0.4s all;
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-next:focus,
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-prev:focus {
  outline: none;
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-next::after,
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-prev::after {
  font-size: 14px;
  color: var(--esqv-slider-btn-color);
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-next:hover,
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-prev:hover {
  background: rgba(17, 17, 17, 0.6705882353);
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-next:hover::after,
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-prev:hover::after {
  font-size: 14px;
  color: #fff;
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-prev {
  left: 0;
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-next {
  right: 0;
}
.eapgy-easy-woo-gallery-image-area {
  /* =====================================================
  10. Gallery Layout Variations (Thumbs / Carousel)
  ===================================================== */
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_left .easy-product-gallery-preview-slider-container, .eapgy-easy-woo-gallery-image-area.layout-thumbs_right .easy-product-gallery-preview-slider-container, .eapgy-easy-woo-gallery-image-area.layout-carousel_one .easy-product-gallery-preview-slider-container {
  width: calc(100% - 100px);
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_left .eapgy-thumb-slider-container, .eapgy-easy-woo-gallery-image-area.layout-thumbs_right .eapgy-thumb-slider-container, .eapgy-easy-woo-gallery-image-area.layout-carousel_one .eapgy-thumb-slider-container {
  height: 467px;
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_left .eapgy-thumb-slider-container .swiper-wrapper, .eapgy-easy-woo-gallery-image-area.layout-thumbs_right .eapgy-thumb-slider-container .swiper-wrapper, .eapgy-easy-woo-gallery-image-area.layout-carousel_one .eapgy-thumb-slider-container .swiper-wrapper {
  width: 100%;
  flex-direction: column;
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_left .eapgy-thumb-slider-container .swiper-wrapper .swiper-slide, .eapgy-easy-woo-gallery-image-area.layout-thumbs_right .eapgy-thumb-slider-container .swiper-wrapper .swiper-slide, .eapgy-easy-woo-gallery-image-area.layout-carousel_one .eapgy-thumb-slider-container .swiper-wrapper .swiper-slide {
  width: 100% !important;
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_left .eapgy-thumb-slider-container .swiper-nav-button, .eapgy-easy-woo-gallery-image-area.layout-thumbs_right .eapgy-thumb-slider-container .swiper-nav-button, .eapgy-easy-woo-gallery-image-area.layout-carousel_one .eapgy-thumb-slider-container .swiper-nav-button {
  left: 50% !important;
  transform: translateX(-50%);
  height: 20px;
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_left .eapgy-thumb-slider-container .swiper-nav-button::after, .eapgy-easy-woo-gallery-image-area.layout-thumbs_right .eapgy-thumb-slider-container .swiper-nav-button::after, .eapgy-easy-woo-gallery-image-area.layout-carousel_one .eapgy-thumb-slider-container .swiper-nav-button::after {
  rotate: 90deg;
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_left .eapgy-thumb-slider-container .swiper-nav-button.swiper-button-prev, .eapgy-easy-woo-gallery-image-area.layout-thumbs_right .eapgy-thumb-slider-container .swiper-nav-button.swiper-button-prev, .eapgy-easy-woo-gallery-image-area.layout-carousel_one .eapgy-thumb-slider-container .swiper-nav-button.swiper-button-prev {
  top: 22px;
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_left .eapgy-thumb-slider-container .swiper-nav-button.swiper-button-next, .eapgy-easy-woo-gallery-image-area.layout-thumbs_right .eapgy-thumb-slider-container .swiper-nav-button.swiper-button-next, .eapgy-easy-woo-gallery-image-area.layout-carousel_one .eapgy-thumb-slider-container .swiper-nav-button.swiper-button-next {
  bottom: 0;
  top: unset;
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_left, .eapgy-easy-woo-gallery-image-area.layout-carousel_one {
  flex-direction: row-reverse;
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_left .onsale, .eapgy-easy-woo-gallery-image-area.layout-carousel_one .onsale {
  left: 10px !important;
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_left .eapgy-thumb-slider-container, .eapgy-easy-woo-gallery-image-area.layout-carousel_one .eapgy-thumb-slider-container {
  margin-right: 10px;
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_left .eapgy-thumb-slider-container .image-caption, .eapgy-easy-woo-gallery-image-area.layout-carousel_one .eapgy-thumb-slider-container .image-caption {
  right: 0;
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_right {
  flex-direction: row;
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_right .eapgy-thumb-slider-container {
  margin-left: 10px;
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_top {
  flex-direction: column-reverse;
}
.eapgy-easy-woo-gallery-image-area.layout-thumbs_top .eapgy-thumb-slider-container {
  margin-bottom: 10px;
}

/* =====================================================
11. Fancybox & Lightbox Overrides
===================================================== */
.fancybox__toolbar {
  display: flex !important;
  visibility: visible !important;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
}

.f-thumbs.fancybox__thumbs {
  background: rgba(0, 0, 0, 0.8);
}

/* =====================================================
12. 360 Degree Product Popup
===================================================== */
#eapgy-product-360-view {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.eapgy-360-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.eapgy-360-popup-content {
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 5vh auto;
  background: #fff;
  border-radius: 6px;
  padding: 0;
  z-index: 2;
}

.eapgy-360-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

body.eapgy-360-open {
  overflow: hidden;
}

/* =====================================================
13. 360 Degree Viewer & Navigation
===================================================== */
.eapgy-threed-view {
  position: relative;
  width: 100%;
  text-align: center;
}

.eapgy-threed-view-images {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eapgy-threed-view-images li {
  display: none;
}

.eapgy-threed-view-images li.current-image {
  display: block;
}

.eapgy-threed-view-images img {
  max-width: 100%;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.eapgy-nav-bar {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 15px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.eapgy-nav-bar a {
  padding: 6px 14px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 13px;
  text-transform: uppercase;
}

.eapgy-nav-bar a:hover {
  background: #333;
}

.eapgy-nav-bar-play.playing {
  background: #d63638;
}

.eapgy-360-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  color: #e53935;
  z-index: 999;
  transition: all 0.25s ease;
}

.eapgy-360-close:focus {
  outline: none;
}

/* =====================================================
14. 360 Degree Button & Tooltip
===================================================== */
.eapgy-product-360-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.eapgy-product-360-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0073aa;
  color: #fff;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.eapgy-product-360-button a:hover {
  background-color: #005177;
}

.eapgy-product-360-button a:focus {
  outline: none;
}

.eapgy-threed-view {
  background-color: #fff;
}

.eapgy-360-icon::before {
  content: "\f102";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  display: inline-block;
}

.eapgy-360-tooltip {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  pointer-events: none;
}

.eapgy-360-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.eapgy-product-360-button a:hover .eapgy-360-tooltip {
  opacity: 1;
  visibility: visible;
}

.eapgy-threed-view-images img {
  width: 100%;
}

/*360 degree gallery view*/
.eapgy-360-view-thumbnail {
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 500px;
}

.eapgy-threed-view-images img {
  width: 100%;
  display: block;
}

.cloudimage-360-inner-box canvas {
  display: block;
}

/* =====================================================
15. 360 Degree Loader & Spinner
===================================================== */
.eapgy-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  border-radius: 5px;
  display: none;
  z-index: 1000;
}

.eapgy-360-view-thumbnail {
  position: relative;
}

.eapgy-360-view-thumbnail.loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" style="margin:auto;background:none;display:block;" width="50px" height="50px" viewBox="0 0 100 100"><circle cx="50" cy="50" r="35" stroke="%23999" stroke-width="10" fill="none"/><circle cx="50" cy="50" r="35" stroke="%23333" stroke-width="10" fill="none" stroke-dasharray="164.93361431346415 56.97787143782138"><animateTransform attributeName="transform" type="rotate" repeatCount="indefinite" dur="1s" values="0 50 50;360 50 50" keyTimes="0;1"/></circle></svg>') no-repeat center center;
  background-size: 30px 30px;
  z-index: 999;
}

.eapgy-nav-bar a:focus {
  outline: none;
}

.easy-product-gallery-preview-slider-container .swiper-button-prev,
.easy-product-gallery-preview-slider-container .swiper-button-next {
  width: 35px;
  height: 35px;
}

.easy-product-gallery-preview-slider-container.vertical .swiper-button-prev,
.easy-product-gallery-preview-slider-container.vertical .swiper-button-next {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  margin-top: 0;
}

.easy-product-gallery-preview-slider-container.vertical .swiper-button-prev {
  top: 0;
  bottom: auto;
}

.easy-product-gallery-preview-slider-container.vertical .swiper-button-next {
  bottom: 0;
  top: auto;
}

.easy-product-gallery-preview-slider-container.vertical .swiper-button-prev,
.easy-product-gallery-preview-slider-container.vertical .swiper-button-next {
  transform: rotate(90deg);
}

/* =====================================================
16. Slider Hover Behaviors
===================================================== */
.eapgy-thumb-slider-container.onhover .swiper-nav-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.eapgy-thumb-slider-container.onhover:hover .swiper-nav-button {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.easy-product-gallery-preview-slider-container.onhover .swiper-nav-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.easy-product-gallery-preview-slider-container.onhover:hover .swiper-nav-button {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.easy-product-gallery-preview-slider-container.pagination-onhover .swiper-pagination {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.easy-product-gallery-preview-slider-container.pagination-onhover:hover .swiper-pagination {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =====================================================
17. Slider Pagination Styles
===================================================== */
.easy-product-gallery-preview-slider-container .swiper-pagination .swiper-pagination-bullet:focus {
  outline: none;
}

.easy-product-gallery-preview-slider-container.dot_style .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  opacity: 1;
  transition: all 0.25s ease;
  cursor: pointer;
  line-height: 1;
}

.easy-product-gallery-preview-slider-container .swiper-pagination-bullet {
  background-color: var(--eapgy-pagination-bg, #c1b4b4) !important;
  color: var(--eapgy-pagination-text, #555) !important;
  opacity: 1 !important;
}
.easy-product-gallery-preview-slider-container .swiper-pagination-bullet-active, .easy-product-gallery-preview-slider-container .swiper-pagination-bullet:hover {
  background-color: var(--eapgy-pagination-bg-active, #000) !important;
  color: var(--eapgy-pagination-text-active, #fff) !important;
  font-weight: 600;
  transform: scale(1.05);
}

.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-prev,
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-next {
  background: var(--eapgy-nav-bg, #8224e3) !important;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-prev:after,
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-next:after {
  color: var(--eapgy-nav-color, #ffffff) !important;
  font-size: var(--eapgy-nav-icon-size, 18px) !important;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-prev:hover,
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-next:hover {
  background: var(--eapgy-nav-hover-bg, #dd3333) !important;
}
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-prev:hover:after,
.eapgy-easy-woo-gallery-image-area .easy-product-gallery-preview-slider-container .swiper-button-next:hover:after {
  color: var(--eapgy-nav-hover-color, #ffffff) !important;
  font-size: var(--eapgy-nav-icon-size, 18px) !important;
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-prev,
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-next {
  background: var(--eapgy-t-nav-bg, #8224e3) !important;
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-prev:after,
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-next:after {
  color: var(--eapgy-t-nav-color, #ffffff) !important;
  font-size: var(--eapgy-thumb-nav-icon-size, 18px) !important;
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-prev:hover,
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-next:hover {
  background: var(--eapgy-t-nav-hover-bg, #dd3333) !important;
}
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-prev:hover:after,
.eapgy-easy-woo-gallery-image-area .eapgy-thumb-slider-container .swiper-button-next:hover:after {
  color: var(--eapgy-t-nav-hover-color, #ffffff) !important;
  font-size: var(--eapgy-thumb-nav-icon-size, 18px) !important;
}

.easy-product-gallery-preview-slider-container.vertical.bullet-right .swiper-pagination {
  left: auto;
  right: 10px;
}

.easy-product-gallery-preview-slider-container.horizontal.bullet-top .swiper-pagination {
  bottom: auto;
  top: 10px;
}

#gallery_01 img {
  border: 2px solid white;
}

#gallery_01.active img {
  border: 2px solid #333 !important;
}

/* =====================================================
18. Zoom Feature Styles
===================================================== */
.zoom-left {
  max-width: 412px;
}

.zoomWindow {
  border-radius: 8px;
}

.zoomContainer {
  z-index: 3;
}

.easy-product-gallery-preview-slider-container .swiper-nav-button,
.easy-product-gallery-preview-slider-container .swiper-button-prev,
.easy-product-gallery-preview-slider-container .swiper-button-next {
  position: absolute;
  z-index: 20;
}

.easy-product-gallery-preview-slider-container.onhover .swiper-nav-button,
.easy-product-gallery-preview-slider-container.onhover .swiper-pagination {
  z-index: 25;
}

.easy-product-gallery-preview-slider-container .swiper-pagination-bullet {
  width: auto;
  height: 24px;
  min-width: 24px;
  border-radius: 6px;
  background: #c5c2c2;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  opacity: 1;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 12px;
}

.easy-product-gallery-preview-slider-container .swiper-pagination-bullet:hover {
  background: #f5f5f5;
  border-color: #bbb;
  color: #222;
}

.easy-product-gallery-preview-slider-container .swiper-pagination-bullet-active {
  background: #111;
  border-color: #111;
  color: #fff;
  font-weight: 600;
}

.easy-product-gallery-preview-slider-container .swiper-pagination-bullet:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.eapgy-easy-woo-gallery-image-area.layout-thumbs_left.eapgy-not-found-gallery .easy-product-gallery-preview-slider-container,
.eapgy-easy-woo-gallery-image-area.layout-thumbs_right.eapgy-not-found-gallery .easy-product-gallery-preview-slider-container,
.eapgy-easy-woo-gallery-image-area.layout-carousel_one.eapgy-not-found-gallery .easy-product-gallery-preview-slider-container {
  width: 100%;
}

.easy-product-gallery-preview-slider-container.bullet-top .swiper-pagination.swiper-pagination-progressbar {
  top: 0;
}
.easy-product-gallery-preview-slider-container.bullet-bottom .swiper-pagination.swiper-pagination-progressbar {
  bottom: 0;
  top: auto;
}
.easy-product-gallery-preview-slider-container.bullet-right .swiper-pagination.swiper-pagination-progressbar {
  right: 0;
}
.easy-product-gallery-preview-slider-container .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  border-radius: 50%;
}
.easy-product-gallery-preview-slider-container .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
  transform: scale(0.7);
}
.easy-product-gallery-preview-slider-container .swiper-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet:hover {
  transform: scale(0.7);
}

/* =====================================================
19. Grid Layout Styles
===================================================== */
.eapgy-easy-woo-gallery-image-area.layout-carousel_two .swiper-slide-thumb-active img {
  border: 2px solid #215ADA;
  border-radius: 4px;
}
.eapgy-easy-woo-gallery-image-area.layout-carousel_two .eapgy-woglry-lightbox-trigger,
.eapgy-easy-woo-gallery-image-area.layout-carousel_two .eapgy-product-360-button {
  opacity: 0;
  visibility: hidden;
}
.eapgy-easy-woo-gallery-image-area.layout-carousel_two .easy-product-gallery-preview-slider-container .swiper-slide:hover .eapgy-woglry-lightbox-trigger,
.eapgy-easy-woo-gallery-image-area.layout-carousel_two .easy-product-gallery-preview-slider-container .swiper-slide:hover .eapgy-product-360-button {
  opacity: 1;
  visibility: visible;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_2_2 .eapgy-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_2_2 .eapgy-woglry-lightbox-trigger,
.eapgy-easy-woo-gallery-image-area.layout-grid_1_2_2 .eapgy-product-360-button {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_2_2 .eapgy-gallery-grid-item {
  position: relative;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_2_2 .eapgy-gallery-grid-item:hover .eapgy-woglry-lightbox-trigger,
.eapgy-easy-woo-gallery-image-area.layout-grid_1_2_2 .eapgy-gallery-grid-item:hover .eapgy-product-360-button {
  opacity: 1;
  visibility: visible;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_2_2 .eapgy-gallery-grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_2_2 .eapgy-gallery-grid-item:nth-child(1) {
  grid-column: 1/-1;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_2_2_2 .eapgy-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_2_2_2 .eapgy-woglry-lightbox-trigger,
.eapgy-easy-woo-gallery-image-area.layout-grid_2_2_2 .eapgy-product-360-button {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_2_2_2 .eapgy-gallery-grid-item {
  position: relative;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_2_2_2 .eapgy-gallery-grid-item:hover .eapgy-woglry-lightbox-trigger,
.eapgy-easy-woo-gallery-image-area.layout-grid_2_2_2 .eapgy-gallery-grid-item:hover .eapgy-product-360-button {
  opacity: 1;
  visibility: visible;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_2_2_2 .eapgy-gallery-grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_1_1 .eapgy-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_1_1 .eapgy-woglry-lightbox-trigger,
.eapgy-easy-woo-gallery-image-area.layout-grid_1_1_1 .eapgy-product-360-button {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_1_1 .eapgy-gallery-grid-item {
  position: relative;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_1_1 .eapgy-gallery-grid-item:hover .eapgy-woglry-lightbox-trigger,
.eapgy-easy-woo-gallery-image-area.layout-grid_1_1_1 .eapgy-gallery-grid-item:hover .eapgy-product-360-button {
  opacity: 1;
  visibility: visible;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_1_1 .eapgy-gallery-grid-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_3_2_1_1 .eapgy-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_3_2_1_1 .eapgy-woglry-lightbox-trigger,
.eapgy-easy-woo-gallery-image-area.layout-grid_1_3_2_1_1 .eapgy-product-360-button {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_3_2_1_1 .eapgy-gallery-grid-item {
  position: relative;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_3_2_1_1 .eapgy-gallery-grid-item:hover .eapgy-woglry-lightbox-trigger,
.eapgy-easy-woo-gallery-image-area.layout-grid_1_3_2_1_1 .eapgy-gallery-grid-item:hover .eapgy-product-360-button {
  opacity: 1;
  visibility: visible;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_3_2_1_1 .eapgy-gallery-grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_3_2_1_1 .eapgy-gallery-grid-item:nth-child(1) {
  grid-column: 1/-1;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_3_2_1_1 .eapgy-gallery-grid-item:nth-child(2),
.eapgy-easy-woo-gallery-image-area.layout-grid_1_3_2_1_1 .eapgy-gallery-grid-item:nth-child(3),
.eapgy-easy-woo-gallery-image-area.layout-grid_1_3_2_1_1 .eapgy-gallery-grid-item:nth-child(4) {
  grid-column: span 2;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_3_2_1_1 .eapgy-gallery-grid-item:nth-child(5),
.eapgy-easy-woo-gallery-image-area.layout-grid_1_3_2_1_1 .eapgy-gallery-grid-item:nth-child(6) {
  grid-column: span 3;
}
.eapgy-easy-woo-gallery-image-area.layout-grid_1_3_2_1_1 .eapgy-gallery-grid-item:nth-child(n+7) {
  grid-column: 1/-1;
}
.eapgy-easy-woo-gallery-image-area {
  /* =====================================================
  20. Carousel One Layout Adjustments
  ===================================================== */
}
.eapgy-easy-woo-gallery-image-area.layout-carousel_one .eapgy-thumb-slider-container {
  position: sticky !important;
  top: 100px;
}
.eapgy-easy-woo-gallery-image-area.layout-carousel_one .eapgy-woglry-lightbox-trigger,
.eapgy-easy-woo-gallery-image-area.layout-carousel_one .eapgy-product-360-button {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.eapgy-easy-woo-gallery-image-area.layout-carousel_one .easy-product-gallery-preview-slider-container .swiper-slide:hover .eapgy-woglry-lightbox-trigger,
.eapgy-easy-woo-gallery-image-area.layout-carousel_one .easy-product-gallery-preview-slider-container .swiper-slide:hover .eapgy-product-360-button {
  opacity: 1;
  visibility: visible;
}

.eapgy-woo-gallery-main-wrapper.eapgy-layout-slider-one {
  display: flex;
  justify-content: space-between;
}
.eapgy-woo-gallery-main-wrapper.eapgy-layout-slider-one .eapgy-swiper {
  height: 1545px;
}

.wp-block-column .eapgy-easy-woo-gallery-image-area {
  width: 100%;
}

/* =====================================================
21. Sticky Elements & Wrapper Helpers
===================================================== */
.eapgy-inner-wrapper-summary {
  position: sticky;
  top: 80px;
}

.eapgy-easy-woo-gallery-image-area.layout-carousel_one .easy-product-gallery-preview-slider-container {
  height: auto;
}
.eapgy-easy-woo-gallery-image-area.layout-carousel_one .easy-product-gallery-preview-slider-container .swiper {
  height: auto;
  overflow: visible;
}
.eapgy-easy-woo-gallery-image-area.layout-carousel_one .easy-product-gallery-preview-slider-container .swiper .swiper-wrapper {
  transform: none !important;
  display: block;
}
.eapgy-easy-woo-gallery-image-area.layout-carousel_one .easy-product-gallery-preview-slider-container .swiper .swiper-wrapper .swiper-slide {
  height: auto !important;
  width: 100% !important;
  margin-bottom: 24px;
}
.eapgy-easy-woo-gallery-image-area.layout-carousel_one .eapgy-thumb-slider-container .swiper-slide {
  overflow: hidden;
  box-sizing: border-box;
}
.eapgy-easy-woo-gallery-image-area.layout-carousel_one .eapgy-thumb-slider-container .swiper-slide-thumb-active img {
  border: 2px solid #215ADA;
  box-sizing: border-box;
}

.has-iframe .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

/* =====================================================
22. Accessibility & Utility Classes
===================================================== */
.clearfix {
  display: block;
  width: 100%;
  float: left;
}

/* =====================================================
23. Media Queries
===================================================== */
@media (max-width: 991px) {
  .eapgy-easy-woo-gallery-image-area.video-hide-on-mobile .play-icon {
    display: none;
  }
}
@media (max-width: 767px) {
  .zoomContainer {
    display: none;
  }
}