.pvg-horizontal-scroll-wrapper {
  display: flex;
  flex-direction: row;
  gap: 24px;
  overflow-x: auto;
  padding: 24px 0 32px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.pvg-item {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 340px;
  transition: box-shadow 0.2s;
}
.pvg-item:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.16);
}
.pvg-video-box {
  width: 100%;
  aspect-ratio: 9/16;
  background: #000;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pvg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 0;
  display: block;
}
.pvg-info-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 80%, rgba(0,0,0,0.0) 100%);
  color: #fff;
  padding: 16px 12px 10px 12px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-height: 60px;
}
.pvg-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  margin-right: 8px;
}
.pvg-title {
  font-size: 16px;
  font-weight: 600;
  font-family: syncopate;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pvg-price {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 8px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .pvg-item {
    min-width: 220px;
    max-width: 240px;
  }
  .pvg-info-bar {
    padding: 10px 6px 6px 6px;
    min-height: 40px;
  }
  .pvg-thumb {
    width: 28px;
    height: 28px;
  }
  .pvg-title {
    font-size: 0.95rem;
  }
  .pvg-price {
    font-size: 0.9rem;
  }
}

#pvg-modal-overlay {
  display: none;
  position: fixed;
  z-index: 99998;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
}

#pvg-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: auto;
  outline: none;
  background: none;
  box-sizing: border-box;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pvg-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 700px;
  width: 90vw;
  min-width: 340px;
  margin: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#pvg-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  z-index: 2;
}

@media (max-width: 600px) {
  #pvg-modal-content {
    max-width: 99vw;
    border-radius: 16px 16px 0 0;
  }
  #pvg-modal {
    padding: 0;
  }
}

/* Tablet + Mobile: bottom sheet quick-add (match screenshot) */
@media (max-width: 1024px) {
  #pvg-modal {
    padding: 0;
    align-items: flex-end;
    justify-content: center;
  }

  #pvg-modal-content {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    margin: 0;
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
    animation: pvgSlideUp 0.18s ease-out both;
  }
}

@keyframes pvgSlideUp {
  from {
    transform: translateY(14px);
  }
  to {
    transform: translateY(0);
  }
}

/* Mobile-only: hide compact product bar on desktop */
.pvg-mobile-product-bar {
  display: none;
}

.pvg-modal-flexbox {
  display: flex;
  flex-direction: row;
  gap: 0;
  min-width: 320px;
  max-width: 900px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.pvg-modal-left {
  flex: 0 0 340px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  max-height: 600px;
  overflow: hidden;
}
.pvg-modal-video {
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: 600px;
  object-fit: cover;
  border: none;
  border-radius: 0;
  background: #000;
  display: block;
}
.pvg-modal-right {
  flex: 1 1 400px;
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 320px;
  max-width: 520px;
  background: #fff;
  overflow-y: auto;
}
.pvg-modal-gallery-scroll {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 12px;
  padding-bottom: 4px;
}
.pvg-modal-gallery-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #eee;
  background: #fafafa;
  cursor: pointer;
  transition: border 0.2s;
}
.pvg-modal-gallery-img:hover {
  border: 2px solid #222;
}
.pvg-modal-title {
  font-size: 16px;
  font-family: syncopate;
  font-weight: 700;
  margin-bottom: 2px;
}
.pvg-modal-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}
.pvg-modal-swatches {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.pvg-modal-swatches-label {
  font-size: 0.98rem;
  font-weight: 500;
  margin-right: 6px;
}
.pvg-modal-swatch {
  display: inline-block;
  min-width: 32px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 16px;
  background: #f3f3f3;
  border: 2px solid #ddd;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  line-height: 32px;
  cursor: pointer;
  transition: border 0.2s, background 0.2s;
}
.pvg-modal-swatch.active, .pvg-modal-swatch:hover {
  border: 2px solid #222;
  background: #eaeaea;
}
.pvg-modal-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
}
.pvg-modal-cartform {
  margin-top: 0px;
}
@media (max-width: 900px) {
  .pvg-modal-flexbox {
    flex-direction: column;
    max-width: 99vw;
  }
  .pvg-modal-left {
    min-height: 220px;
    max-height: 320px;
    width: 100%;
  }
  .pvg-modal-right {
    padding: 18px 8px 12px 8px;
    min-width: 0;
    max-width: 100vw;
  }
}
@media (max-width: 600px) {
  .pvg-modal-flexbox {
    border-radius: 8px;
  }
  .pvg-modal-left {
    min-height: 120px;
    max-height: 180px;
  }
  .pvg-modal-gallery-img {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 1000px) {
  #pvg-modal-content {
    max-width: 99vw;
    width: 99vw;
    min-width: 0;
  }
  .pvg-modal-flexbox {
    max-width: 99vw;
  }
}

