.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;
}

.vc-product-video-popup .swiper {
    width: 100%;
    height: 100%;
}

.vc-product-video-popup .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.vc-product-video-popup .swiper-slide-prev,
.vc-product-video-popup .swiper-slide-next {
    z-index: 0;
}

.vc-product-video-popup .swiper-button-next,
.vc-product-video-popup .swiper-button-prev {
    color: #fff;
    font-size: 40px;
    transition: 0.3s;
}

.vc-product-video-popup .swiper-button-next:hover,
.vc-product-video-popup .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-product-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-product-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-product-video-progress-bar.is-scrubbing {
    height: 6px;
}

.vc-product-video-progress-bar.is-scrubbing .vc-product-video-progress {
    height: 6px;
}

.vc-product-video-popup-actions {
    position: absolute;
    right: 10px;
    bottom: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #fff;
    z-index: 20;
}

.vc-product-video-popup-actions .vc-product-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-product-video-popup-actions .vc-product-video-download-button:hover {
    background: transparent;
    border: none;
}

#vc-product-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-product-video-like-button .fa-heart {
    transition: transform 0.2s ease-in-out;
}

#vc-product-video-like-button .video-liked {
    color: #ff5050;
    animation: likePop 0.3s ease-in-out;
}

.vc-product-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-product-video-share-button {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.vc-product-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-product-video-popup-actions .vc-product-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-product-video-popup-actions .vc-product-video-mute-button:hover {
    background: transparent;
    border: none;
}

.vc-product-video-popup .swiper-slide {
    position: relative;
}

.vc-product-video-popup-content {
    position: relative;
    width: 100%;
}

.vc-product-video-popup-content i {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 8px;
    font-size: 18px;
    color: #fff;
}

.vc-product-video-bottom-wrapper {
  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-product-video-product-details {
    padding: 15px;
}

.vc-product-video-info-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vc-product-video-product-image {
    width: 50px;
    height: 50px;
    padding: 2px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
}

.vc-product-video-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}

.vc-product-video-product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vc-product-video-product-title {
    line-height: normal;
    font-weight: bold;
    color: #fff;
}

.vc-product-video-product-price {
    color: #fff;
    display: flex;
    gap: 3px;
    align-items: center;
}

.vc-product-video-product-price .amount {
    color: #fff;
}

.vc-product-video-add-to-cart-btn-action-wrapper {
    margin-top: 4px;
}

.vc-product-video-add-to-cart-btn-action-wrapper .vc-view-options-btn,
.vc-product-video-add-to-cart-btn-action-wrapper .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-product-video-popup-content .vc-product-video-play-pause-button{
    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-product-video-popup-content .vc-product-video-play-pause-button.is-visible{
    opacity: 1;
    pointer-events: auto;
}

.vc-product-video-popup-content .vc-product-video-play-pause-button 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-variation-popup .vc-qty-wrap {
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    width: fit-content;
    padding: 4px;
}

.vc-product-video-info-content .vc-qty-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.vc-product-video-info-content .vc-qty-btn {
    width: 24px;
    height: 24px;
    min-height: fit-content;
    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-product-video-info-content .vc-qty-btn:active {
  transform: scale(0.98);
}

.vc-variation-popup .vc-qty-num {
    min-width: 18px;
    text-align: center;
    color: #fff;
    height: 16px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-variation-popup .vc-qty-plus.vc-disabled,
.vc-variation-popup .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-container {
        background: transparent;
        width: 80vw;
        height: 90vh;
        max-width: 730px;
        max-height: 95vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vc-product-video-popup .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);
    }

    .vc-product-video-popup-content {
        height: auto;
        border-radius: 12px;
        overflow: hidden;
    }

    .vc-product-video-popup-content 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-product-video-product-title-quick-view {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
}

.vc-product-video-product-quick-view {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.vc-product-video-product-quick-view-icon {
    user-select: none;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    color: #fff;
    font-size: 14px;
}

.vc-qv-popup {
  position: absolute;
  inset: 0;
  z-index: 99998;
  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);
}

.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-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;
  cursor: pointer;
}

.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-tagged-products-panel {
  padding: 0 12px;
  margin-bottom: 15px;
}

.vc-tagged-products-panel-title {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.vc-tagged-products-swiper {
  width: 100%;
  overflow: visible;
}

.vc-tagged-products-swiper .swiper-wrapper {
  align-items: stretch;
}

.vc-tagged-product-card {
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vc-tagged-product-card-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  background: #fff;
  border-radius: 14px;
}

@media (hover: hover) {
  .vc-tagged-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  }
}

.vc-tagged-product-image {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vc-tagged-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.vc-tagged-product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.vc-tagged-product-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  margin-bottom: 5px;
}

.vc-tagged-product-price-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 3px 0;
}

.vc-tagged-product-price .amount {
  font-size: 13px;
}

.vc-tagged-product-off {
  display: flex;
  align-items: center;
}

.vc-tagged-product-card .vc-tagged-product-btn {
    width: 100%;
    height: 25px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #fff;
    background: linear-gradient(90deg, #2f80ed 0%, #56ccf2 100%);
    box-shadow: 0 4px 10px rgba(47, 128, 237, 0.35);
    transition: all 0.2s ease;
    text-transform: capitalize;
    min-height: auto;
    padding: 1px;
}

.vc-tagged-product-card .vc-tagged-product-btn:hover {
  background: linear-gradient(90deg, #2d74d6 0%, #4bb8e6 100%);
  box-shadow: 0 6px 14px rgba(47, 128, 237, 0.45);
}

.vc-tagged-product-card .vc-tagged-product-btn:active {
  transform: scale(0.96);
  box-shadow: 0 2px 6px rgba(47, 128, 237, 0.3);
}

.vc-cta-wrap {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 30;
}

.vc-cta-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #111827;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.vc-cta-btn:hover {
  background: #000;
}

.vc-tagged-product-title-quick-view {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
}

.vc-tagged-product-quick-view-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.vc-tagged-product-quick-view-icon {
    user-select: none;
    width: 18px;
    height: 18px;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    font-size: 14px;
}

.vc-tagged-product-count-badge {
    position: absolute;
    top: 1px;
    left: 1px;
    z-index: 3;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
}

.vc-tagged-product-card--view-all {
  overflow: hidden;
}

.vc-tagged-product-card--view-all .vc-tagged-product-image--view-all {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #fff;
  display: block;
}

.vc-tagged-product-card--view-all .vc-tagged-product-image--view-all img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vc-tagged-product-card--view-all .vc-tagged-products-view-all-btn {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  text-align: center;
}

.vc-tagged-product-card--view-all .vc-tagged-products-view-all-plus {
    font-size: 14px;
    line-height: 1;
    color: #fff;
}

.vc-tagged-product-card--view-all .vc-tagged-products-view-all-text {
    font-size: 12px;
    line-height: 1.2;
    color: #fff;
    text-transform: capitalize;
}

.vc-tagged-view-all-slide .vc-tagged-product-card-inner {
    padding: 0;
}

.vc-tagged-product-card .vc-qty-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vc-tagged-product-card .vc-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    min-height: fit-content;
}

.vc-tagged-product-card .vc-qty-btn:active {
  transform: scale(0.9);
}

.vc-tagged-product-card .vc-qty-num {
  font-size: 12px;
  font-weight: 600;
  min-width: 26px;
  text-align: center;
}

.vc-tagged-product-card .vc-qty-btn.vc-disabled,
.vc-tagged-product-card .vc-qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.vc-tagged-cart-btn {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F3F3;
    cursor: pointer;
}

.vc-tagged-product-action {
    width: 100%;
}

.vc-tagged-product-action-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.vc-tagged-cart-btn i {
  font-size: 12px;
}

.vc-tagged-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff3b30;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.vc-tagged-product-rating-badge {
  position: absolute;
  left: 6px;
  bottom: 6px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.vc-tagged-product-rating-value {
  display: inline-block;
  line-height: 1;
}

.vc-tagged-product-rating-star {
  display: inline-block;
  line-height: 1;
  color: #16a34a;
  font-size: 13px;
}

.vc-all-tagged-products-popup {
  position: absolute;
  inset: 0;
  z-index: 99998;
  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-all-tagged-products-popup.open {
  opacity: 1;
  pointer-events: auto;
}

.vc-all-tagged-products-popup-content {
  width: 100%;
  max-height: 80%;
  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-all-tagged-products-popup-content.active {
  transform: translateY(0);
}

.vc-all-tagged-products-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-all-tagged-products-popup-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  padding: 0 8px 15px 15px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.vc-all-tagged-products-popup-title {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.vc-all-tagged-products-popup .vc-all-tagged-products-popup-close {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  width: 25px;
  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;
  padding: 5px;
}

.vc-all-tagged-products-popup-body {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 12px;
}

.vc-all-tagged-products-popup-body::-webkit-scrollbar {
  display: none;
}

.vc-all-tagged-products-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vc-all-tagged-product-card {
  width: 100%;
}

.vc-all-tagged-products-list .vc-tagged-product-card-inner {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 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-all-tagged-products-list .vc-tagged-product-title {
    color: #fff;
}

.vc-all-tagged-products-list .vc-tagged-product-image {
  width: 70px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vc-all-tagged-products-list .vc-tagged-product-action {
  width: 100%;
}

.vc-all-tagged-products-list .vc-tagged-product-btn {
  width: 100%;
  height: 25px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #2f80ed 0%, #56ccf2 100%);
  box-shadow: 0 4px 10px rgba(47, 128, 237, 0.35);
  transition: all 0.2s ease;
  text-transform: capitalize;
  min-height: auto;
  padding: 1px;
}

.vc-all-tagged-products-list .vc-qty-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vc-all-tagged-products-list .vc-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  min-height: fit-content;
}

.vc-all-tagged-products-list .vc-qty-num {
  font-size: 12px;
  font-weight: 600;
  min-width: 26px;
  text-align: center;
}

.vc-all-tagged-products-popup .vc-tagged-product-quick-view-icon {
    color: #fff;
}

.vc-all-tagged-products-popup .vc-tagged-product-price .amount {
    color: #fff;
}

.vc-all-tagged-products-popup .vc-tagged-product-price {
    color: #fff;
}

.vc-all-tagged-products-popup .vc-view-options-btn, .vc-all-tagged-products-popup .vc-atc-btn {
    min-height: 18px;
    height: 25px;
    padding: 5px 14px;
    text-transform: capitalize;
    border-radius: 12px;
    font-size: 12px;
    letter-spacing: 0.2px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
}

.vc-all-tagged-products-popup .vc-qty-btn {
    width: 24px;
    height: 24px;
    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-all-tagged-products-popup .vc-qty-num {
    color: #fff;
    font-size: 16px;
}

.vc-qv-popup .vc-qty-btn {
    width: 24px;
    height: 24px;
    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-qv-popup .vc-qty-num {
    color: #fff;
    font-size: 16px;
}

.vc-qv-popup .vc-qty-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vc-product-video-popup-view-badge,
.vc-product-video-card-views-badge,
.vc-product-video-widget__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    z-index: 25;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.vc-product-video-popup-view-badge i,
.vc-product-video-card-views-badge i,
.vc-product-video-widget__badge i {
    font-size: 12px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    width: auto;
    height: auto;
}

.vc-product-video-popup-view-badge span,
.vc-product-video-card-views-badge span,
.vc-product-video-widget__badge span {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.vc-related-video-container,
.vc-category-page-video-container {
    position: relative;
}

@media (max-width: 768px) {
    .vc-product-video-popup-container {
        background: transparent;
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vc-product-video-popup .swiper-button-next,
    .vc-product-video-popup .swiper-button-prev {
        display: none;
    }

    .vc-product-video-popup-content {
        height: 100%;
    }
    
    .vc-product-video-product-image {
        height: 80px;
        width: 80px;
    }
    
    .vc-product-video-popup-content .vc-qty-btn {
        height: 30px;
        min-height: 30px;
        width: 30px;
    }
    
    .vc-product-video-add-to-cart-btn-action-wrapper .vc-view-options-btn, .vc-product-video-add-to-cart-btn-action-wrapper .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-product-video-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;
    }
}