.booki-vlist-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    box-sizing: border-box;
}

.booki-vlist-container * {
    box-sizing: border-box;
}

/* Loading */
.booki-vlist-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    color: #6b7280;
    gap: 16px;
}

/* Error */
.booki-vlist-error {
    text-align: center;
    padding: 40px;
    color: #ef4444;
}

/* Grid */
.booki-vlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Card */
.booki-vlist-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booki-vlist-card:hover {
    border-color: var(--booki-primary-color, #1a56db);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Image */
.booki-vlist-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f3f4f6;
    background-repeat: no-repeat;
}

/* Body */
.booki-vlist-card-body {
    padding: 20px;
}

.booki-vlist-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Specs */
.booki-vlist-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.booki-vlist-card-specs span {
    background: #f3f4f6;
    color: #374151;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Price */
.booki-vlist-card-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--booki-primary-color, #1a56db);
    margin-bottom: 16px;
}

/* Button */
.booki-vlist-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--booki-primary-color, #1a56db);
    color: #ffffff !important;
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}

.booki-vlist-btn:hover {
    opacity: 0.88;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Responsive */
@media (max-width: 640px) {
    .booki-vlist-container {
        padding: 12px;
    }

    .booki-vlist-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .booki-vlist-card-image {
        height: 180px;
    }
}

/* Filter bar */
.booki-vlist-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

.booki-vlist-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booki-vlist-filter-label {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.booki-vlist-filter-sep {
    width: 1px;
    height: 36px;
    background: #e5e7eb;
    align-self: flex-end;
    margin-bottom: 2px;
}

.booki-vlist-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.booki-vlist-chip {
    font-size: 13px;
    padding: 5px 13px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: #374151;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s ease;
    user-select: none;
}

.booki-vlist-chip:hover {
    border-color: var(--booki-primary-color, #1a56db);
    color: var(--booki-primary-color, #1a56db);
}

.booki-vlist-chip--active {
    background: var(--booki-primary-color, #1a56db);
    border-color: var(--booki-primary-color, #1a56db);
    color: #ffffff;
}

.booki-vlist-chip--active:hover {
    color: #ffffff;
}

/* Sort */
.booki-vlist-sort-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: auto;
}

.booki-vlist-sort-select {
    font-size: 13px;
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #f9fafb;
    color: #374151;
    cursor: pointer;
}

/* Results count */
.booki-vlist-count {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
    padding-left: 2px;
}

/* Empty state */
.booki-vlist-empty {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 640px) {
    .booki-vlist-filter-sep { display: none; }
    .booki-vlist-sort-wrap { margin-left: 0; width: 100%; }
    .booki-vlist-sort-select { width: 100%; }
}
