/** Shopify CDN: Minification failed

Line 381:0 Unexpected "}"

**/
/* -------------------------------------------------
   VEDHACART — Product Quick View (Minimal Core)
   Updated with Brand Colour System
   Mobile: Bottom Sheet with slide-up animation
------------------------------------------------- */

/* === Overlay === */
.vc-qv-overlay {
  position: fixed;
  inset: 0;
  background: var(--vc-modal-backdrop, rgba(26, 32, 44, 0.6));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 9000;
}
.vc-qv-overlay[data-open="true"] { opacity: 1; }

/* === Modal Root === */
.vc-qv-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9001;
  overscroll-behavior: contain;
}
.vc-qv-modal[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

/* === Modal Content (Desktop) === */
.vc-qv-grid {
  background: var(--vc-bg-white, #fff);
  border-radius: var(--vc-radius-xl, 16px);
  width: min(850px, 92vw);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--vc-shadow-modal, 0 12px 40px rgba(0, 0, 0, 0.25));
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.25s ease;
}

@media (max-width: 900px) {
  .vc-qv-grid {
    grid-template-columns: 1fr;
    width: 90vw;
    max-height: 85vh;
    padding: 16px;
  }
}

/* ============================================
   MOBILE BOTTOM SHEET (< 768px)
   - Slides up from bottom
   - Flexible layout for all screen sizes
   - Qty + CTA always visible
============================================ */
@media (max-width: 768px) {
  .vc-qv-modal {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
  }

  .vc-qv-grid {
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    max-height: 90dvh;
    margin: 0;
    padding: 8px 12px 12px;
    gap: 6px;
    border-radius: 20px 20px 0 0;
    grid-template-columns: 1fr;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
    /* Slide up animation */
    transform: translateY(100%);
    opacity: 1;
  }

  .vc-qv-modal[data-open="true"] .vc-qv-grid {
    transform: translateY(0);
  }

  /* Handle bar indicator */
  .vc-qv-grid::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: var(--vc-border-medium, #CBD5E0);
    border-radius: 2px;
    margin: 4px auto 4px;
    flex-shrink: 0;
  }

  /* Media section - FLEXIBLE height */
  .vc-qv-media {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    flex: 0 1 auto; /* Can shrink */
    min-height: 0;
    overflow: hidden;
    width: 100%;
  }

  /* Slider - Flexible, will shrink if needed */
  .vc-qv-slider {
    width: 100% !important;
    flex: 1 1 auto;
    min-height: 120px;
    max-height: 35vh;
    border-radius: 10px;
    overflow: hidden;
    background: var(--vc-bg-light, #F7FAFC);
  }

  .vc-qv-track {
    height: 100% !important;
    display: flex;
  }

  .vc-qv-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vc-qv-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    border-radius: 10px;
  }

  /* Thumbnails - SMALL, LEFT aligned */
  .vc-qv-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    padding: 2px 0 2px 3px;
    flex-shrink: 0;
    -webkit-overflow-scrolling: touch;
  }

  .vc-qv-thumbs::-webkit-scrollbar {
    display: none;
  }

  .vc-qv-thumbs button {
    flex-shrink: 0;
    width: 28px !important;
    height: 28px !important;
    border-radius: 5px !important;
    padding: 0;
    border: 1px solid var(--vc-border, #E2E8F0);
    background: var(--vc-bg-white, #fff);
  }

  .vc-qv-thumbs button[aria-pressed="true"] {
    outline: 2px solid var(--vc-brand-red, #E54B4B);
    outline-offset: 1px;
  }

  .vc-qv-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }

  /* Hide dots on mobile - use thumbs instead */
  .vc-qv-dots {
    display: none;
  }

  /* Details section - FIXED height items, no shrink */
  .vc-qv-details {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow: visible;
  }

  /* Title - compact, max 2 lines */
  .vc-qv-title {
    font-size: 0.95rem;
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Price */
  .vc-qv-price {
    font-size: 1.1rem;
  }

  .vc-qv-compare-price {
    font-size: 0.85rem;
    margin-left: 4px;
  }

  /* Options - horizontal scroll */
  .vc-qv-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .vc-qv-option {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .vc-qv-option > div:first-child {
    font-size: 12px;
    font-weight: 500;
    min-width: auto;
    flex-shrink: 0;
  }

  .vc-qv-option > div:last-child {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .vc-qv-option > div:last-child::-webkit-scrollbar {
    display: none;
  }

  /* Swatches - compact */
  .vc-qv-swatch {
    padding: 4px 8px !important;
    font-size: 11px !important;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 6px !important;
  }

  /* Thumb swatches (variant images) - 48x56 with label */
  .vc-qv-swatch--thumb {
    min-width: 48px !important;
    min-height: 56px !important;
    padding: 3px !important;
    flex-shrink: 0;
    border-radius: 6px !important;
  }

  .vc-qv-swatch--thumb img.vc-qv-swatch-img {
    height: 34px !important;
    border-radius: 4px !important;
    margin-bottom: 2px !important;
  }

  .vc-qv-swatch-label {
    font-size: 9px !important;
    margin-top: 0;
    line-height: 1.1;
  }
  }

  /* Quantity - ALWAYS visible */
  .vc-qv-qty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 2px 0;
  }

  .vc-qv-qty button {
    width: 28px;
    height: 28px;
    font-size: 14px;
    line-height: 1;
    border: 1px solid var(--vc-border-medium, #CBD5E0);
    border-radius: 50%;
    background: var(--vc-bg-white, #fff);
    color: var(--vc-text-primary, #1A202C);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vc-qv-qty button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .vc-qv-qty input {
    width: 40px;
    height: 28px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    border: 1px solid var(--vc-border-medium, #CBD5E0);
    border-radius: var(--vc-radius-md, 8px);
    background: var(--vc-bg-white, #fff);
  }

  /* CTA - ALWAYS at bottom */
  .vc-qv-cta {
    flex-shrink: 0;
    padding: 8px 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .vc-qv-button {
    flex: 1;
    padding: 11px 14px;
    font-size: 14px;
  }

  .vc-qv-more {
    margin: 0;
  }

  .vc-qv-more-link {
    font-size: 13px;
    white-space: nowrap;
  }

  /* Close button - positioned inside the popup card */
  .vc-qv-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    font-size: 18px;
    z-index: 20;
  }

  /* Hide description on mobile */
  .vc-qv-description,
  .vc-qv-details-accordion {
    display: none;
  }
}

/* ============================================
   SMALL PHONES (< 380px) - Extra compact
============================================ */
@media (max-width: 380px) {
  .vc-qv-grid {
    padding: 6px 10px 10px;
    gap: 4px;
  }

  .vc-qv-slider {
    min-height: 100px;
    max-height: 30vh;
  }

  .vc-qv-thumbs button {
    width: 24px !important;
    height: 24px !important;
    border-radius: 4px !important;
  }

  .vc-qv-title {
    font-size: 0.85rem;
  }

  .vc-qv-price {
    font-size: 1rem;
  }

  .vc-qv-compare-price {
    font-size: 0.75rem;
  }

  .vc-qv-swatch {
    padding: 3px 6px !important;
    font-size: 10px !important;
  }

  .vc-qv-swatch--thumb {
    min-width: 42px !important;
    min-height: 50px !important;
  }

  .vc-qv-swatch--thumb img.vc-qv-swatch-img {
    height: 30px !important;
  }

  .vc-qv-swatch-label {
    font-size: 8px !important;
  }

  .vc-qv-button {
    padding: 10px 12px;
    font-size: 13px;
  }

  .vc-qv-qty button {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .vc-qv-qty input {
    width: 36px;
    height: 26px;
    font-size: 12px;
  }

  .vc-qv-more-link {
    font-size: 12px;
  }
}

/* ============================================
   TABLET (481px - 768px)
============================================ */
@media (min-width: 481px) and (max-width: 768px) {
  .vc-qv-slider {
    min-height: 160px;
    max-height: 40vh;
  }

  .vc-qv-thumbs button {
    width: 32px !important;
    height: 32px !important;
  }

  .vc-qv-title {
    font-size: 1.05rem;
  }

  .vc-qv-price {
    font-size: 1.2rem;
  }

  .vc-qv-swatch--thumb {
    min-width: 54px !important;
    min-height: 62px !important;
  }

  .vc-qv-swatch--thumb img.vc-qv-swatch-img {
    height: 40px !important;
  }

  .vc-qv-qty button {
    width: 32px;
    height: 32px;
  }

  .vc-qv-qty input {
    width: 46px;
    height: 32px;
  }
}

/* === Close Button === */
.vc-qv-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--vc-bg-white, #fff);
  border: 1px solid var(--vc-border, #E2E8F0);
  color: var(--vc-text-primary, #1A202C);
  font-size: 20px;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--vc-shadow-sm, 0 1px 3px rgba(0,0,0,.1));
  transition: background var(--vc-transition-normal, .2s ease), color var(--vc-transition-normal, .2s ease), border-color var(--vc-transition-normal, .2s ease);
}
.vc-qv-close:hover { 
  background: var(--vc-error, #EF4444); 
  color: var(--vc-text-inverse, #fff); 
  border-color: var(--vc-error, #EF4444); 
}

/* === Media === */
.vc-qv-media { display: grid; gap: 12px; align-content: start; }
.vc-qv-img {
  width: 100%;
  height: auto;
  border-radius: var(--vc-radius-md, 10px);
  object-fit: cover;
  background: var(--vc-bg-light, #F7FAFC);
}

/* === Swipe Slider === */
.vc-qv-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--vc-radius-md, 10px);
  background: var(--vc-bg-light, #F7FAFC);
}
.vc-qv-track {
  display: flex;
  will-change: transform;
  transition: transform 280ms ease;
}
.vc-qv-slide {
  flex: 0 0 100%;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: pan-y;
}
.vc-qv-slide img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  border-radius: var(--vc-radius-md, 10px);
}

/* Pagination dots */
.vc-qv-dots {
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  display: flex; gap: 6px; justify-content: center; align-items: center;
  pointer-events: none;
}
.vc-qv-dot {
  width: 6px; height: 6px; border-radius: var(--vc-radius-full, 999px);
  background: var(--vc-border-dark, rgba(0,0,0,.25));
}
.vc-qv-dot[aria-current="true"] { background: var(--vc-text-primary, #1A202C); }

@media (max-width: 480px) {
  .vc-qv-dot[aria-current="true"] { background: var(--vc-text-primary, #1A202C); }
}

/* Thumbnails */
.vc-qv-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.vc-qv-thumbs button {
  border: 1px solid var(--vc-border, #E2E8F0);
  border-radius: var(--vc-radius-md, 8px);
  background: var(--vc-bg-white, #fff);
  cursor: pointer;
  padding: 0;
  width: 60px;
  height: 60px;
}
.vc-qv-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--vc-radius-md, 8px);
}
.vc-qv-thumb[aria-pressed="true"] { outline: 2px solid var(--vc-brand-red, #E54B4B); outline-offset: 1px; }
.vc-qv-thumbs .vc-qv-thumb[aria-pressed="true"] { outline: 2px solid var(--vc-brand-red, #E54B4B); outline-offset: 1px; }

/* === Details Column === */
.vc-qv-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  min-height: 0;
  overflow: hidden;
}
.vc-qv-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--vc-text-primary, #1A202C);
  flex-shrink: 0;
}
.vc-qv-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  flex-shrink: 0;
}
.vc-qv-price { 
  font-size: 1.4rem; 
  font-weight: 700; 
  color: var(--vc-price, #E54B4B); 
}
.vc-qv-compare-price {
  font-size: 1rem;
  font-weight: 400;
  color: var(--vc-text-muted, #718096);
  text-decoration: line-through;
  margin-left: 6px;
}
.vc-qv-badge {
  font-size: 0.8rem;
  background: var(--vc-bg-subtle, #EDF2F7);
  border: 1px solid var(--vc-border, #E2E8F0);
  border-radius: var(--vc-radius-full, 999px);
  padding: 4px 8px;
  color: var(--vc-text-primary, #1A202C);
}

/* === Options (swatches) === */
.vc-qv-options { 
  margin: 0;
  max-height: 160px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.vc-qv-option {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.vc-qv-option > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vc-qv-swatch {
  border: 1px solid var(--vc-border-medium, #CBD5E0);
  border-radius: var(--vc-radius-md, 10px);
  padding: 8px 10px;
  background: var(--vc-bg-white, #fff);
  cursor: pointer;
  transition: border-color var(--vc-transition-fast, 0.15s ease);
}
.vc-qv-swatch[aria-pressed="true"] {
  border-color: var(--vc-brand-red, #E54B4B);
  box-shadow: 0 0 0 2px rgba(229, 75, 75, 0.1) inset;
}

/* Options scrollbar styling (desktop/tablet only) */
@media (min-width: 769px) {
  .vc-qv-options::-webkit-scrollbar {
    width: 4px;
  }
  .vc-qv-options::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 2px;
  }
  .vc-qv-options::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 2px;
  }
}

/* === Quantity === */
.vc-qv-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.vc-qv-qty-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--vc-text-primary, #1A202C);
  margin-right: 6px;
  user-select: none;
}

/* Tidy numeric spinners */
.vc-qv-qty input[type="number"]::-webkit-outer-spin-button,
.vc-qv-qty input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.vc-qv-qty input[type="number"] { -moz-appearance: textfield; }

/* Desktop quantity controls */
@media (min-width: 769px) {
  .vc-qv-qty button {
    width: 38px; height: 38px;
    border: 1px solid var(--vc-border-medium, #CBD5E0);
    border-radius: 50%;
    background: var(--vc-bg-white, #fff);
    font-size: 18px; line-height: 1;
    cursor: pointer;
    transition: background var(--vc-transition-fast, 0.15s ease);
  }
  .vc-qv-qty button:hover { background: var(--vc-bg-light, #F7FAFC); }
  .vc-qv-qty input {
    width: 70px; height: 38px;
    border: 1px solid var(--vc-border-medium, #CBD5E0); 
    border-radius: var(--vc-radius-md, 8px);
    text-align: center; font-size: 15px; font-weight: 500;
  }
}

/* === CTA (Add to cart + More details) === */
.vc-qv-cta {
  position: sticky;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.vc-qv-button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--vc-success, #10B981);
  color: var(--vc-text-inverse, #fff);
  border: none;
  border-radius: var(--vc-radius-full, 999px);
  padding: 14px 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--vc-transition-normal, 0.2s ease);
}
.vc-qv-button:hover,
.vc-qv-button:focus { background: var(--vc-success-hover, #059669); }

/* More details link */
.vc-qv-more { margin-top: 0; text-align: left; }
.vc-qv-more-link {
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vc-link, #2563EB);
  text-decoration: none;
  transition: color var(--vc-transition-fast, 0.15s ease);
}
.vc-qv-more-link:hover,
.vc-qv-more-link:focus { 
  text-decoration: underline; 
  color: var(--vc-link-hover, #1D4ED8); 
}

/* === Description === */
.vc-qv-details-accordion summary { cursor: pointer; font-weight: 600; margin-top: 0; }
.vc-qv-description { color: var(--vc-text-secondary, #4A5568); margin-top: 0; line-height: 1.5; }

/* === General focus safety === */
.vc-qv-modal :focus { outline: none; scroll-behavior: auto; scroll-margin: 0; }

/* === Desktop micro-tuning === */
@media (min-width: 901px) {
  .vc-qv-thumbs { margin-top: 10px; }
}

/* === Safety: zero default margins === */
.vc-qv-modal h1,
.vc-qv-modal h2,
.vc-qv-modal h3,
.vc-qv-modal p { margin: 0 !important; }

/* === Thumbnail-type option chips === */
.vc-qv-swatch--thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 2px solid transparent;
  border-radius: var(--vc-radius-md, 8px);
  background: var(--vc-bg-white, #fff);
  transition: border-color var(--vc-transition-normal, 0.2s ease), box-shadow var(--vc-transition-normal, 0.2s ease);
  min-width: 70px;
  min-height: 80px;
  cursor: pointer;
}

.vc-qv-swatch--thumb[aria-pressed="true"] {
  border-color: var(--vc-brand-red, #E54B4B);
  box-shadow: 0 0 0 2px rgba(229, 75, 75, 0.2);
}

.vc-qv-swatch--thumb img.vc-qv-swatch-img {
  display: block;
  width: 100%;
  height: 60px;
  object-fit: contain;
  border-radius: var(--vc-radius-sm, 6px);
  background: var(--vc-bg-light, #F7FAFC);
  margin-bottom: 4px;
}

.vc-qv-swatch-label {
  font-size: 13px;
  text-align: center;
  color: var(--vc-text-primary, #1A202C);
  line-height: 1.2;
  margin-bottom: 0.25rem !important;
}

/* Disabled option */
.vc-qv-swatch--thumb:disabled {
  opacity: .45;
  cursor: not-allowed;
}

/* CTA states */
.vc-qv-button[aria-busy="true"],
.vc-qv-button.is-loading {
  pointer-events: none;
  opacity: .75;
}

/* Optional tiny spinner */
.vc-qv-button.is-loading::after,
.vc-qv-button[aria-busy="true"]::after {
  content: "";
  width: 14px; height: 14px;
  margin-left: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  border-top-color: var(--vc-text-inverse, #fff);
  display: inline-block;
  animation: vcSpin .8s linear infinite;
}
@keyframes vcSpin { to { transform: rotate(360deg); } }

/* ====== VC Quick View – Skeleton ====== */
.vc-qv-skeleton { display:none; padding:16px; }
.vc-qv-skeleton[aria-hidden="false"] { display:block; }

.vc-qv-skel-grid { display:grid; grid-template-columns: 1fr 1fr; gap:24px; align-items:flex-start; }
@media (max-width: 900px){ .vc-qv-skel-grid { grid-template-columns: 1fr; } }

.vc-qv-skel-box { width:100%; height:360px; border-radius: var(--vc-radius-lg, 12px); }
.vc-qv-skel-line { height:14px; width: 60%; border-radius: var(--vc-radius-md, 8px); margin:10px 0; }
.vc-qv-skel-chip-row { display:flex; gap:12px; margin-top:8px; }
.vc-qv-skel-chip { width:86px; height:66px; border-radius: var(--vc-radius-lg, 12px); }

.vc-qv-skel-cta { height:48px; border-radius: var(--vc-radius-full, 24px); margin-top:16px; }

/* Shimmer effect */
.vc-qv-shimmer {
  position: relative;
  background: var(--vc-bg-muted, #E2E8F0);
  overflow: hidden;
}
.vc-qv-shimmer::after {
  content: "";
  position: absolute; inset: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%,
                                    rgba(255,255,255,.6) 50%,
                                    rgba(255,255,255,0) 100%);
  animation: vc-qv-shine 1.2s infinite;
}
@keyframes vc-qv-shine { to { transform: translateX(100%); } }

/* Fade swap */
.vc-qv-body[aria-hidden="true"] { visibility:hidden; opacity:0; }
.vc-qv-body { transition: opacity .18s ease; }

/* Option group spacing */
.vc-qv-option-group {
  margin-bottom: 0.75rem;
}

/* === Right-side Buy Box column === */
.vc-cart-panel {
  background: var(--vc-bg-white, #fff);
  border: 1px solid var(--vc-border, #E2E8F0);
  border-radius: var(--vc-radius-lg, 12px);
  box-shadow: var(--vc-shadow-card, 0 2px 12px rgba(0,0,0,.08));
  padding: 16px;
  width: 100%;
  max-width: 360px;
  height: fit-content;
}

.vc-cart-panel__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--vc-text-primary, #1A202C);
}

.vc-cart-panel__inner { display:flex; flex-direction:column; gap:10px; }

/* Desktop: 3 columns layout */
@media (min-width: 1100px){
  .vc-pd{
    grid-template-columns: 1.1fr 0.9fr minmax(320px, 360px);
    gap: 24px;
  }
  .vc-cart-panel{
    grid-column: 3;
    align-self: start;
    position: sticky;
    top: 80px;
  }
}

/* Tablet & mobile: stack */
@media (max-width: 1099px){
  .vc-cart-panel{
    grid-column: 1 / -1;
    order: 3;
    position: static;
    max-width: none;
  }
}

/* Mobile bottom space */
@media (max-width:740px){
  .vc-qv-scroll{ padding-bottom:80px; }
}