/* ========== Mobile: full-screen video + bottom product bar (silvertraq-style) ========== */
@media (max-width: 768px) {
  #pvg-modal {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }
  #pvg-modal-content {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    border-radius: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  #pvg-modal-body {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  #pvg-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: none;
  }
  #pvg-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
  }
  .pvg-modal-flexbox {
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
  }
  .pvg-modal-left {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    width: 100%;
    position: relative;
  }
  .pvg-modal-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
  }
  .pvg-modal-right {
    display: none !important;
  }
  .pvg-mobile-product-bar {
    display: flex !important;
    align-items: center;
    gap: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px 16px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 5;
  }
  .pvg-mobile-bar-thumb {
    width: 56px;
    height: 56px;
    min-width: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
  .pvg-mobile-bar-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .pvg-mobile-bar-title {
    font-size: 14px;
    font-weight: 600;
    font-family: syncopate, sans-serif;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pvg-mobile-bar-price {
    font-size: 13px;
    font-weight: 600;
    color: #333;
  }
  .pvg-mobile-bar-price del {
    color: #888;
    font-weight: 500;
  }
  .pvg-mobile-bar-shop-btn {
    flex-shrink: 0;
    padding: 10px 18px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    transition: background 0.2s;
  }
  .pvg-mobile-bar-shop-btn:hover {
    background: #333;
    color: #fff;
  }
}

/* Accordion Styles */
.styled-accordion {
  border-radius: 10px;
  background: #fafbfc;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  margin-bottom: 18px;
}
.styled-accordion .pvg-modal-accordion-item {
  border-bottom: 1px solid #e5e7eb;
}
.styled-accordion .pvg-modal-accordion-header {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 14px 0 14px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}
.styled-accordion .pvg-modal-accordion-header:hover {
  background: #f3f4f6;
}
.styled-accordion .pvg-acc-icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.styled-accordion .pvg-modal-accordion-header.active .pvg-acc-icon {
  transform: rotate(45deg);
}
.styled-accordion .pvg-modal-accordion-body {
  padding: 0 0 14px 28px;
  font-size: 0.98rem;
  color: #444;
  background: #fff;
  border-radius: 0 0 10px 10px;
  transition: max-height 0.3s, padding 0.3s;
}

/* Rectangle color swatch thumbnails */
.pvg-modal-swatch-thumb {
  display: inline-block;
  border-radius: 8px;
  border: 2px solid #ddd;
  overflow: hidden;
  width: 48px;
  height: 32px;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  background: #fff;
}
.pvg-modal-swatch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.pvg-modal-swatch-thumb.active, .pvg-modal-swatch-thumb:hover {
  border: 2px solid #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

/* Hide WooCommerce default attribute selectors in modal */
.pvg-modal-cartform .variations select,
.pvg-modal-cartform .variations .value,
.pvg-modal-cartform .variation-selector {
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Hide variation selector labels */
.pvg-modal-cartform .variation-selector label {
    display: none !important;
}

/* Mini Cart Icon and Badge */
#pvg-mini-cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 32px;
  top: 0;
  height: 48px;
  cursor: pointer;
  z-index: 100;
}
.pvg-cart-icon-svg {
  font-size: 1.7rem;
  color: #222;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 7px 10px 7px 10px;
  margin-right: 2px;
}
.pvg-cart-badge {
  display: inline-block;
  min-width: 20px;
  height: 20px;
  background: #222;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  line-height: 20px;
  margin-left: -10px;
  margin-top: -18px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  padding: 0 5px;
}

/* Mini Cart Panel */
#pvg-mini-cart-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  z-index: 10000;
  display: flex;
  flex-direction: column;
}

#pvg-mini-cart-panel.open {
  right: 0;
}

.pvg-mini-cart-header {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  flex-shrink: 0;
}

.pvg-mini-cart-header span {
  font-weight: 600;
  font-size: 18px;
  color: #333;
}

#pvg-mini-cart-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

#pvg-mini-cart-close:hover {
  background: #e9ecef;
  color: #333;
}

#pvg-mini-cart-contents {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

/* Mini Cart Items */
.pvg-mini-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

/* Ensure items take up available space when there are few items */
.pvg-mini-cart-items .pvg-mini-cart-item:only-child {
  flex: 1;
  max-height: none;
}

.pvg-mini-cart-items .pvg-mini-cart-item:first-child:nth-last-child(2),
.pvg-mini-cart-items .pvg-mini-cart-item:last-child:nth-child(2) {
  flex: 1;
  max-height: none;
}

/* When there are only 1 or 2 items, distribute them evenly */
.pvg-mini-cart-items.few-items {
  justify-content: space-between;
}

.pvg-mini-cart-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  gap: 15px;
  min-height: 80px;
  flex-shrink: 0;
}

.pvg-mini-cart-item:last-child {
  border-bottom: none;
}

.pvg-mini-cart-item-image {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  background: #f8f9fa;
}

.pvg-mini-cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pvg-mini-cart-item-details {
  flex: 1;
  min-width: 0;
}

