.vc-product-video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.vc-product-video-popup.active {
    opacity: 1;
    visibility: visible;
}

.swiper {
    width: 100%;
    height: 100%;
    position: unset;
}

.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.swiper-slide-prev,
.swiper-slide-next {
    z-index: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    font-size: 40px;
    transition: 0.3s;
}

.swiper-button-next {
    right: -40px;
}

.swiper-button-prev {
    left: -40px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #ff5050;
}

.vc-product-video-popup-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    cursor: pointer;
    z-index: 1000;
    transition: 0.3s;
}

.vc-product-video-popup-close-button i {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 10px;
    font-size: 18px;
    color: #fff;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-video-progress-bar {
    position: relative;
    height: 3px;
    width: 100%;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    touch-action: none;
    transition: height 0.15s ease;
}

.vc-video-progress {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    background: #f5f5f5;
    transition: height 0.15s ease, width 0.1s linear;
}

.vc-video-progress-bar.is-scrubbing {
    height: 6px;
}

.vc-video-progress-bar.is-scrubbing .vc-video-progress {
    height: 6px;
}

.vc-popup-video-actions {
    position: absolute;
    right: 10px;
    bottom: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    z-index: 20;
}

.vc-popup-video-actions .vc-video-download-button {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #fff;
    padding: 0;
    text-transform: capitalize;
    transition: transform 0.2s ease-in-out;
}

.vc-video-download-text {
    font-size: 10px;
}

.vc-popup-video-actions .vc-video-download-button:hover {
    background: transparent;
    border: none;
}

#vc-video-like-button {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #fff;
    padding: 0;
    transition: transform 0.2s ease-in-out;
}

#vc-video-like-button .fa-heart {
    transition: transform 0.2s ease-in-out;
}

#vc-video-like-button .video-liked {
    color: #ff5050;
    animation: likePop 0.3s ease-in-out;
}

.vc-video-like-count {
    font-size: 12px;
    color: #fff;
    font-weight: bold;
}

@keyframes likePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

#vc-product-video-share-popup {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    padding: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: bottom 0.3s ease-in-out;
    z-index: 999;
    text-align: center;
}

#vc-product-video-share-popup.active {
    bottom: 0;
}

#vc-product-video-share-popup h3 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
}

#vc-share-options {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.vc-share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: #333;
    text-align: center;
}

.vc-share-option i {
    font-size: 18px;
    margin-bottom: 5px;
}

.vc-share-option-text {
    line-height: normal;
    font-size: 13px;
    color: #fff;
}

.vc-share-option:hover {
    color: #ff5050;
}

#vc-video-share-button {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.vc-video-share-count {
    font-size: 12px;
    color: #fff;
    font-weight: bold;
}

#vc-share-close {
    background: #ff5050;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    min-height: 30px;
}

.vc-popup-video-actions .vc-video-mute-button {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    text-transform: capitalize;
}

.vc-popup-video-actions .vc-video-mute-button:hover {
    background: transparent;
    border: none;
}

.swiper-slide {
    position: relative;
}

.vc-popup-video-container {
    position: relative;
    width: 100%;
}

.vc-popup-video-container i {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 10px;
    font-size: 24px;
    color: #fff;
}

.vc-video-popup-product-details-container {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  width: 100%;
  z-index: 20;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.22) 70%,
    rgba(0,0,0,0) 100%
  );
}

.vc-video-popup-product-details-container.active {
    display: block;
}

.vc-video-popup-product-details-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
}

.vc-video-popup-product-image {
    width: 50px;
    height: 50px;
    padding: 8px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
}

.vc-video-popup-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}

.vc-video-popup-product-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vc-video-popup-product-title {
    font-size: 13px;
    line-height: normal;
    font-weight: bold;
}

.vc-video-popup-product-price {
    font-size: 11px;
    color: #fff;
    display: flex;
    gap: 3px;
    align-items: center;
}

.vc-video-popup-product-price .amount {
    color: #fff;
}

.vc-video-popup-add-to-cart-btn-container {
    margin-top: 4px;
}

