/* ═══════════════════════════════════════════════════════
   Vendors Listing — Hero + Filters + Category Carousels
   ═══════════════════════════════════════════════════════ */
.vlist-page {
    min-height: 100vh;
    background: var(--white);
}

/* Hero */
.vlist-hero {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.vlist-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vlist-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 30, 30, .25) 0%, rgba(30, 30, 30, .65) 100%);
    z-index: 1;
}

.vlist-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-4);
    padding-top: calc(var(--nav-height) + var(--topbar-height));
}

.vlist-hero-tag {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--saffron-gold-light);
    letter-spacing: .08em;
    margin-bottom: var(--space-2);
}

.vlist-hero-title {
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: var(--space-3);
    letter-spacing: -.01em;
}

.vlist-hero-sub {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
    letter-spacing: .2em;
    text-transform: uppercase;
}

/* Browse by Venue Categories */
.vlist-venue-cats {
    padding: 36px 0 12px;
    background: var(--white);
}
.vlist-venue-cats__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}
.vlist-venue-cats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.vlist-venue-cat-card {
    text-decoration: none;
    color: var(--gray-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.vlist-venue-cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.vlist-venue-cat-card__img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.vlist-venue-cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.vlist-venue-cat-card:hover .vlist-venue-cat-card__img img {
    transform: scale(1.05);
}
.vlist-venue-cat-card__name {
    display: block;
    padding: 10px 4px 2px;
    font-size: var(--text-sm);
    font-weight: 600;
}
@media (max-width: 768px) {
    .vlist-venue-cats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .vlist-venue-cats__title {
        font-size: 1.15rem;
    }
}

/* Filter Bar */
.vlist-filter-bar {
    position: relative;
    z-index: 30;
    margin-top: -32px;
}
.vlist-venue-cats + .vlist-filter-bar {
    margin-top: 0;
}

.vlist-filter-bar-inner {
    display: flex;
    justify-content: center;
}

.vlist-filter-group {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .10), 0 1px 4px rgba(0, 0, 0, .06);
    padding: 6px 8px;
    width: 100%;
    max-width: 920px;
}

.vlist-select-wrap {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: 10px 16px;
    flex: 1;
    min-width: 0;
}

.vlist-filter-select {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--charcoal);
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    appearance: none;
    width: 100%;
    min-width: 0;
    padding-right: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.vlist-filter-select:focus {
    color: var(--rani-pink);
}

.vlist-divider {
    width: 1px;
    height: 28px;
    background: var(--gray-200);
    flex-shrink: 0;
}

.vlist-search-wrap {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: 10px 16px;
    flex: 1.3;
    min-width: 0;
}

.vlist-search-input {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    color: var(--charcoal);
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
}

.vlist-search-input::placeholder {
    color: var(--gray-400);
}

/* Toolbar */
.vlist-toolbar {
    padding: var(--space-4) 0 0;
}

.vlist-toolbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-3);
}

.vlist-results-count {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.vlist-results-count strong {
    color: var(--charcoal);
    font-weight: 600;
}

.vlist-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--rani-pink);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--blush);
    border: 1px solid rgba(194, 24, 91, .08);
    transition: all var(--duration-fast) ease;
    cursor: pointer;
}

.vlist-clear-btn:hover {
    background: rgba(194, 24, 91, .1);
    border-color: rgba(194, 24, 91, .15);
}

/* Main */
.vlist-main {
    padding: var(--space-8) 0 var(--space-12);
}

/* Category Section */
.vlist-cat-section {
    margin-bottom: var(--space-10);
}

.vlist-cat-section:last-child {
    margin-bottom: 0;
}

.vlist-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-4);
}

.vlist-cat-title {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--charcoal);
    padding-left: var(--space-3);
    border-left: 3px solid var(--rani-pink);
}

.vlist-carousel-nav {
    display: flex;
    gap: var(--space-2);
}

.vlist-nav-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
    flex-shrink: 0;
}

.vlist-nav-btn:hover {
    border-color: var(--rani-pink);
    color: var(--rani-pink);
    background: var(--blush);
}