.pvg-mini-cart-item-details h4 {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

.pvg-mini-cart-item-details p {
  margin: 0 0 3px 0;
  font-size: 12px;
  color: #666;
}

.pvg-mini-cart-item-details .price {
  font-weight: 600;
  color: #000;
  font-size: 14px;
}

/* Remove Item Button */
.pvg-remove-item {
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.pvg-remove-item:hover {
  background: #c82333;
  transform: scale(1.1);
}

/* Mini Cart Footer */
.pvg-mini-cart-footer {
  padding: 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8f9fa;
  flex-shrink: 0;
}

.pvg-checkout-btn {
  display: block;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  border: 2px solid #e9ecef;
  background: #fff;
  color: #333;
}

.pvg-checkout-btn:hover {
  background: #f8f9fa;
  border-color: #dee2e6;
  text-decoration: none;
  color: #333;
}

.pvg-checkout-btn.primary {
  background: #000;
  color: #fff;
  border-color: #000;
}

.pvg-checkout-btn.primary:hover {
  background: #333;
  border-color: #333;
  color: #fff;
} 

/* Success Popup */
.pvg-success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pvg-success-popup.show {
  opacity: 1;
  visibility: visible;
}

.pvg-success-content {
  background: white;
  border-radius: 12px;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pvg-success-popup.show .pvg-success-content {
  transform: scale(1);
}

.pvg-success-icon {
  width: 60px;
  height: 60px;
  background: #4CAF50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.pvg-success-thumb {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #f0f0f0;
}

.pvg-success-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pvg-success-text h3 {
  margin: 0 0 10px;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.pvg-success-text p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

.pvg-success-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.pvg-success-close:hover {
  background: #f0f0f0;
  color: #333;
} 

/* Cart Section */
.pvg-cart-section {
  display: flex;
  align-items: self-end;
  gap: 15px;
  margin-top: 0px;
  width: 100%;
}

.pvg-cart-section .quantity {
  flex: 0 0 20px;
  margin: 0;
}

.pvg-cart-section .quantity label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.pvg-cart-section .quantity input {
  width: 100%;
  padding: 8px 12px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
}

.pvg-cart-section .single_add_to_cart_button {
  flex: 1;
  margin: 0;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 140px;
}

.pvg-cart-section .single_add_to_cart_button:hover {
  background: #333;
  transform: translateY(-1px);
}

#pvg-mini-cart-icon {
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  margin: 0 30px;
}

#pvg-mini-cart-icon:hover {
  background: #e9ecef;
  border-color: #dee2e6;
}

.pvg-cart-icon-svg {
  font-size: 18px;
  color: #6c757d;
}

#pvg-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  min-width: 20px;
} 

/* Mini Cart Items */
.pvg-mini-cart-items {
  max-height: 300px;
  overflow-y: auto;
}

.pvg-mini-cart-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  gap: 10px;
}

.pvg-mini-cart-item:last-child {
  border-bottom: none;
}

.pvg-mini-cart-item-image {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  background: #f8f9fa;
}

.pvg-mini-cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pvg-mini-cart-item-details {
  flex: 1;
  min-width: 0;
}

.pvg-mini-cart-item-details h4 {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

.pvg-mini-cart-item-details p {
  margin: 0 0 3px 0;
  font-size: 12px;
  color: #666;
}

.pvg-mini-cart-item-details .price {
  font-weight: 600;
  color: #000;
  font-size: 14px;
}

/* Remove Item Button */
.pvg-remove-item {
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.pvg-remove-item:hover {
  background: #c82333;
  transform: scale(1.1);
}

/* Mini Cart Footer */
.pvg-mini-cart-footer {
  padding: 15px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pvg-checkout-btn {
  display: block;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  border: 2px solid #e9ecef;
  background: #fff;
  color: #333;
}

.pvg-checkout-btn:hover {
  background: #f8f9fa;
  border-color: #dee2e6;
  text-decoration: none;
  color: #333;
}

.pvg-checkout-btn.primary {
  background: #000;
  color: #fff;
  border-color: #000;
}

.pvg-checkout-btn.primary:hover {
  background: #333;
  border-color: #333;
  color: #fff;
} 

/* Body scroll lock when lightbox is open */
body.pvg-lightbox-open {
  overflow: hidden;
}

/* Lightbox Styles */
#pvg-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pvg-lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#pvg-lightbox-image-container {
  position: relative;
  max-width: 100%;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pvg-lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#pvg-lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

#pvg-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

#pvg-lightbox-prev,
#pvg-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

#pvg-lightbox-prev {
  left: -80px;
}

#pvg-lightbox-next {
  right: -80px;
}

#pvg-lightbox-prev:hover,
#pvg-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

#pvg-lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
}

/* Hide navigation buttons when only one image */
#pvg-lightbox-overlay.single-image #pvg-lightbox-prev,
#pvg-lightbox-overlay.single-image #pvg-lightbox-next {
  display: none;
}

/* Modal gallery image cursor */
.pvg-modal-gallery-img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.pvg-modal-gallery-img:hover {
  transform: scale(1.05);
} 