.v14-popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.9);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999999;
  padding:20px;
  box-sizing:border-box;
}

.v14-content{
  position:relative;
  background:#fff;
  padding:20px;
  display:flex;
  gap:20px;
  width:90%;
  max-width:1000px;
  max-height:90vh;
  overflow:auto;
  box-sizing:border-box;
}

.v14-left{
  width:60%;
}

.v14-right{
  width:40%;
}

.v14-main-wrapper{
  position:relative;
}

.v14-main{
  width:100%;
  display:block;
}

.v14-close{
  position:absolute;
  top:10px;
  right:15px;
  border:0;
  background:transparent;
  font-size:34px;
  cursor:pointer;
  line-height:1;
  z-index:5;
}

.v14-title{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  color:#000 !important;
  font-size:32px;
  line-height:1.2;
  margin:0 0 10px;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  word-break:break-word;
}

.v14-cat{
  font-size:16px;
  color:#666;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Popup arrows */
.v14-popup .v14-prev,
.v14-popup .v14-next{
  all:unset;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:#000;
  font-size:24px;
  background:transparent !important;
  box-shadow:none !important;
  border:0 !important;
  z-index:2;
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
}

.v14-popup .v14-prev{
  left:10px;
}

.v14-popup .v14-next{
  right:10px;
}

.v14-main-wrapper:hover .v14-prev,
.v14-main-wrapper:hover .v14-next{
  opacity:1;
  visibility:visible;
}

/* Product card arrows */
.product .v14-card-prev,
.product .v14-card-next{
  all:unset !important;
  position:absolute !important;
  top:50% !important;
  transform:translateY(-50%) !important;
  width:30px !important;
  height:30px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  cursor:pointer !important;
  color:#000 !important;
  background:transparent !important;
  box-shadow:none !important;
  border:0 !important;
  outline:0 !important;
  font-size:20px !important;
  line-height:1 !important;
  z-index:50 !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  transition:opacity .25s ease, visibility .25s ease;
}

.product .v14-card-prev{
  left:10px !important;
}

.product .v14-card-next{
  right:10px !important;
}

/* Desktop: show only on hover */
@media(min-width:769px){
  .product-thumb:hover .v14-card-prev,
  .product-thumb:hover .v14-card-next,
  .woocommerce-loop-product__link:hover .v14-card-prev,
  .woocommerce-loop-product__link:hover .v14-card-next,
  a.woocommerce-LoopProduct-link:hover .v14-card-prev,
  a.woocommerce-LoopProduct-link:hover .v14-card-next,
  .product:hover .v14-card-prev,
  .product:hover .v14-card-next{
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }
}

/* Mobile/tablet: keep arrows visible because there is no reliable hover */
@media(max-width:768px){
  .product .v14-card-prev,
  .product .v14-card-next{
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }
}

.v14-card-prev::before,
.v14-card-next::before,
.v14-card-prev::after,
.v14-card-next::after,
.v14-prev::before,
.v14-next::before,
.v14-prev::after,
.v14-next::after{
  display:none !important;
  content:none !important;
}

.v14-thumbs{
  margin-top:10px;
}

.v14-thumbs img{
  width:60px;
  height:auto;
  margin:5px;
  cursor:pointer;
  border:1px solid #ddd;
}

@media(max-width:768px){
  .v14-content{
    flex-direction:column;
  }

  .v14-left,
  .v14-right{
    width:100%;
  }

  .v14-title{
    font-size:24px;
  }
}