/* Carousel */
.vlist-carousel {
    display: flex;
    gap: var(--space-4);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: var(--space-2);
}

.vlist-carousel::-webkit-scrollbar {
    display: none;
}

/* Cards */
.vlist-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(194, 24, 91, .06);
    transition: all var(--duration-normal) var(--ease-out);
    text-decoration: none;
    box-shadow: var(--shadow-xs);
}

.vlist-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-warm);
    border-color: rgba(194, 24, 91, .1);
}

.vlist-card:hover .vlist-card-img img {
    transform: scale(1.05);
}

.vlist-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--gray-100);
}

.vlist-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-out);
}

.vlist-featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--saffron-gold), var(--saffron-gold-dark));
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: .04em;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(230, 162, 60, .3);
}

.vlist-rating-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(30, 30, 30, .7);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    z-index: 2;
}

.vlist-card-info {
    padding: var(--space-3) var(--space-4) var(--space-4);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vlist-vendor-name {
    font-family: var(--font-serif);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 2px;
}

.vlist-vendor-city {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-1);
}

.vlist-vendor-price {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--rani-pink);
    margin-top: auto;
    padding-top: 4px;
}

/* Empty State */
.vlist-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-20) var(--space-4);
    gap: var(--space-3);
}

.vlist-empty h3 {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    color: var(--charcoal);
}

.vlist-empty p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    max-width: 320px;
}

/* Responsive */
@media (max-width: 768px) {
    .vlist-hero {
        height: 280px;
    }

    .vlist-hero-title {
        font-size: var(--text-2xl);
    }

    .vlist-filter-bar {
        margin-top: -24px;
    }

    .vlist-filter-group {
        flex-direction: column;
        padding: var(--space-2);
        border-radius: var(--radius-md);
    }

    .vlist-select-wrap,
    .vlist-search-wrap {
        width: 100%;
        padding: 10px 12px;
    }

    .vlist-divider {
        width: 100%;
        height: 1px;
    }

    .vlist-card {
        flex: 0 0 200px;
    }
}

@media (max-width: 480px) {
    .vlist-hero {
        height: 240px;
    }

    .vlist-hero-title {
        font-size: var(--text-xl);
    }

    .vlist-card {
        flex: 0 0 180px;
    }
}
/* ─── Vendor Badge Chips on Listing Cards ─────────────── */
.vlist-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 4px 0;
}

.vlist-card-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 99px;
    letter-spacing: 0.02em;
}

.vlist-card-badge--blue   { background: #dbeafe; color: #1d4ed8; }
.vlist-card-badge--gold   { background: #fef9c3; color: #a16207; }
.vlist-card-badge--green  { background: #dcfce7; color: #166534; }
.vlist-card-badge--orange { background: #ffedd5; color: #c2410c; }
.vlist-card-badge--purple { background: #f3e8ff; color: #7e22ce; }

/* ═══════════════════════════════════════════════════════
   Compare Vendors Feature
   ═══════════════════════════════════════════════════════ */

/* Card Wrapper — replaces direct card in carousel */
.vlist-card-wrap {
    flex: 0 0 260px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(194, 24, 91, .06);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out),
                border-color var(--duration-normal) var(--ease-out);
}
.vlist-card-wrap:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-warm);
    border-color: rgba(194, 24, 91, .1);
}
.vlist-card-wrap:hover .vlist-card-img img { transform: scale(1.05); }
.vlist-card-wrap--compared {
    border-color: var(--rani-pink) !important;
    box-shadow: 0 0 0 2px rgba(194, 24, 91, .15), var(--shadow-warm) !important;
}
/* Strip standalone card behaviour when inside wrapper */
.vlist-card-wrap .vlist-card {
    flex: 1 1 auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
    scroll-snap-align: none;
    flex-basis: auto;
}
.vlist-card-wrap .vlist-card:hover { transform: none; box-shadow: none; }

/* Compare toggle button */
.vlist-compare-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 12px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--text-muted);
    background: var(--warm-gray);
    border: none;
    border-top: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--duration-fast) ease;
    flex-shrink: 0;
    width: 100%;
}
.vlist-compare-btn:hover:not(:disabled) {
    background: var(--blush);
    color: var(--rani-pink);
}
.vlist-compare-btn.is-added {
    background: rgba(194, 24, 91, .08);
    color: var(--rani-pink);
}
.vlist-compare-btn:disabled { opacity: .35; cursor: not-allowed; }

