/* ══ Cab Listing Page ══ */

.vk-cab-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -106px;
}
.vk-cab-hero img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 40%;
}
.vk-cab-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(13,27,42,0.75) 0%, rgba(13,27,42,0.45) 70%, rgba(212,133,10,0.2) 100%);
}
.vk-cab-hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 106px 20px 0;
}
.vk-cab-hero-content h1 {
    color: #fff !important;
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 800; margin: 0 0 10px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    letter-spacing: -0.5px; border: none !important;
}
.vk-cab-hero-content p { color: rgba(255,255,255,0.88); font-size: 15px; margin: 0; }
.vk-cab-hero-pills {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-top: 14px; flex-wrap: wrap;
}
.vk-cab-hero-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff; font-size: 12px; font-weight: 600;
    padding: 5px 13px; border-radius: 20px;
    backdrop-filter: blur(8px);
}

/* Stats */
.vk-cab-stats { background: #fff; border-bottom: 1px solid #e5e7eb; }
:root.vk-dark .vk-cab-stats { background: #152237; border-color: #1e3246; }
.vk-cab-stats-inner { display: flex; align-items: stretch; }
.vk-cab-stat {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 16px 12px; border-right: 1px solid #e5e7eb; text-align: center;
}
:root.vk-dark .vk-cab-stat { border-color: #1e3246; }
.vk-cab-stat:last-child { border-right: none; }
.vk-cab-stat-num { font-size: 21px; font-weight: 800; color: #d4850a; line-height: 1; margin-bottom: 3px; }
.vk-cab-stat-label { font-size: 12px; color: #6b7280; font-weight: 500; }
:root.vk-dark .vk-cab-stat-label { color: #8fa3b8; }

/* ── CATEGORY SECTION ── */
.vk-cab-categories {
    background: #fff;
    padding: 40px 0 36px;
    border-bottom: 1px solid #e5e7eb;
}
:root.vk-dark .vk-cab-categories { background: #0d1b2a; border-color: #1e3246; }

.vk-cat-section-head {
    text-align: center;
    margin-bottom: 28px;
}
.vk-cat-section-head h2 {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #0d1b2a !important;
    margin: 0 0 6px !important;
    border: none !important;
    letter-spacing: -0.3px;
}
:root.vk-dark .vk-cat-section-head h2 { color: #e5e7eb !important; }
.vk-cat-section-head p { font-size: 14px; color: #6b7280; margin: 0; }

.vk-cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* Category card */
.vk-cat-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid transparent;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.09);
    background: #1a1a2e;
    user-select: none;
}
.vk-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}
.vk-cat-card.active {
    border-color: #d4850a;
    box-shadow: 0 6px 24px rgba(212,133,10,0.30);
    transform: translateY(-2px);
}
.vk-cat-card-img {
    height: 130px;
    overflow: hidden;
}
.vk-cat-card-img img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 0.35s;
}
.vk-cat-card:hover .vk-cat-card-img img,
.vk-cat-card.active .vk-cat-card-img img { transform: scale(1.07); }

.vk-cat-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
    transition: background 0.25s;
}
.vk-cat-card.active .vk-cat-card-overlay {
    background: linear-gradient(to top, rgba(212,133,10,0.80) 0%, rgba(212,133,10,0.15) 55%, transparent 100%);
}

.vk-cat-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 10px 12px 12px;
    z-index: 2;
}
.vk-cat-card-name {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 3px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.vk-cat-card-seats {
    font-size: 11px;
    color: rgba(255,255,255,0.80);
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}
.vk-cat-card-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.20);
    border-radius: 10px;
    padding: 2px 8px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.20);
}
.vk-cat-card.active .vk-cat-card-count {
    background: rgba(255,255,255,0.35);
}

/* Active check icon */
.vk-cat-card-check {
    position: absolute;
    top: 10px; right: 10px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #d4850a;
    color: #fff;
    font-size: 13px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.vk-cat-card.active .vk-cat-card-check { display: flex; }

/* ── PACKAGES SECTION ── */
.vk-cab-packages {
    background: #f8f5f1;
    padding: 40px 0 72px;
}
:root.vk-dark .vk-cab-packages { background: #0a1628; }

.vk-pkg-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
}
.vk-pkg-head-left { display: flex; align-items: center; gap: 12px; }
.vk-pkg-head h2 {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #0d1b2a !important;
    margin: 0 !important;
    border: none !important;
    letter-spacing: -0.3px;
}
:root.vk-dark .vk-pkg-head h2 { color: #e5e7eb !important; }
.vk-pkg-cat-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: #d4850a; color: #fff;
    font-size: 12px; font-weight: 700;
    padding: 4px 12px; border-radius: 20px;
}
.vk-pkg-count {
    font-size: 13px; color: #6b7280;
    background: #e5e7eb; border-radius: 20px;
    padding: 3px 12px; font-weight: 600;
}
:root.vk-dark .vk-pkg-count { background: #1e3246; color: #8fa3b8; }

/* Cab card grid */
.vk-cab-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vk-cab-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    text-decoration: none;
    display: flex; flex-direction: column;
    transition: transform 0.22s, box-shadow 0.22s;
}
:root.vk-dark .vk-cab-card { background: #152237; box-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.vk-cab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.13);
    text-decoration: none;
}

.vk-cab-card-img {
    position: relative; height: 175px;
    overflow: hidden; background: #e5e7eb;
}
.vk-cab-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.vk-cab-card:hover .vk-cab-card-img img { transform: scale(1.06); }

.vk-cab-card-price-tag {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 30px 12px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, transparent 100%);
    display: flex; align-items: flex-end; justify-content: space-between;
}
.vk-cab-price-val {
    color: #fff; font-size: 18px; font-weight: 800;
    line-height: 1; text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.vk-cab-price-val span { font-size: 11px; font-weight: 500; opacity: 0.85; display: block; margin-top: 1px; }

/* Strikethrough + discount on image overlay */
.vk-cab-price-val .vk-cab-orig-price {
    font-size: 12px !important; font-weight: 600 !important;
    color: #ffb3b3 !important;
    text-decoration: line-through !important;
    display: inline !important;
    opacity: 1 !important;
    margin-right: 4px;
}
.vk-cab-price-val .vk-cab-disc-price {
    font-size: 18px !important; font-weight: 800 !important;
    color: #4ade80 !important;
    display: inline !important;
    opacity: 1 !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Strikethrough + discount in card body price row */
.vk-cab-card-price-orig {
    font-size: 13px; font-weight: 600;
    color: #e74a3b;
    text-decoration: line-through;
}
.vk-cab-card-price-disc {
    color: #1cc88a !important;
}

.vk-cab-card-badge {
    position: absolute; top: 10px; left: 10px;
    background: rgba(13,27,42,0.80);
    color: #f0a62e; font-size: 10.5px; font-weight: 700;
    padding: 3px 9px; border-radius: 20px;
    backdrop-filter: blur(6px);
}

.vk-cab-card-body {
    padding: 13px 15px 14px; flex: 1; display: flex; flex-direction: column;
}
.vk-cab-card-name {
    font-size: 14px; font-weight: 700; color: #0d1b2a;
    margin: 0 0 7px; line-height: 1.35;
}
:root.vk-dark .vk-cab-card-name { color: #e5e7eb; }
.vk-cab-card-desc {
    font-size: 12px; color: #6b7280; line-height: 1.55;
    margin: 0 0 10px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
:root.vk-dark .vk-cab-card-desc { color: #8fa3b8; }

/* Price row in card body */
.vk-cab-card-price-row {
    display: flex; align-items: baseline; gap: 5px;
    margin: 0 0 10px;
    padding: 8px 12px;
    background: rgba(212,133,10,0.07);
    border-radius: 8px;
    border-left: 3px solid #d4850a;
}
.vk-cab-card-price-num {
    font-size: 18px; font-weight: 800; color: #d4850a; line-height: 1;
}
.vk-cab-card-price-onwards {
    font-size: 11.5px; color: #6b7280; font-weight: 500;
}
:root.vk-dark .vk-cab-card-price-row { background: rgba(212,133,10,0.10); }
:root.vk-dark .vk-cab-card-price-onwards { color: #8fa3b8; }

.vk-cab-card-specs {
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap;
    padding-top: 10px; border-top: 1px solid #f3f4f6;
}
:root.vk-dark .vk-cab-card-specs { border-color: #1e3246; }
.vk-cab-spec { display: flex; align-items: center; gap: 4px; font-size: 11.5px; color: #6b7280; font-weight: 500; }
:root.vk-dark .vk-cab-spec { color: #8fa3b8; }
.vk-cab-spec i { color: #d4850a; font-size: 11px; }

.vk-cab-card-btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin: 10px 15px 15px;
    padding: 10px; background: #0d1b2a;
    color: #fff !important; font-size: 13px; font-weight: 600;
    border-radius: 10px; text-decoration: none !important;
    transition: background 0.2s;
}
.vk-cab-card-btn:hover { background: #d4850a; }

/* Empty state */
.vk-pkg-empty {
    grid-column: 1/-1;
    text-align: center; padding: 60px 20px;
}
.vk-pkg-empty i { font-size: 40px; color: #d1d5db; display: block; margin-bottom: 12px; }
.vk-pkg-empty p { font-size: 15px; color: #6b7280; margin: 0 0 16px; }
.vk-pkg-empty a {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 11px 22px; background: #25D366;
    color: #fff; font-size: 14px; font-weight: 700;
    border-radius: 10px; text-decoration: none;
    transition: background 0.2s;
}
.vk-pkg-empty a:hover { background: #1da851; text-decoration: none; color: #fff; }

/* Why strip */
.vk-why-strip {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07); margin-top: 48px;
}
:root.vk-dark .vk-why-strip { background: #152237; }
.vk-why-strip-item {
    padding: 22px 18px; display: flex; align-items: flex-start; gap: 12px;
    border-right: 1px solid #f3f4f6;
}
:root.vk-dark .vk-why-strip-item { border-color: #1e3246; }
.vk-why-strip-item:last-child { border-right: none; }
.vk-why-strip-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.vk-why-strip-text strong { display: block; font-size: 13px; font-weight: 700; color: #0d1b2a; margin-bottom: 2px; }
:root.vk-dark .vk-why-strip-text strong { color: #e5e7eb; }
.vk-why-strip-text span { font-size: 12px; color: #6b7280; line-height: 1.5; }
:root.vk-dark .vk-why-strip-text span { color: #8fa3b8; }

/* Responsive */
@media (max-width: 1200px) {
    .vk-cat-grid { grid-template-columns: repeat(3, 1fr); }
    .vk-cab-grid  { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .vk-cat-grid { grid-template-columns: repeat(3, 1fr); }
    .vk-cab-grid  { grid-template-columns: repeat(2, 1fr); }
    .vk-why-strip { grid-template-columns: repeat(2, 1fr); }
    .vk-why-strip-item:nth-child(2) { border-right: none; }
    .vk-why-strip-item:nth-child(3),
    .vk-why-strip-item:nth-child(4) { border-top: 1px solid #f3f4f6; }
}
@media (max-width: 600px) {
    .vk-cat-grid  { grid-template-columns: repeat(2, 1fr); }
    .vk-cab-grid  { grid-template-columns: repeat(2, 1fr); }
    .vk-cab-stats-inner { flex-wrap: wrap; }
    .vk-cab-stat  { width: 50%; flex: none; }
    .vk-cab-hero  { height: 300px; }
    .vk-why-strip { grid-template-columns: 1fr; }
    .vk-why-strip-item { border-right: none; border-top: 1px solid #f3f4f6; }
    .vk-why-strip-item:first-child { border-top: none; }
}
@media (max-width: 400px) {
    .vk-cab-grid { grid-template-columns: 1fr; }
}
