/* ── Cab Detail Page ── */

.vk-cd-breadcrumb {
    padding: 10px 0 0;
    font-size: 13px; color: #6b7280;
}
.vk-cd-breadcrumb a { color: #d4850a; text-decoration: none; }
.vk-cd-breadcrumb a:hover { text-decoration: underline; }
.vk-cd-breadcrumb span { margin: 0 6px; color: #d1d5db; }

/* Title row */
.vk-cd-title-row {
    padding: 18px 0 14px;
    display: flex; align-items: flex-start;
    justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
}
.vk-cd-title-left h1 {
    font-size: 26px; font-weight: 800;
    color: #0d1b2a; margin: 0 0 8px;
    line-height: 1.25; border: none !important;
}
:root.vk-dark .vk-cd-title-left h1 { color: #e5e7eb; }
.vk-cd-meta {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 14px; font-size: 13.5px; color: #374151;
}
:root.vk-dark .vk-cd-meta { color: #9ca3af; }
.vk-cd-stars { color: #f59e0b; letter-spacing: 1px; }
.vk-cd-rating { font-weight: 700; color: #0d1b2a; font-size: 13.5px; }
:root.vk-dark .vk-cd-rating { color: #e5e7eb; }
.vk-cd-cat-link { color: #d4850a; font-weight: 600; font-size: 13px; text-decoration: none; }
.vk-cd-cat-link:hover { text-decoration: underline; }

/* Gallery – 3 images: hero left + 2 stacked right */
.vk-cd-gallery {
    border-radius: 18px; overflow: hidden;
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 230px 230px;
    gap: 6px; position: relative;
    margin-bottom: 32px;
}
.vk-cd-gallery-item {
    overflow: hidden; cursor: pointer;
    position: relative; background: #1a1a2e;
}
.vk-cd-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease; display: block;
}
.vk-cd-gallery-item:hover img { transform: scale(1.04); }
.vk-cd-gallery-item.vk-cd-gallery-hero {
    grid-column: 1; grid-row: 1 / 3;
    border-radius: 18px 0 0 18px;
}
.vk-cd-gallery-item:nth-child(2) { border-radius: 0 18px 0 0; }
.vk-cd-gallery-item:nth-child(3) { border-radius: 0 0 18px 0; }
.vk-cd-gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0); transition: background 0.25s;
    pointer-events: none;
}
.vk-cd-gallery-item:hover::after { background: rgba(0,0,0,0.18); }
.vk-cd-gallery-btn {
    position: absolute; bottom: 16px; right: 16px;
    display: flex; align-items: center; gap: 7px;
    padding: 9px 16px; background: #fff; color: #0d1b2a;
    font-size: 13px; font-weight: 700; border-radius: 10px;
    border: 1.5px solid #0d1b2a; cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: background 0.2s, color 0.2s; z-index: 5;
}
.vk-cd-gallery-btn:hover { background: #0d1b2a; color: #fff; }

/* Lightbox */
.vk-lb-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.92); z-index: 9999;
    align-items: center; justify-content: center; padding: 20px;
}
.vk-lb-overlay.active { display: flex; flex-direction: column; }
.vk-lb-close {
    position: absolute; top: 18px; right: 22px;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.12); border: none;
    color: #fff; font-size: 22px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s; z-index: 10;
}
.vk-lb-close:hover { background: rgba(255,255,255,0.25); }
.vk-lb-main {
    position: relative; display: flex;
    align-items: center; justify-content: center;
    flex: 1; width: 100%; max-width: 900px; margin: 0 auto;
}
.vk-lb-main img {
    max-width: 100%; max-height: 70vh; border-radius: 12px;
    object-fit: contain; box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.vk-lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: none;
    color: #fff; font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.vk-lb-nav:hover { background: rgba(255,255,255,0.30); }
.vk-lb-nav.prev { left: -56px; }
.vk-lb-nav.next { right: -56px; }
.vk-lb-counter { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600; margin-top: 14px; }
.vk-lb-thumbs {
    display: flex; gap: 8px; margin-top: 14px;
    overflow-x: auto; max-width: 900px;
    padding-bottom: 4px; justify-content: center;
}
.vk-lb-thumb {
    width: 64px; height: 48px; border-radius: 8px;
    overflow: hidden; flex-shrink: 0; cursor: pointer;
    border: 2.5px solid transparent; transition: border-color 0.2s;
}
.vk-lb-thumb.active { border-color: #d4850a; }
.vk-lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Content layout */
.vk-cd-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px; align-items: start;
    margin-bottom: 60px;
}

/* Main content */
.vk-cd-divider { border: none; border-top: 1px solid #e5e7eb; margin: 28px 0; }
:root.vk-dark .vk-cd-divider { border-color: #1e3246; }
.vk-cd-section-title { font-size: 18px; font-weight: 700; color: #0d1b2a; margin: 0 0 14px; }
:root.vk-dark .vk-cd-section-title { color: #e5e7eb; }

/* Provider bar */
.vk-cd-provider-bar {
    display: flex; align-items: center; gap: 14px; padding: 18px 0;
}
.vk-cd-provider-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #0d1b2a, #d4850a);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 20px; color: #fff;
}
.vk-cd-provider-info h4 { font-size: 15px; font-weight: 700; color: #0d1b2a; margin: 0 0 2px; }
:root.vk-dark .vk-cd-provider-info h4 { color: #e5e7eb; }
.vk-cd-provider-info p { font-size: 13px; color: #6b7280; margin: 0; }

/* Highlights */
.vk-cd-highlights { display: flex; flex-direction: column; gap: 18px; }
.vk-cd-highlight-item { display: flex; align-items: flex-start; gap: 14px; }
.vk-cd-highlight-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(212,133,10,0.10);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: #d4850a; font-size: 16px;
}
.vk-cd-highlight-text h5 { font-size: 14px; font-weight: 700; color: #0d1b2a; margin: 0 0 2px; }
:root.vk-dark .vk-cd-highlight-text h5 { color: #e5e7eb; }
.vk-cd-highlight-text p { font-size: 13px; color: #6b7280; margin: 0; }

/* Description */
.vk-cd-description { font-size: 15px; line-height: 1.75; color: #374151; }
:root.vk-dark .vk-cd-description { color: #9ca3af; }

/* Specs table */
.vk-cd-specs-table { width: 100%; border-collapse: collapse; }
.vk-cd-specs-table tr { border-bottom: 1px solid #f3f4f6; }
:root.vk-dark .vk-cd-specs-table tr { border-color: #1e3246; }
.vk-cd-specs-table tr:last-child { border-bottom: none; }
.vk-cd-specs-table td { padding: 12px 0; vertical-align: top; font-size: 14px; }
.vk-cd-specs-table .vk-spec-label {
    width: 140px; font-weight: 700; color: #374151;
    font-size: 13px; text-transform: uppercase; letter-spacing: 0.3px;
}
:root.vk-dark .vk-cd-specs-table .vk-spec-label { color: #8fa3b8; }
.vk-cd-specs-table .vk-spec-val { color: #1a1a2e; }
:root.vk-dark .vk-cd-specs-table .vk-spec-val { color: #e5e7eb; }
.vk-cd-specs-table .vk-spec-val i { color: #d4850a; margin-right: 6px; }

/* Includes list */
.vk-cd-includes { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vk-cd-includes li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #374151; }
:root.vk-dark .vk-cd-includes li { color: #9ca3af; }
.vk-cd-includes li i { color: #16a34a; font-size: 14px; width: 18px; flex-shrink: 0; }

/* Sticky sidebar */
.vk-cd-sidebar { position: sticky; top: 120px; }

/* Similar cabs */
.vk-cd-similar { margin-bottom: 60px; }
.vk-cd-similar-title { font-size: 20px; font-weight: 800; color: #0d1b2a; margin: 0 0 20px; }
:root.vk-dark .vk-cd-similar-title { color: #e5e7eb; }
.vk-cd-similar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.vk-cd-sim-card {
    border-radius: 14px; overflow: hidden;
    background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    text-decoration: none; display: block;
    transition: transform 0.22s, box-shadow 0.22s;
}
:root.vk-dark .vk-cd-sim-card { background: #152237; }
.vk-cd-sim-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); text-decoration: none; }
.vk-cd-sim-img { height: 150px; overflow: hidden; background: #1a1a2e; }
.vk-cd-sim-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; display: block; }
.vk-cd-sim-card:hover .vk-cd-sim-img img { transform: scale(1.05); }
.vk-cd-sim-body { padding: 12px 14px 14px; }
.vk-cd-sim-body h4 { font-size: 13px; font-weight: 700; color: #0d1b2a; margin: 0 0 4px; line-height: 1.35; }
:root.vk-dark .vk-cd-sim-body h4 { color: #e5e7eb; }
.vk-cd-sim-body p { font-size: 12px; color: #6b7280; margin: 0; }

/* Responsive */
@media (max-width: 991px) {
    .vk-cd-layout { grid-template-columns: 1fr; gap: 28px; }
    .vk-cd-sidebar { display: none; }
    .vk-cd-similar-grid { grid-template-columns: repeat(2, 1fr); }
    .vk-cd-title-left h1 { font-size: 20px; }
    .vk-cd-mob-bar { display: flex !important; }
    .vk-cd-faq, .vk-cd-similar { margin-bottom: 80px; }
}

/* ── Mobile sticky bar ── */
.vk-cd-mob-bar {
    display: none; position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff; border-top: 1px solid #e5e7eb;
    padding: 12px 16px 18px; z-index: 980;
    align-items: center; justify-content: space-between;
    gap: 12px; box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
}
:root.vk-dark .vk-cd-mob-bar { background: #0d1b2a; border-color: #1e3246; }
.vk-cd-mob-price-val { font-size: 20px; font-weight: 800; color: #d4850a; line-height: 1; }
.vk-cd-mob-price-sub { font-size: 11.5px; color: #6b7280; margin-top: 2px; }
.vk-cd-mob-btns { display: flex; gap: 8px; flex-shrink: 0; }
.vk-cd-mob-btn-book {
    display: flex; align-items: center; gap: 6px;
    padding: 11px 18px; background: #0d1b2a; color: #fff;
    font-size: 13.5px; font-weight: 700; border: none; border-radius: 10px;
    cursor: pointer; font-family: inherit; transition: background 0.2s;
}
.vk-cd-mob-btn-book:hover { background: #1a3550; }
.vk-cd-mob-btn-wa {
    display: flex; align-items: center; gap: 6px;
    padding: 11px 16px; background: #25D366; color: #fff;
    font-size: 13.5px; font-weight: 700; border: none; border-radius: 10px;
    cursor: pointer; font-family: inherit; text-decoration: none;
    box-shadow: 0 3px 10px rgba(37,211,102,0.30); transition: background 0.2s;
}
.vk-cd-mob-btn-wa:hover { background: #1da851; text-decoration: none; }
/* ── Sheet ── */
.vk-cd-sheet-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.48); z-index: 1070;
}
.vk-cd-sheet-overlay.active { display: block; }
.vk-cd-sheet {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff; border-radius: 20px 20px 0 0;
    z-index: 1080; max-height: 88vh; overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
}
:root.vk-dark .vk-cd-sheet { background: #0d1b2a; }
.vk-cd-sheet.active { transform: translateY(0); }
.vk-cd-sheet-handle { width: 40px; height: 4px; background: #d1d5db; border-radius: 2px; margin: 12px auto 0; }
.vk-cd-sheet-top { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px 0; }
.vk-cd-sheet-top h3 { font-size: 17px; font-weight: 800; color: #0d1b2a; margin: 0; }
:root.vk-dark .vk-cd-sheet-top h3 { color: #e5e7eb; }
.vk-cd-sheet-x { width: 32px; height: 32px; border-radius: 50%; background: #f3f4f6; border: none; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #374151; }
:root.vk-dark .vk-cd-sheet-x { background: #1e3246; color: #9ca3af; }
.vk-cd-sheet-body { padding: 14px 20px 36px; }
@media (max-width: 600px) {
    .vk-cd-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 130px;
    }
    .vk-cd-gallery-item.vk-cd-gallery-hero { grid-column: 1/3; grid-row: 1; border-radius: 18px 18px 0 0; }
    .vk-cd-gallery-item:nth-child(2) { border-radius: 0 0 0 18px; }
    .vk-cd-gallery-item:nth-child(3) { border-radius: 0 0 18px 0; }
    .vk-lb-nav.prev { left: 0; }
    .vk-lb-nav.next { right: 0; }
}

/* ── Cab Booking Card ── */
.vk-cb-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,0.10);
    margin-bottom: 24px;
}
:root.vk-dark .vk-cb-card { background: #152237; box-shadow: 0 4px 28px rgba(0,0,0,0.30); }

.vk-cb-header {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3550 100%);
    padding: 20px 22px 18px;
}
.vk-cb-header h3 {
    color: #fff !important; font-size: 17px !important; font-weight: 700 !important;
    margin: 0 0 4px !important; border: none !important;
}
.vk-cb-header p { color: rgba(255,255,255,0.60); font-size: 12.5px; margin: 0; }
.vk-cb-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(37,211,102,0.18); color: #25D366;
    font-size: 11.5px; font-weight: 600;
    padding: 3px 10px; border-radius: 20px; margin-top: 8px;
}

.vk-cb-body { padding: 20px 22px 18px; }

.vk-cb-group { margin-bottom: 13px; }
.vk-cb-group label {
    display: block; font-size: 11.5px; font-weight: 700;
    color: #374151; margin-bottom: 5px;
    letter-spacing: 0.3px; text-transform: uppercase;
}
:root.vk-dark .vk-cb-group label { color: #8fa3b8; }

.vk-cb-group input,
.vk-cb-group select,
.vk-cb-group textarea {
    width: 100%; padding: 10px 13px;
    border: 1.5px solid #e5e7eb; border-radius: 9px;
    font-size: 13.5px; font-family: inherit; color: #1a1a2e;
    background: #f9fafb; outline: none; box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none; appearance: none;
}
.vk-cb-group textarea { resize: none; height: 72px; }
.vk-cb-group input:focus,
.vk-cb-group select:focus,
.vk-cb-group textarea:focus {
    border-color: #d4850a;
    box-shadow: 0 0 0 3px rgba(212,133,10,0.12);
    background: #fff;
}
:root.vk-dark .vk-cb-group input,
:root.vk-dark .vk-cb-group select,
:root.vk-dark .vk-cb-group textarea {
    background: #0d1b2a; border-color: #1e3246; color: #e5e7eb;
}

/* Location row */
.vk-cb-loc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 13px;
}

/* Two-col row */
.vk-cb-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 13px; }

/* Counter */
.vk-cb-counter-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 13px;
}
.vk-cb-counter-item label {
    display: block; font-size: 11.5px; font-weight: 700;
    color: #374151; margin-bottom: 5px;
    letter-spacing: 0.3px; text-transform: uppercase;
}
:root.vk-dark .vk-cb-counter-item label { color: #8fa3b8; }
.vk-cb-counter {
    display: flex; align-items: center;
    border: 1.5px solid #e5e7eb; border-radius: 9px;
    overflow: hidden; background: #f9fafb;
    transition: border-color 0.2s;
}
:root.vk-dark .vk-cb-counter { background: #0d1b2a; border-color: #1e3246; }
.vk-cb-counter:focus-within { border-color: #d4850a; box-shadow: 0 0 0 3px rgba(212,133,10,0.10); }
.vk-cb-counter button {
    width: 32px; height: 38px; border: none;
    background: transparent; font-size: 17px; font-weight: 700;
    color: #6b7280; cursor: pointer; padding: 0; flex-shrink: 0;
    transition: color 0.15s, background 0.15s;
}
.vk-cb-counter button:hover { color: #d4850a; background: rgba(212,133,10,0.08); }
.vk-cb-counter input {
    flex: 1; border: none !important; box-shadow: none !important;
    background: transparent !important; text-align: center;
    font-size: 14px; font-weight: 700; color: #1a1a2e;
    padding: 0 !important; outline: none;
}
:root.vk-dark .vk-cb-counter input { color: #e5e7eb; }

/* Carrier toggle */
.vk-cb-carrier {
    display: flex; align-items: center; justify-content: space-between;
    background: #f9fafb; border: 1.5px solid #e5e7eb;
    border-radius: 9px; padding: 10px 13px; margin-bottom: 13px;
    cursor: pointer;
    transition: border-color 0.2s;
}
:root.vk-dark .vk-cb-carrier { background: #0d1b2a; border-color: #1e3246; }
.vk-cb-carrier:has(input:checked) { border-color: #d4850a; background: rgba(212,133,10,0.05); }
.vk-cb-carrier-label {
    display: flex; align-items: center; gap: 9px;
    font-size: 13.5px; font-weight: 600; color: #374151; cursor: pointer;
}
:root.vk-dark .vk-cb-carrier-label { color: #e5e7eb; }
.vk-cb-carrier-label i { color: #d4850a; font-size: 16px; }
.vk-cb-carrier-sub { font-size: 11.5px; color: #6b7280; font-weight: 400; }
/* Toggle switch */
.vk-cb-toggle {
    position: relative; width: 42px; height: 24px; flex-shrink: 0;
}
.vk-cb-toggle input { opacity: 0; width: 0; height: 0; }
.vk-cb-toggle-track {
    position: absolute; inset: 0;
    background: #d1d5db; border-radius: 999px; cursor: pointer;
    transition: background 0.25s;
}
.vk-cb-toggle input:checked + .vk-cb-toggle-track { background: #d4850a; }
.vk-cb-toggle-track::before {
    content: ''; position: absolute;
    left: 3px; top: 3px;
    width: 18px; height: 18px; border-radius: 50%;
    background: #fff; transition: transform 0.25s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.vk-cb-toggle input:checked + .vk-cb-toggle-track::before { transform: translateX(18px); }

/* Buttons */
.vk-cb-btn-wa {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 13px;
    background: #25D366; color: #fff;
    font-size: 14.5px; font-weight: 700;
    border: none; border-radius: 10px; cursor: pointer;
    font-family: inherit; margin-bottom: 10px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 3px 12px rgba(37,211,102,0.28);
}
.vk-cb-btn-wa:hover { background: #1da851; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(37,211,102,0.38); }
.vk-cb-btn-call {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 11px;
    background: transparent; color: #0d1b2a;
    font-size: 14px; font-weight: 700;
    border: 1.5px solid #0d1b2a; border-radius: 10px;
    cursor: pointer; font-family: inherit; text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.vk-cb-btn-call:hover { background: #0d1b2a; color: #fff; text-decoration: none; }
:root.vk-dark .vk-cb-btn-call { border-color: #d4850a; color: #d4850a; }
:root.vk-dark .vk-cb-btn-call:hover { background: #d4850a; color: #fff; }

/* Helpline */
.vk-cb-helpline {
    background: linear-gradient(135deg, #0d1b2a, #1a3550);
    border-radius: 16px; padding: 20px 22px;
    margin-bottom: 24px; position: relative; overflow: hidden;
}
.vk-cb-helpline::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/cab/innova-car-airport-pickup-service-in-varanasi-1678201795.png') center/cover no-repeat;
    opacity: 0.12;
}
.vk-cb-helpline-inner { position: relative; z-index: 1; }
.vk-cb-helpline h4 { color: #fff !important; font-size: 15px !important; font-weight: 700 !important; margin: 0 0 3px !important; border: none !important; }
.vk-cb-helpline p { color: rgba(255,255,255,0.60); font-size: 12.5px; margin: 0 0 12px; }
.vk-cb-helpline a {
    display: flex; align-items: center; gap: 8px;
    color: #f0a62e; font-size: 13.5px; font-weight: 600;
    text-decoration: none; margin-bottom: 7px; transition: color 0.18s;
}
.vk-cb-helpline a:hover { color: #fff; }
.vk-cb-helpline a i { color: #d4850a; font-size: 13px; }

/* FAQ accordion */
.vk-cd-faq { margin-top: 0; }
.vk-faq-item {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}
:root.vk-dark .vk-faq-item { border-color: #1e3246; }
.vk-faq-item.open { border-color: #d4850a; }
.vk-faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px 18px; cursor: pointer;
    background: #fff; gap: 12px;
    user-select: none;
}
:root.vk-dark .vk-faq-q { background: #152237; }
.vk-faq-item.open .vk-faq-q { background: rgba(212,133,10,0.05); }
.vk-faq-q span {
    font-size: 14px; font-weight: 700; color: #0d1b2a; line-height: 1.4; flex: 1;
}
:root.vk-dark .vk-faq-q span { color: #e5e7eb; }
.vk-faq-icon {
    width: 24px; height: 24px; border-radius: 50%;
    background: #f3f4f6; display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #6b7280; flex-shrink: 0;
    transition: background 0.2s, transform 0.3s, color 0.2s;
}
:root.vk-dark .vk-faq-icon { background: #1e3246; color: #8fa3b8; }
.vk-faq-item.open .vk-faq-icon { background: #d4850a; color: #fff; transform: rotate(180deg); }
.vk-faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s;
    padding: 0 18px;
    font-size: 14px; line-height: 1.7; color: #374151;
}
:root.vk-dark .vk-faq-a { color: #9ca3af; }
.vk-faq-item.open .vk-faq-a { max-height: 300px; padding: 0 18px 15px; }