.vc-video-popup-add-to-cart-btn-container .vc-view-options-btn,
.vc-video-popup-add-to-cart-btn-container .vc-atc-btn {
    height: 22px;
    min-height: 22px;
    padding: 5px 8px;
    text-transform: capitalize;
    font-size: 10px;
    border-radius: 8px;
    color: #fff;
    gap: 2px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.vc-variation-popup-action .vc-atc-btn:hover,
.vc-variation-popup-action .vc-view-options-btn:hover,
.vc-variation-popup-action .vc-variation-add:hover {
    background: #666;
    color: #fff;
}

.vc-popup-video-container .vc-video-play-overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 25;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.vc-popup-video-container .vc-video-play-overlay.is-visible{
    opacity: 1;
    pointer-events: auto;
}

.vc-popup-video-container .vc-video-play-overlay i{
    background: transparent;
    border: none;
    padding: 0;
    font-size: 24px;
}

.vc-variation-popup {
  position: absolute;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.vc-variation-popup.open{
  opacity: 1;
  pointer-events: auto;
}

.vc-variation-popup.open{
  cursor: pointer;
}

.vc-variation-popup-content {
  cursor: default;
  width: 100%;
  height: min(70%, 560px);
  background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  border-radius: 18px 18px 0 0;
  transform: translateY(110%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vc-variation-popup-content.active{
  transform: translateY(0);
}

.vc-variation-popup-content::before{
  content: "";
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
  margin: 10px auto 0;
  flex: 0 0 auto;
}

.vc-variation-popup-header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    padding: 0 8px 8px 15px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.vc-variation-popup-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
}

.vc-variation-popup-header .vc-variation-popup-close,
.vc-qv-popup-header .vc-qv-popup-close {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    width: 25px;
    padding: 5px;
    height: 25px;
    min-height: 25px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.vc-variation-popup-header .vc-variation-popup-close:hover,
.vc-qv-popup-header .vc-qv-popup-close:hover {
  background: rgba(17, 24, 39, 0.10);
  color: #fff;
}

.vc-variation-popup-body {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 8px;
}

.vc-variation-popup-body::-webkit-scrollbar {
    display: none;
}

.vc-variation-popup-row {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 5px;
    margin-bottom: 5px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.vc-variation-popup-body .vc-variation-popup-row:last-child {
  margin-bottom: 0;
}

.vc-variation-popup-row::last-child {
    margin-bottom: 0;
}

.vc-variation-popup-row:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.10);
  border-color: rgba(17, 24, 39, 0.12);
}

.vc-variation-popup-row .vc-variation-left{
  flex: 0 0 auto;
}

.vc-variation-popup-row .vc-variation-thumb {
    width: 50px;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
    border: 1px solid rgba(17, 24, 39, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-variation-popup-row .vc-variation-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vc-variation-popup-row .vc-variation-right{
  flex: 1 1 auto;
  min-width: 0;
}

.vc-variation-popup-row .vc-variation-title {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vc-variation-popup-row .vc-variation-meta {
    font-size: 9px;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vc-varition-price .amount {
    color: #fff;
    font-size: 11px;
}

.vc-variation-popup-row .vc-variation-price-action-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.vc-variation-popup-row .vc-variation-popup-action{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.vc-variation-popup-row .vc-variation-oos {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  border: 1px solid rgba(17, 24, 39, 0.10);
  color: rgba(17, 24, 39, 0.72);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.vc-variation-popup-row .vc-variation-add {
    min-height: 18px;
    height: 18px;
    padding: 5px 14px;
    border-radius: 12px;
    font-size: 9px;
    letter-spacing: 0.2px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
}

.vc-popup-video-container .vc-qty-wrap {
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    width: fit-content;
    padding: 4px;
}

.vc-popup-video-container .vc-qty-btn {
    width: 16px;
    height: 16px;
    min-height: 16px;
    padding: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.vc-popup-video-container .vc-qty-btn:active {
  transform: scale(0.98);
}

.vc-popup-video-container .vc-qty-num {
    min-width: 18px;
    text-align: center;
    color: #fff;
    height: 16px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-popup-video-container .vc-qty-plus.vc-disabled,
.vc-popup-video-container .vc-qty-plus:disabled{
  opacity: 0.45;
  cursor: not-allowed;
}

.vc-variation-empty{
  background: #fff;
  border: 1px dashed rgba(17, 24, 39, 0.18);
  border-radius: 14px;
  padding: 14px;
  color: rgba(17, 24, 39, 0.7);
  font-size: 13px;
  text-align: center;
}

@media (min-width: 769px) {
    .vc-product-video-popup-videos-container {
        background: transparent;
        width: 80vw;
        height: 90vh;
        max-width: 730px;
        max-height: 95vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    }

    .vc-product-video-popup .swiper-slide-active {
        z-index: 1;
        transform: scale(1.3) !important;
    }

    .vc-popup-video-container {
        height: auto;
        border-radius: 12px;
        overflow: hidden;
    }

    .vc-popup-video-container i {
        font-size: 13px;
    }
}

.vc-product-widget.grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 3), 1fr);
    gap: var(--product-gap, 10px);
    margin: 18px 0;
}

.vc-product {
    background: #fff;
    border: 1px solid rgb(238, 240, 244);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.vc-product-top-container {
    position: relative;
}

.vc-video-container {
    position: relative;
    z-index: 1;
}

.vc-video-container video {
    display: block;
}

.vc-product-image-container {
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    margin: 0;
    height: 50px;
    width: 50px;
    border: 1px solid rgb(238, 240, 244);
    background-color: #fff;
    padding: 2px;
    border-radius: 4px;
    z-index: 5;
    box-sizing: border-box;
}

.vc-product-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 10px 0 5px;
}

.vc-product-bottom-container {
    padding-top: 25px;
}

.vc-product-price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.vc-product-price-container .vc-percentage-off {
    font-size: 13px;
    font-weight: bold;
    color: #28a745;
}

.vc-btn-spinner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  border-top-color: #fff;
  display: none;
  margin-left: 8px;
  animation: vcSpin 0.8s linear infinite;
}

@keyframes vcSpin {
  to { transform: rotate(360deg); }
}

.vc-loading .vc-btn-spinner {
  display: inline-block;
}

.vc-loading .vc-btn-text {
  opacity: 0.8;
}

.vc-loading {
  opacity: 0.85;
  pointer-events: none;
}

.vc-qty-plus.vc-disabled,
.vc-qty-plus:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.vc-variation-meta{
  font-size: 12px;
  opacity: 0.8;
  margin-top: 2px;
}

.vc-video-popup-product-title-quick-view {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.vc-video-popup-product-quick-view {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.vc-video-popup-product-quick-view-icon {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    color: #fff;
    font-size: 14px;
}

.vc-qv-popup {
  position: absolute;
  inset: 0;
  z-index: 99998; /* below variation popup (99999) */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.vc-qv-popup.open {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

.vc-qv-popup-content {
  cursor: default;
  width: 100%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 18px 18px 0 0;
  transform: translateY(110%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vc-qv-popup-content.active {
  transform: translateY(0);
}

/* small top handle bar like variation popup */
.vc-qv-popup-content::before {
  content: "";
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  margin: 10px auto 0;
  flex: 0 0 auto;
}

.vc-qv-popup-header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    padding: 0 8px 8px 15px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.vc-qv-popup-title {
    color: #fff;
    font-size: 13px;
}

.vc-qv-popup-close {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  width: 25px;
  padding: 5px;
  height: 25px;
  min-height: 25px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.vc-qv-popup-close:hover {
  background: rgba(17, 24, 39, 0.10);
  transform: scale(1.03);
  color: #fff;
}

.vc-qv-popup-close:active {
  transform: scale(0.97);
}

.vc-qv-popup-body {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 12px;
}

.vc-qv-popup-body::-webkit-scrollbar {
  display: none;
}

/* =======================
   Images carousel area
   slidesPerView: 2.5
======================= */

.vc-qv-images {
  width: 100%;
  margin-bottom: 12px;
}

.vc-qv-swiper {
  width: 100%;
  overflow: hidden;
}

.vc-qv-swiper .swiper-wrapper {
  display: flex;
}

.vc-qv-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    transform: none !important;
}

.vc-qv-img {
    display: flex;
    height: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.vc-qv-img img {
    object-fit: contain;
    height: 100%;
}

/* =======================
   Title + Price
======================= */

.vc-qv-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 5px;
}

.vc-qv-price {
  font-size: 12px;
  color: #fff;
}

.vc-qv-price .amount {
  color: #fff;
}

/* =======================
   Actions row
======================= */

.vc-qv-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.vc-qv-atc-more-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vc-qv-actions .vc-qv-atc-btn, .vc-qv-actions .vc-qv-more-info-btn {
    height: 25px;
    min-height: 25px;
    padding: 0 6px;
    border-radius: 12px;
    font-size: 11px;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    cursor: pointer;
    gap: 3px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: transform 0.12s ease, background 0.15s ease;
}

.vc-qv-actions .vc-qv-atc-btn:hover,
.vc-qv-actions .vc-qv-more-info-btn:hover {
  background: rgba(17, 24, 39, 0.10);
  transform: translateY(-1px);
}

.vc-qv-actions .vc-qv-atc-btn:active,
.vc-qv-actions .vc-qv-more-info-btn:active {
  transform: scale(0.98);
}

.vc-qv-actions .vc-qv-cart-btn {
    height: 28px;
    min-height: 28px;
    padding: 0;
    width: 28px;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.12s ease, background 0.15s ease;
}

.vc-qv-actions .vc-qv-cart-btn:hover {
  background: rgba(17, 24, 39, 0.10);
  transform: translateY(-1px);
}

.vc-qv-actions .vc-qv-cart-btn:active {
  transform: scale(0.98);
}

.vc-qv-actions .vc-qv-cart-btn i {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 11px;
}

.vc-qv-cart-count {
    position: absolute;
    top: -10px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    padding: 1px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #fff;
    background: rgba(255, 80, 80, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.35);
    line-height: 1;
}

.vc-qv-atc-btn .vc-btn-spinner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  display: none;
  margin-left: 8px;
  animation: vcSpin 0.8s linear infinite;
}

.vc-loading .vc-btn-spinner {
  display: inline-block;
}

.vc-loading .vc-btn-text {
  opacity: 0.8;
}

.vc-qv-more-info-btn-icon-container {
    display: flex;
}

.vc-qv-more-info-btn-icon {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    color: #fff;
    font-size: 12px;
}

.vc-qv-price-percentage-off {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.vc-popup-percentage-off {
    font-size: 10px;
    background-color: #ff5050;
    padding: 2px 5px;
    border-radius: 4px;
    color: #fff;
    width: fit-content;
    line-height: normal;
    margin-left: 2px;
}

.vc-variation-popup .vc-popup-percentage-off {
    margin: 0;
}

.vc-floating-promo {
    position: fixed;
    width: 140px;
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    opacity: 0;
    transform: scale(0.2);
    transform-origin: bottom right;
    transition: transform 650ms cubic-bezier(.2, .9, .2, 1), opacity 650ms ease;
    will-change: transform, opacity;
}

.vc-floating-promo--bottom_right { right: 18px; bottom: 75px; transform-origin: bottom right; }
.vc-floating-promo--bottom_left  { left: 18px;  bottom: 75px; transform-origin: bottom left; }

.vc-floating-promo--top_right    { right: 18px; top: 90px; transform-origin: top right; }
.vc-floating-promo--top_left     { left: 18px;  top: 90px; transform-origin: top left; }

.vc-floating-promo.is-hidden {
    pointer-events: none;
}

.vc-floating-promo.is-visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.vc-floating-video {
    position: fixed;
    width: 140px;
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    background: #000;
    z-index: 999;

    /* animation */
    opacity: 0;
    transform: scale(0.2);
    transform-origin: bottom right;
    transition: transform 650ms cubic-bezier(.2, .9, .2, 1), opacity 650ms ease;
    will-change: transform, opacity;
}

/* position */
.vc-floating-video--bottom_right { right: 16px; bottom: 75px; transform-origin: bottom right; }
.vc-floating-video--bottom_left  { left: 16px;  bottom: 75px; transform-origin: bottom left; }
.vc-floating-video--top_right    { right: 16px; top: 90px;   transform-origin: top right; }
.vc-floating-video--top_left     { left: 16px;  top: 90px;   transform-origin: top left; }

/* states */
.vc-floating-video.is-hidden { pointer-events: none; }
.vc-floating-video.is-visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.vc-floating-video-inner {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.vc-floating-video-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vc-floating-video .vc-floating-video-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    cursor: pointer;
    z-index: 2;
}

.vc-floating-video-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: none;
}

.vc-related-videos-title, .vc-category-page-videos-title {
    font-size: 22px;
    font-weight: 600;
    color: #111;
}

.vc-related-videos-container,
.vc-category-page-videos-container {
  position: relative;
}

.vc-related-videos-swiper,
.vc-category-page-videos-swiper {
  box-sizing: border-box;
  padding: 15px 0 30px;
}

.vc-related-video-container,
.vc-category-page-video-container {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: rgb(176, 176, 176) 0px 0px 5px 0px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform: scale(1);
  transform-origin: center;
}

.vc-related-video-container:hover,
.vc-category-page-video-container:hover {
  transform: scale(1.03);
  box-shadow: rgb(160, 160, 160) 0px 8px 18px 0px;
}

.vc-related-video-container video,
.vc-category-page-video-container video {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 0;
}

.vc-related-video-product-details, .vc-category-page-video-product-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 15px;
    color: #fff;
    background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.22) 70%,
    rgba(0,0,0,0) 100%
  );
}

.vc-related-video-product-title, .vc-category-page-video-product-title {
    font-size: 16px;
    line-height: 1.4;
}

.vc-related-video-product-price-off, .vc-category-page-video-product-price-off {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap; 
}

.vc-related-video-product-price .amount,
.vc-category-page-video-product-price .amount {
    color: #fff;
    font-size: 13px;
}

.vc-related-videos-nav,
.vc-category-page-videos-nav {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  transform: translateY(-50%) scale(0.98);
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.vc-related-videos-container:hover .vc-related-videos-nav,
.vc-category-page-videos-container:hover .vc-category-page-videos-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.vc-related-videos-container:focus-within .vc-related-videos-nav,
.vc-category-page-videos-container:focus-within .vc-category-page-videos-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.vc-related-videos-nav .vc-related-videos-prev,
.vc-related-videos-nav .vc-related-videos-next,
.vc-category-page-videos-nav .vc-category-page-videos-prev,
.vc-category-page-videos-nav .vc-category-page-videos-next {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.vc-related-videos-nav .vc-related-videos-prev:hover,
.vc-related-videos-nav .vc-related-videos-next:hover,
.vc-category-page-videos-nav .vc-category-page-videos-prev:hover,
.vc-category-page-videos-nav .vc-category-page-videos-next:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.vc-related-videos-nav .vc-related-videos-prev:active,
.vc-related-videos-nav .vc-related-videos-next:active,
.vc-category-page-videos-nav .vc-category-page-videos-prev:active,
.vc-category-page-videos-nav .vc-category-page-videos-next:active {
  transform: scale(0.97);
}

.vc-related-videos-prev.swiper-button-disabled,
.vc-related-videos-next.swiper-button-disabled,
.vc-category-page-videos-prev.swiper-button-disabled,
.vc-category-page-videos-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.vc-floating-promo {
  bottom: 75px;
}

.vc-promo-video-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}

.vc-promo-video-popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: none;
  background: rgba(0, 0, 0, 0.75);
}

.vc-promo-video-popup.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

#vc-promo-video-popup .vc-promo-video-popup-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;
  line-height: 36px;
  cursor: pointer;
  z-index: 50;
}

.vc-promo-video-popup-container {
    position: relative;
    width: auto;
    max-height: calc(100vh - 120px);
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    overflow: hidden;
}

.vc-promo-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vc-promo-video-popup-container .vc-promo-video-actions {
  position: absolute;
  bottom: 10px;
  right: 15px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-promo-video-popup-container .vc-promo-video-mute-button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-promo-video-mute-button i {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  padding: 10px;
  font-size: 20px;
  color: #fff;
}

.vc-promo-video-popup-container .vc-promo-video-play-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.vc-promo-video-popup-container .vc-promo-video-actions:hover,
.vc-promo-video-popup-container .vc-promo-video-mute-button:hover,
.vc-promo-video-popup-container .vc-promo-video-play-overlay:hover {
    background: transparent;
    border: none;
}

.vc-promo-video-play-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.vc-promo-video-play-overlay i {
  background: transparent;
  border-radius: 0;
  padding: 0;
  font-size: 22px;
  color: #fff;
}

.vc-promo-video-progress-bar {
    position: absolute;
    height: 3px;
    width: 100%;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    touch-action: none;
    transition: height 0.15s ease;
    bottom: 0;
}

.vc-promo-video-progress {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    background: #f5f5f5;
    transition: height 0.15s ease, width 0.1s linear;
}

.vc-promo-video-progress-bar.is-scrubbing {
    height: 6px;
}

.vc-promo-video-progress-bar.is-scrubbing .vc-promo-video-progress {
    height: 6px;
}

@media (max-width: 768px) {
    .vc-product-video-popup-videos-container {
        background: transparent;
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .vc-popup-video-container {
        height: 100%;
    }
    
    .vc-video-popup-product-image {
        height: 80px;
        width: 80px;
    }
    
    .vc-video-popup-product-title {
        font-size: 18px;
    }
    
    .vc-video-popup-product-price {
        font-size: 16px;
    }
    
    .vc-popup-video-container .vc-qty-btn {
        height: 30px;
        min-height: 30px;
        width: 30px;
    }
    
    .vc-video-popup-add-to-cart-btn-container .vc-view-options-btn, .vc-video-popup-add-to-cart-btn-container .vc-atc-btn {
        height: 32px;
        min-height: 32px;
        font-size: 16px;
    }
    
    .vc-variation-popup-title {
        font-size: 18px;
    }
    
    .vc-variation-popup-body {
        padding: 15px;
    }
    
    .vc-variation-popup-row {
        margin-bottom: 10px;
        padding: 8px 12px;
    }
    
    .vc-variation-popup-row .vc-variation-thumb {
        width: 60px;
    }
    
    .vc-variation-popup-row .vc-variation-title {
        font-size: 16px;
    }
    
    .vc-variation-popup-row .vc-variation-meta {
        font-size: 14px;
    }

    .vc-variation-popup-row .vc-variation-add {
        height: 30px;
        min-height: 30px;
        font-size: 14px;
    }
    
    .vc-varition-price .amount {
        font-size: 16px;
    }
    
    .vc-video-popup-product-quick-view-icon {
        font-size: 22px;
    }
    
    .vc-qv-title {
        font-size: 18px;
    }
    
    .vc-qv-price {
        font-size: 16px;
    }
    
    .vc-qv-popup-title {
        font-size: 16px;
    }
    
    .vc-variation-popup-header .vc-variation-popup-close,
    .vc-qv-popup-header .vc-qv-popup-close {
        width: 30px;
        height: 30px;
        min-height: 30px;
        font-size: 23px;
    }
    
    .vc-qv-actions .vc-qv-atc-btn, .vc-qv-actions .vc-qv-more-info-btn {
        height: 30px;
        min-height: 30px;
        font-size: 14px;
    }
    
    .vc-qv-actions .vc-qv-cart-btn {
        width: 35px;
        height: 35px;
        min-height: 35px;
    }
    
    .vc-qv-actions .vc-qv-cart-btn i {
        font-size: 16px;
    }
    
    .vc-qv-cart-count {
        font-size: 11px;
    }
    
    .vc-qv-swiper .swiper-slide {
        height: 160px;
    }
    
    .vc-qv-popup-body {
        padding: 15px;
    }
    
    .vc-popup-percentage-off {
        font-size: 14px;
    }
    
    .vc-related-videos-nav,
    .vc-category-page-videos-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) scale(1);
    }
    
    .vc-related-videos-nav,
    .vc-category-page-videos-nav {
        left: 6px;
        right: 6px;
    }
    
    .vc-related-videos-nav,
    .vc-category-page-videos-nav {
        display: none;
    }
    
    .vc-related-video-product-title, .vc-category-page-video-product-title {
        font-size: 14px;
    }
    
    .vc-related-video-product-details, .vc-category-page-video-product-details {
        padding: 10px;
    }
    
    .vc-related-video-product-price-off, .vc-category-page-video-product-price-off {
        gap: 2px;
    }
    
    .vc-related-video-product-price-off .vc-popup-percentage-off,
    .vc-category-page-video-product-price-off .vc-popup-percentage-off {
        font-size: 11px;
    }
    
    .vc-promo-video-popup-container {
        height: 100%;
        width: 100%;
        max-height: 100%;
        border-radius: 0;
    }
}