/* ── Sticky Compare Bar ──────────────────────────────── */
.compare-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--charcoal);
    color: var(--white);
    padding: 14px 24px;
    box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
.compare-bar-trans { transition: transform .3s ease, opacity .3s ease; }
.compare-bar-hidden { transform: translateY(100%); opacity: 0; }
.compare-bar-visible { transform: translateY(0); opacity: 1; }
.compare-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.compare-slots { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.compare-slot {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 8px 10px;
    width: 150px;
    flex-shrink: 0;
}
.compare-slot-filled, .compare-slot-empty { display: flex; align-items: center; gap: 8px; width: 100%; }
.compare-slot-img-wrap { position: relative; flex-shrink: 0; }
.compare-slot-img-wrap img {
    width: 34px; height: 34px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,.2);
    display: block;
}
.compare-slot-remove {
    position: absolute; top: -5px; right: -5px;
    width: 15px; height: 15px;
    border-radius: 50%;
    background: var(--rani-pink);
    color: white; font-size: 10px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer; padding: 0; line-height: 1;
}
.compare-slot-name { font-size: 11px; color: white; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; min-width: 0; }
.compare-slot-add-icon {
    width: 34px; height: 34px;
    border-radius: 6px;
    border: 2px dashed rgba(255,255,255,.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: rgba(255,255,255,.3); flex-shrink: 0;
}
.compare-slot-empty span { font-size: 11px; color: rgba(255,255,255,.4); }
.compare-bar-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.compare-bar-count { font-size: var(--text-xs); color: rgba(255,255,255,.55); }
.compare-bar-btn-primary {
    font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 600;
    padding: 10px 22px;
    background: var(--rani-pink); color: white;
    border: none; border-radius: var(--radius-md);
    cursor: pointer; transition: background var(--duration-fast) ease;
}
.compare-bar-btn-primary:hover:not(:disabled) { background: #a0154e; }
.compare-bar-btn-primary:disabled { opacity: .4; cursor: not-allowed; }
.compare-bar-btn-clear {
    font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 500;
    padding: 10px 14px;
    background: transparent; color: rgba(255,255,255,.65);
    border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md);
    cursor: pointer; transition: all var(--duration-fast) ease;
}
.compare-bar-btn-clear:hover { background: rgba(255,255,255,.08); color: white; }

/* ── Compare Modal ───────────────────────────────────── */
.compare-modal-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(0,0,0,.55);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
}
.compare-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%; max-width: 860px; max-height: 88vh;
    display: flex; flex-direction: column;
    box-shadow: 0 25px 60px rgba(0,0,0,.25); overflow: hidden;
}
.compare-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.compare-modal-title { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 600; color: var(--charcoal); }
.compare-modal-close {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: var(--warm-gray); border: none; border-radius: 50%;
    cursor: pointer; transition: all var(--duration-fast) ease; color: var(--charcoal);
}
.compare-modal-close:hover { background: var(--blush); color: var(--rani-pink); }
.compare-modal-body { overflow: auto; flex: 1; }
.compare-table-wrap { padding: 16px 24px 24px; }
.compare-table { width: 100%; border-collapse: collapse; font-family: var(--font-sans); font-size: var(--text-sm); }
.compare-th-label { width: 120px; padding: 14px 12px; background: var(--warm-gray); border-bottom: 2px solid var(--border); }
.compare-th-vendor {
    text-align: center; padding: 16px 12px;
    background: var(--warm-gray); border-bottom: 2px solid var(--border); border-left: 1px solid var(--border);
}
.compare-th-empty { background: #f9f9f9; }
.compare-th-vendor-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.compare-th-vendor-inner img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-md); border: 2px solid var(--border); }
.compare-th-vendor-inner strong { font-size: var(--text-sm); font-weight: 600; color: var(--charcoal); text-align: center; }
.compare-th-remove {
    font-size: var(--text-xs); color: var(--text-muted);
    background: none; border: 1px solid var(--border); border-radius: 99px;
    padding: 2px 10px; cursor: pointer; transition: all var(--duration-fast) ease;
}
.compare-th-remove:hover { color: var(--rani-pink); border-color: var(--rani-pink); }
.compare-empty-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 0; }
.compare-empty-plus {
    width: 48px; height: 48px;
    border-radius: var(--radius-md); border: 2px dashed var(--gray-300);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--gray-400);
}
.compare-empty-placeholder span { font-size: var(--text-xs); color: var(--text-muted); }
.compare-td-label {
    padding: 14px 12px; font-weight: 600; font-size: 11px;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em;
    background: var(--warm-gray); border-bottom: 1px solid var(--border);
}
.compare-td-val {
    padding: 14px 12px; text-align: center;
    font-size: var(--text-sm); color: var(--charcoal);
    border-bottom: 1px solid var(--border); border-left: 1px solid var(--border);
}
.compare-td-val:nth-child(even) { background: #fafafa; }
.compare-td-empty { color: var(--gray-300); background: #f9f9f9 !important; }
.compare-rating { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; }
.compare-reviews { display: block; font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }
.compare-td-price { font-weight: 600; color: var(--rani-pink); }
.compare-inquiry-btn {
    display: inline-flex; align-items: center;
    padding: 7px 16px;
    background: var(--rani-pink); color: white;
    border-radius: var(--radius-md); font-size: var(--text-xs); font-weight: 600;
    text-decoration: none; transition: background var(--duration-fast) ease;
}
.compare-inquiry-btn:hover { background: #a0154e; }

/* Responsive */
@media (max-width: 768px) {
    .vlist-card-wrap { flex: 0 0 200px; }
    .compare-slots { gap: 8px; }
    .compare-slot { width: 110px; padding: 6px 8px; }
    .compare-bar { padding: 10px 16px; }
}
@media (max-width: 480px) {
    .vlist-card-wrap { flex: 0 0 180px; }
    .compare-bar-inner { flex-direction: column; align-items: stretch; gap: 10px; }
    .compare-bar-actions { justify-content: space-between; }
}

/* ═══════════════════════════════════════════════════════
   Bulk Quote Request Feature
   ═══════════════════════════════════════════════════════ */

/* Filter bar "Get Free Quotes" button */
.vlist-bulk-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    background: var(--rani-pink);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--duration-fast) ease;
    margin: 4px;
}
.vlist-bulk-quote-btn:hover { background: #a0154e; }

/* Compare modal bulk CTA banner */
.compare-bulk-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #fff5f8, #fff);
    border-bottom: 1px solid var(--border);
    font-size: var(--text-sm);
    color: var(--text-muted);
    flex-wrap: wrap;
}
.compare-bulk-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    background: var(--rani-pink);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--duration-fast) ease;
    flex-shrink: 0;
}
.compare-bulk-cta-btn:hover { background: #a0154e; }

/* ── Bulk Quote Modal ────────────────────────────────── */
.bq-modal-overlay {
    position: fixed; inset: 0; z-index: 400;
    background: rgba(0,0,0,.55);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
}
.bq-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%; max-width: 920px; max-height: 90vh;
    display: flex; flex-direction: column;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
    overflow: hidden;
}
.bq-modal-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.bq-modal-title { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 600; color: var(--charcoal); }
.bq-modal-sub { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }
.bq-modal-close {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: var(--warm-gray); border: none; border-radius: 50%;
    cursor: pointer; transition: all var(--duration-fast) ease; color: var(--charcoal); flex-shrink: 0;
}
.bq-modal-close:hover { background: var(--blush); color: var(--rani-pink); }
.bq-modal-body {
    display: grid;
    grid-template-columns: 300px 1fr;
    overflow: hidden;
    flex: 1;
}

