/* custom quickview modal */
.cqv-modal { display:none; position:fixed; inset:0; z-index:99999; font-family:inherit; }
.cqv-modal.open { display:block; }
.cqv-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.55); }

/* panel */
.cqv-panel { position:relative; width:94%; max-width:1150px; margin:36px auto; background:#fff; border-radius:8px; box-shadow:0 20px 50px rgba(0,0,0,0.4); overflow:hidden; display:flex; padding:28px; gap:24px; }

/* close */
.cqv-close { position:absolute; right:14px; top:12px; background:transparent; border:0; font-size:28px; color:#666; cursor:pointer; }

/* content layout */
.cqv-content { display:flex; gap:24px; width:100%; align-items:flex-start; }
.cqv-left { flex:0 0 48%; max-width:48%; }
.cqv-right { flex:1 1 52%; max-width:52%; box-sizing:border-box; }

/* main image & arrows */
.cqv-main-image-wrap { position:relative; }
.cqv-main-image { width:100%; height:auto; display:block; border-radius:6px; object-fit:contain; background:#fafafa; }
.cqv-arrow { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,0.95); border:0; width:40px; height:40px; border-radius:50%; box-shadow:0 2px 8px rgba(0,0,0,0.15); cursor:pointer; font-size:20px; line-height:40px; text-align:center; }
.cqv-prev { left:10px; }
.cqv-next { right:10px; }

/* thumbnails */
.cqv-thumbs { display:flex; gap:10px; margin-top:12px; }
.cqv-thumb { border:2px solid transparent; padding:4px; background:#fff; border-radius:6px; cursor:pointer; }
.cqv-thumb img { width:64px; height:64px; object-fit:cover; display:block; border-radius:4px; }

/* right column */
.cqv-title { margin:0 0 8px; font-size:18px; font-weight:700; text-transform:uppercase; color:#222; }
.cqv-rating { margin-bottom:10px; color:#999; }
.cqv-shortdesc { color:#444; margin-bottom:12px; line-height:1.4; }

/* labels and price */
.cqv-labels { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:12px; }
.cqv-label { padding:6px 10px; background:#f4f4f4; border-radius:16px; font-size:12px; color:#333; }
.cqv-label.stock.in { background:#e8fff0; color:#0b7a44; }
.cqv-price { font-size:22px; font-weight:800; margin-bottom:12px; color:#111; }

/* add block */
.cqv-add-block { margin-bottom:12px; }
.cqv-add-block .single_add_to_cart_button,
.cqv-add-block .button { display:inline-block; width:100%; padding:14px 18px; background:#0a4ea6; color:#fff; border:0; border-radius:40px; font-size:16px; text-align:center; cursor:pointer; }

/* small payments area */
.cqv-payments { margin-top:8px; display:flex; gap:10px; align-items:center; }
.cqv-pay-icon { width:36px; height:auto; }

/* links */
.cqv-links { margin-top:14px; font-size:13px; color:#666; }
.cqv-full-link { color:#0a66c2; display:inline-block; margin-bottom:6px; }

/* loading/error */
.cqv-loading, .cqv-error { padding:40px; text-align:center; font-size:16px; }

/* prevent background scroll when modal open */
body.cqv-open { overflow:hidden !important; }

/* responsive */
@media (max-width: 900px) {
    .cqv-panel { padding:18px; flex-direction:column; }
    .cqv-left, .cqv-right { max-width:100%; flex-basis:100%; }
    .cqv-left { order:1; }
    .cqv-right { order:2; margin-top:10px; }
}

/* optional add-to-cart states */
.cqv-add-block .single_add_to_cart_button.loading { opacity:0.7; pointer-events:none; }
.cqv-add-block .single_add_to_cart_button.added { background:#118a3b !important; }