/* Left: vendor picker */
.bq-vendor-panel {
    display: flex; flex-direction: column;
    border-right: 1px solid var(--border);
    overflow: hidden;
}
.bq-panel-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px 8px;
}
.bq-panel-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.bq-selected-count { font-size: var(--text-xs); font-weight: 600; color: var(--rani-pink); }
.bq-vendor-search {
    margin: 0 12px 10px;
    padding: 8px 12px;
    font-family: var(--font-sans); font-size: var(--text-sm);
    border: 1px solid var(--border); border-radius: var(--radius-md);
    outline: none; background: var(--warm-gray);
    transition: border-color var(--duration-fast) ease;
}
.bq-vendor-search:focus { border-color: var(--rani-pink); background: white; }
.bq-vendor-list { flex: 1; overflow-y: auto; padding: 0 8px 12px; }
.bq-vendor-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 8px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--duration-fast) ease;
    border: 1px solid transparent;
    margin-bottom: 2px;
}
.bq-vendor-item:hover { background: var(--warm-gray); }
.bq-vendor-item.is-checked { background: rgba(194,24,91,.06); border-color: rgba(194,24,91,.15); }
.bq-vendor-img { width: 36px; height: 36px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: var(--gray-100); }
.bq-vendor-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bq-vendor-info { flex: 1; min-width: 0; }
.bq-vendor-name { display: block; font-size: var(--text-xs); font-weight: 600; color: var(--charcoal); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bq-vendor-meta { display: block; font-size: 10px; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bq-check-icon {
    width: 18px; height: 18px; border-radius: 50%;
    border: 1.5px solid var(--gray-300);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: transparent;
    transition: all var(--duration-fast) ease;
}
.bq-vendor-item.is-checked .bq-check-icon { background: var(--rani-pink); border-color: var(--rani-pink); color: white; }
.bq-no-results { text-align: center; padding: 24px; font-size: var(--text-sm); color: var(--text-muted); }

/* Right: form */
.bq-form-panel { padding: 20px 24px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.bq-form-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.bq-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bq-input {
    width: 100%; padding: 10px 14px;
    font-family: var(--font-sans); font-size: var(--text-sm); color: var(--charcoal);
    border: 1px solid var(--border); border-radius: var(--radius-md);
    outline: none; background: var(--warm-gray);
    transition: border-color var(--duration-fast) ease, background var(--duration-fast) ease;
    box-sizing: border-box;
}
.bq-input:focus { border-color: var(--rani-pink); background: white; }
.bq-textarea { resize: vertical; min-height: 80px; }
.bq-error { font-size: var(--text-xs); color: #dc2626; margin: 0; }
.bq-submit-btn {
    width: 100%; padding: 13px;
    font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 700;
    color: white; background: var(--rani-pink);
    border: none; border-radius: var(--radius-md);
    cursor: pointer; transition: background var(--duration-fast) ease;
    margin-top: auto;
}
.bq-submit-btn:hover:not(:disabled) { background: #a0154e; }
.bq-submit-btn:disabled { opacity: .5; cursor: not-allowed; }

/* Success state */
.bq-success {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; padding: 48px 24px; text-align: center;
}
.bq-success-icon {
    width: 56px; height: 56px;
    background: #d1fadf; color: #039855; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.bq-success h3 { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 700; color: var(--charcoal); }
.bq-success p { font-size: var(--text-sm); color: var(--text-muted); max-width: 360px; }
.bq-done-btn {
    padding: 10px 32px;
    font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 600;
    color: white; background: var(--rani-pink);
    border: none; border-radius: var(--radius-md); cursor: pointer;
    transition: background var(--duration-fast) ease;
}
.bq-done-btn:hover { background: #a0154e; }

/* Responsive */
@media (max-width: 768px) {
    .bq-modal-body { grid-template-columns: 1fr; }
    .bq-vendor-panel { border-right: none; border-bottom: 1px solid var(--border); max-height: 240px; }
    .bq-form-row { grid-template-columns: 1fr; }
    .vlist-bulk-quote-btn span { display: none; }
}
