/* ============================================================
   TEMPLATE 12 — CHALK WHITE & ELECTRIC COBALT
   Layout  : Centered full-width hero · Floating pill-dock nav
             (NO sidebar, NO sticky full-width bar) · 4-col bento grid
   Palette : Chalk #FAFBFF · Cobalt #4338CA · Coral #F43F5E
             Slate #0F172A · Ice #EEF2FF
   Fonts   : Syne · Outfit · IBM Plex Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    /* Cobalt family */
    --cobalt-950: #1e1b4b;
    --cobalt-900: #312e81;
    --cobalt-800: #3730a3;
    --cobalt-700: #4338ca;
    --cobalt-600: #4f46e5;
    --cobalt-500: #6366f1;
    --cobalt-400: #818cf8;
    --cobalt-300: #a5b4fc;
    --cobalt-200: #c7d2fe;
    --cobalt-100: #e0e7ff;
    --cobalt-50: #eef2ff;

    /* Coral family */
    --coral-700: #be123c;
    --coral-600: #e11d48;
    --coral-500: #f43f5e;
    --coral-400: #fb7185;
    --coral-300: #fda4af;
    --coral-200: #fecdd3;
    --coral-100: #ffe4e6;
    --coral-50: #fff1f2;

    /* Chalk / white */
    --chalk-50: #ffffff;
    --chalk-100: #fafbff;
    --chalk-200: #f5f7fe;
    --chalk-300: #eaecf8;
    --chalk-400: #d4d8f0;
    --chalk-500: #adb2d4;
    --chalk-600: #7b82b8;

    /* Slate (text / dark) */
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;

    /* Status */
    --green-open: #22c55e;

    /* Shadows */
    --shad-xs: 0 1px 3px rgba(67, 56, 202, .07);
    --shad-sm: 0 2px 10px rgba(67, 56, 202, .09);
    --shad-md: 0 6px 24px rgba(67, 56, 202, .12);
    --shad-lg: 0 16px 48px rgba(67, 56, 202, .16);
    --shad-xl: 0 28px 80px rgba(15, 23, 42, .22);
    --shad-cobalt: 0 8px 28px rgba(67, 56, 202, .30);
    --shad-coral: 0 8px 24px rgba(244, 63, 94, .28);
    --shad-pill: 0 8px 40px rgba(67, 56, 202, .18), 0 2px 8px rgba(67, 56, 202, .10);

    /* Fonts */
    --font-disp: 'Syne', system-ui, sans-serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    /* Layout */
    --content-max: 1400px;
    --pad-x: 48px;

    /* Radius */
    --r-xs: 3px;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 26px;
    --r-2xl: 36px;
    --r-pill: 9999px;

    /* Easing */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --ease-spr: cubic-bezier(.34, 1.56, .64, 1);
    --t-fast: all .14s var(--ease);
    --t-base: all .24s var(--ease);
    --t-slow: all .40s var(--ease);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate-700);
    background: var(--chalk-200);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: var(--chalk-300);
}

::-webkit-scrollbar-thumb {
    background: var(--cobalt-400);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cobalt-600);
}

/* ============================================================
   WRAPPER
   ============================================================ */
.wrap-ck {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

/* ============================================================
   HERO — CENTERED FULL-WIDTH
   ============================================================ */
.hero-ck {
    position: relative;
    min-height: 580px;
    background: linear-gradient(145deg, var(--slate-950) 0%, var(--cobalt-950) 45%, var(--slate-900) 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Cover photo background */
.hero-ck-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .12;
    transform: scale(1.03);
    transition: transform 14s ease;
}

.hero-ck:hover .hero-ck-bg {
    transform: scale(1.0);
}

/* Cobalt mesh gradient overlay */
.hero-ck-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at 20% 50%, rgba(67, 56, 202, .35) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(244, 63, 94, .15) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 90%, rgba(67, 56, 202, .20) 0%, transparent 40%);
    pointer-events: none;
}

/* Geometric grid lines decoration */
.hero-ck-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: linear-gradient(rgba(165, 180, 252, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 180, 252, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Top row */
.hero-ck-toprow {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0 18px;
    border-bottom: 1px solid rgba(165, 180, 252, .12);
}

.hero-ck-type {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-ck-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    background: rgba(67, 56, 202, .25);
    border: 1px solid rgba(165, 180, 252, .30);
    border-radius: var(--r-pill);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cobalt-300);
}

.hero-ck-type-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cobalt-400);
    box-shadow: 0 0 10px rgba(165, 180, 252, .7);
    animation: ckDot 2s ease infinite;
}

@keyframes ckDot {
    0%, 100% {
        box-shadow: 0 0 10px rgba(165, 180, 252, .6);
    }
    50% {
        box-shadow: 0 0 20px rgba(165, 180, 252, 1);
    }
}

.hero-ck-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
}

.hero-ck-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px;
    background: rgba(165, 180, 252, .08);
    border: 1px solid rgba(165, 180, 252, .18);
    border-radius: var(--r-lg);
}

.hero-ck-contact-text {
    font-size: 12px;
    color: var(--slate-300);
    line-height: 1.5;
}

.hero-ck-contact-text p {
    margin: 0;
}

.hero-ck-contact .locck-img {
    max-width: 80px;
}

.hero-ck-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 13px;
    border: 1px solid rgba(165, 180, 252, .18);
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 500;
    color: var(--slate-300);
    background: transparent;
    transition: var(--t-base);
}

.hero-ck-chip i {
    font-size: 10px;
    color: var(--cobalt-400);
}

.hero-ck-chip:hover {
    background: rgba(165, 180, 252, .10);
    border-color: var(--cobalt-400);
    color: var(--cobalt-200);
}

.hero-ck-chip-v {
    background: rgba(244, 63, 94, .12);
    border-color: rgba(253, 164, 175, .25);
    color: var(--coral-300);
}

.hero-ck-chip-v i {
    color: var(--coral-400);
}

/* Centre content */
.hero-ck-centre {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 56px 0 64px;
    flex: 1;
}

/* Logo with hexagon clip */
.hero-ck-logo-ring {
    position: relative;
    width: 108px;
    height: 108px;
    margin-bottom: 22px;
}

.hero-ck-logo-ring::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, var(--cobalt-500), var(--coral-500), var(--cobalt-300));
    animation: ckLogoSpin 8s linear infinite;
    opacity: .6;
}

@keyframes ckLogoSpin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-ck-logo {
    position: relative;
    z-index: 1;
    width: 108px;
    height: 108px;
    object-fit: cover;
    border-radius: var(--r-lg);
    border: 3px solid rgba(255, 255, 255, .9);
    box-shadow: var(--shad-xl);
    transition: var(--t-base);
}

.hero-ck-logo:hover {
    transform: scale(1.04);
}

.hero-ck-logo-verify {
    position: absolute;
    bottom: -8px;
    right: -8px;
    z-index: 2;
    width: 28px;
    height: 28px;
    background: var(--cobalt-600);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--slate-950);
    box-shadow: var(--shad-sm);
}

.hero-ck-logo-verify i {
    font-size: 11px;
    color: white;
}

/* Eyebrow */
.hero-ck-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cobalt-400);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-ck-eyebrow::before, .hero-ck-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--cobalt-500);
    opacity: .6;
}

/* Business name */
.hero-ck-name {
    font-family: var(--font-disp);
    font-size: clamp(46px, 6vw, 100px);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -2px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 45%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-ck-address {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--slate-400);
    margin-bottom: 32px;
}

.hero-ck-address i {
    font-size: 11px;
    color: var(--cobalt-400);
}

/* Stats row */
.hero-ck-stats {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(165, 180, 252, .18);
    border-radius: var(--r-xl);
    overflow: hidden;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, .05);
}

.hero-ck-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 24px;
    border-right: 1px solid rgba(165, 180, 252, .12);
    transition: var(--t-base);
}

.hero-ck-stat:last-child {
    border-right: none;
}

.hero-ck-stat:hover {
    background: rgba(165, 180, 252, .07);
}

.hero-ck-stat-v {
    font-family: var(--font-disp);
    font-size: 22px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.hero-ck-stat-v.open {
    color: #4ADE80;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-ck-stat-v.closed {
    color: var(--coral-400);
}

.hero-ck-stat-k {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cobalt-300);
}

.hero-ck-blink {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ADE80;
    animation: ckBlink 1.6s ease infinite;
}

@keyframes ckBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .2;
    }
}

/* Bottom curve */
.hero-ck-curve {
    position: relative;
    z-index: 10;
    line-height: 0;
}

.hero-ck-curve svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* ============================================================
   BOOKING BAR
   ============================================================ */
.booking-ck-wrap {
    background: var(--chalk-200);
    padding: 0 0 0;
}

.bkfm-ck {
    background: var(--chalk-50);
    border: 1.5px solid var(--chalk-400);
    border-radius: var(--r-xl);
    padding: 24px 30px;
    box-shadow: var(--shad-md);
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 24px;
    align-items: center;
    position: relative;
}

/* Cobalt top stripe */
.bkfm-ck::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cobalt-700), var(--cobalt-500), var(--coral-500), var(--cobalt-500), var(--cobalt-700));
}

.bkfm-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-right: 22px;
    border-right: 1.5px solid var(--chalk-300);
}

.bkfm-brand-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--cobalt-700), var(--cobalt-950));
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shad-sm);
}

.bkfm-brand-icon i {
    font-size: 18px;
    color: var(--cobalt-200);
}

.bkfm-brand-title {
    font-family: var(--font-disp);
    font-size: 17px;
    font-weight: 700;
    color: var(--slate-900);
    display: block;
    line-height: 1.2;
    margin-bottom: 2px;
}

.bkfm-brand-sub {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bkfm-fields {
    display: flex;
    gap: 13px;
    align-items: normal;
    flex-wrap: wrap;
}

.bkfm-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    flex: 1;
    min-width: 175px;
}

.bkfm-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--slate-400);
}

.bkfm-label i {
    font-size: 10px;
    color: var(--cobalt-600);
}

.bkfm-input {
    width: 100%;
    padding: 11px 15px;
    background: var(--chalk-200);
    border: 1.5px solid var(--chalk-400);
    border-radius: var(--r-md);
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--slate-800);
    outline: none;
    cursor: pointer;
    transition: var(--t-base);
    appearance: none;
    -webkit-appearance: none;
}

.bkfm-input::placeholder {
    color: var(--slate-400);
}

.bkfm-input:focus {
    border-color: var(--cobalt-500);
    background: var(--cobalt-50);
    box-shadow: 0 0 0 3px rgba(67, 56, 202, .10);
}

.bkfm-input option {
    background: var(--chalk-50);
    color: var(--slate-800);
}

.bkfm-occ-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bkfm-chev {
    color: var(--slate-400);
    font-size: 10px;
    transition: transform .2s var(--ease);
}

.bkfm-occ-panel {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    right: 0;
    background: var(--chalk-50);
    border: 1.5px solid var(--chalk-400);
    border-radius: var(--r-lg);
    box-shadow: var(--shad-lg);
    padding: 13px 15px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: var(--t-base);
}

.bkfm-occ-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bkfm-occ-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--chalk-300);
}

.bkfm-occ-row:last-of-type {
    border-bottom: none;
}

.bkfm-occ-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--slate-700);
}

.bkfm-ctr {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bkfm-ctr-btn {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--chalk-400);
    background: var(--chalk-200);
    color: var(--cobalt-700);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: var(--t-fast);
    line-height: 1;
}

.bkfm-ctr-btn:hover {
    background: var(--cobalt-700);
    color: white;
    border-color: var(--cobalt-700);
    transform: scale(1.08);
}

.bkfm-ctr-val {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    color: var(--slate-800);
}

.bkfm-occ-apply {
    width: 100%;
    padding: 9px;
    margin-top: 9px;
    background: var(--cobalt-800);
    color: white;
    border: none;
    border-radius: var(--r-sm);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--t-base);
}

.bkfm-occ-apply:hover {
    background: var(--coral-500);
    transform: translateY(-1px);
}

.bkfm-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: linear-gradient(135deg, var(--cobalt-700), var(--cobalt-900));
    color: white;
    border: none;
    border-radius: var(--r-md);
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .8px;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--t-base);
    box-shadow: var(--shad-cobalt);
    position: relative;
    overflow: hidden;
}

.bkfm-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(244, 63, 94, .20));
    opacity: 0;
    transition: opacity .3s;
}

.bkfm-submit:hover::after {
    opacity: 1;
}

.bkfm-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(67, 56, 202, .32);
}

.bkfm-submit i {
    font-size: 11px;
    transition: transform .2s;
}

.bkfm-submit:hover i {
    transform: translateX(3px);
}

/* ============================================================
   FLOATING PILL NAV — centered dock (THE KEY DIFFERENTIATOR)
   ============================================================ */
.floatnav-ck {
    position: sticky;
    top: 14px;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 20px var(--pad-x) 0;
    pointer-events: none; /* clicks pass through the wrapper */
}

.floatnav-ck-pill {
    display: inline-flex;
    align-items: center;
    background: var(--chalk-50);
    border: 1.5px solid var(--chalk-400);
    border-radius: var(--r-pill);
    padding: 5px;
    box-shadow: var(--shad-pill);
    pointer-events: all;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: calc(100vw - 32px);
    gap: 2px;
}

.floatnav-ck-pill::-webkit-scrollbar {
    display: none;
}

.floatnav-ck-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: .6px;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: var(--t-base);
    white-space: nowrap;
    flex-shrink: 0;
}

.floatnav-ck-tab i {
    font-size: 12px;
}

.floatnav-ck-tab:hover {
    color: var(--cobalt-700);
    background: var(--cobalt-50);
}

.floatnav-ck-tab.active {
    background: var(--cobalt-700);
    color: white;
    box-shadow: 0 4px 14px rgba(67, 56, 202, .30);
}

.floatnav-ck-num {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 700;
    color: var(--slate-400);
    letter-spacing: 1px;
}

.floatnav-ck-tab.active .floatnav-ck-num {
    color: rgba(255, 255, 255, .55);
}

/* Divider between tabs and biz info */
.floatnav-ck-div {
    width: 1px;
    height: 24px;
    background: var(--chalk-400);
    flex-shrink: 0;
    margin: 0 4px;
    align-self: center;
}

/* Business mini info pinned inside pill */
.floatnav-ck-biz {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 6px;
    flex-shrink: 0;
}

.floatnav-ck-biz-logo {
    width: 26px;
    height: 26px;
    border-radius: var(--r-sm);
    object-fit: cover;
    border: 1.5px solid var(--chalk-400);
}

.floatnav-ck-biz-name {
    font-family: var(--font-disp);
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-800);
    line-height: 1;
}

.floatnav-ck-biz-stat {
    font-family: var(--font-mono);
    font-size: 8px;
    color: var(--slate-500);
    margin-top: 1px;
}

.floatnav-ck-open {
    color: #16a34a;
}

.floatnav-ck-led {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    animation: ckBlink 1.6s ease infinite;
    margin-right: 3px;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-ck {
    background: var(--chalk-200);
    padding: 36px 0 36px;
}

.panel-ck {
    display: none;
}

.panel-ck.active {
    display: block;
    animation: ckPanelIn .28s var(--ease-out);
}

@keyframes ckPanelIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Panel header */
.panel-ck-hdr {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--chalk-400);
    position: relative;
}

.panel-ck-hdr::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--cobalt-600), var(--coral-500));
    border-radius: var(--r-pill);
}

.panel-ck-kicker {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--cobalt-600);
    display: block;
    margin-bottom: 5px;
}

.panel-ck-title {
    font-family: var(--font-disp);
    font-size: 32px;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.05;
    letter-spacing: -.3px;
}

.panel-ck-badge {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--cobalt-700);
    background: var(--cobalt-50);
    border: 1.5px solid var(--cobalt-200);
    padding: 4px 14px;
    border-radius: var(--r-pill);
    white-space: nowrap;
}

/* ============================================================
   CATEGORY CHIPS
   ============================================================ */
.catck-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.catck-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px 7px 9px;
    background: var(--chalk-50);
    border: 1.5px solid var(--chalk-400);
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 600;
    color: var(--slate-600);
    cursor: pointer;
    transition: var(--t-base);
}

.catck-img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--chalk-300);
}

.catck-all {
    font-size: 12px;
    color: var(--cobalt-600);
    font-weight: 700;
}

.catck-chip:hover, .catck-chip.active-cat {
    background: var(--cobalt-700);
    border-color: var(--cobalt-700);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shad-sm);
}

.catck-chip.active-cat .catck-all {
    color: var(--cobalt-200);
}

/* ============================================================
   PRODUCT BENTO GRID — 4 columns, uniform layout
   ============================================================ */
.prodck-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 18px;
}


.prodck-card {
    background: var(--chalk-50);
    border: 1.5px solid var(--chalk-400);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--t-base);
    position: relative;
}

/* Left accent bar — coral */
.prodck-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--cobalt-500), transparent);
    opacity: 0;
    transition: opacity .25s;
}

.prodck-card:hover::before {
    opacity: 1;
}

.prodck-card:hover {
    transform: translateY(-5px);
    border-color: var(--cobalt-200);
    box-shadow: 0 14px 40px rgba(67, 56, 202, .12), 0 0 0 2px rgba(67, 56, 202, .06);
}

/* Image block */
.prodck-imgwrap {
    position: relative;
    overflow: hidden;
    background: var(--chalk-300);
    flex-shrink: 0;
    width: 100%;
    padding-top: 58%;
    border-bottom: 1.5px solid var(--chalk-400);
}

.prodck-imglink {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
}

.prodck-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--chalk-300);
    min-height: 180px;
}

.prodck-noimg-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--chalk-600);
}

.prodck-noimg-inner span {
    font-size: 12px;
    font-weight: 500;
}

.prodck-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.prodck-card:hover .prodck-img {
    transform: scale(1.06);
}

/* Slide-up overlay on hover */
.prodck-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, .88) 0%, rgba(15, 23, 42, .30) 45%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    opacity: 0;
    transition: var(--t-base);
    transform: translateY(4px);
}

.prodck-card:hover .prodck-img-ov {
    opacity: 1;
    transform: translateY(0);
}

.prodck-img-ov span {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--cobalt-200);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--cobalt-400);
    padding-bottom: 2px;
}

/* Wishlist */
.prodck-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .94);
    border: 1.5px solid var(--chalk-400);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--t-base);
}

.prodck-wish:hover {
    background: var(--coral-500);
    border-color: var(--coral-500);
}

.prodck-wish i {
    font-size: 12px;
    color: var(--coral-500);
    transition: var(--t-fast);
}

.prodck-wish:hover i, .prodck-wish.active i {
    color: white;
}

.prodck-wish.active {
    background: var(--coral-500);
    border-color: var(--coral-500);
}

/* Badges */
.prodck-badge-feat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--cobalt-700), var(--cobalt-950));
    color: var(--cobalt-200);
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    border-radius: var(--r-pill);
    z-index: 9;
    box-shadow: var(--shad-sm);
}

.prodck-badge-disc {
    position: absolute;
    top: 44px;
    left: 10px;
    background: var(--coral-500);
    color: white;
    padding: 4px 9px;
    font-size: 10px;
    font-weight: 900;
    border-radius: var(--r-sm);
    z-index: 9;
    box-shadow: var(--shad-coral);
}

.prodck-avail {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 3px 9px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: var(--r-pill);
    z-index: 8;
}

.avail-in {
    background: rgba(34, 197, 94, .10);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, .25);
}

.avail-led {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #16a34a;
    margin-right: 4px;
    vertical-align: middle;
}

.avail-out {
    background: rgba(244, 63, 94, .10);
    color: #be123c;
    border: 1px solid rgba(244, 63, 94, .25);
}

.prodck-photocnt {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(15, 23, 42, .82);
    color: var(--cobalt-300);
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 700;
    border-radius: var(--r-pill);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 8;
}

.prodck-photocnt i {
    font-size: 9px;
}

.prodck-timer {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral-600);
    color: white;
    padding: 3px 10px;
    font-size: 9px;
    font-weight: 800;
    border-radius: var(--r-pill);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 9;
    text-transform: uppercase;
    letter-spacing: .8px;
    white-space: nowrap;
    box-shadow: var(--shad-coral);
}

.prodck-watermark {
    position: absolute;
    top: 4px;
    right: 8px;
    font-family: var(--font-mono);
    font-size: 52px;
    font-weight: 700;
    color: rgba(255, 255, 255, .07);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

/* Card body */
.prodck-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.prodck-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.prodck-cat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cobalt-600);
}

.prodck-cat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cobalt-500);
}

.prodck-ref {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--slate-300);
}

.prodck-title {
    font-family: var(--font-disp);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.prodck-title a {
    color: var(--slate-900);
    transition: var(--t-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prodck-title a:hover {
    color: var(--cobalt-700);
}

.prodck-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.prodck-spec {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--slate-600);
    background: var(--cobalt-50);
    border: 1px solid var(--cobalt-100);
    padding: 3px 8px;
    border-radius: var(--r-pill);
}

.prodck-spec i {
    font-size: 9px;
    color: var(--cobalt-500);
}

.prodck-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--chalk-300);
    margin-top: auto;
}

.prodck-price {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.prodck-price-from {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--slate-400);
}

.prodck-price-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.prodck-cur {
    font-size: 11px;
    font-weight: 600;
    color: var(--slate-500);
}

.prodck-num {
    font-family: var(--font-disp);
    font-size: 26px;
    font-weight: 800;
    color: var(--cobalt-800);
    line-height: 1;
    letter-spacing: -.4px;
}

.btn-resck {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 17px;
    background: linear-gradient(135deg, var(--cobalt-700), var(--cobalt-900));
    color: white;
    border: none;
    border-radius: var(--r-md);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .7px;
    cursor: pointer;
    transition: var(--t-base);
    white-space: nowrap;
    box-shadow: var(--shad-sm);
    flex-shrink: 0;
}

.btn-resck:hover {
    background: linear-gradient(135deg, var(--coral-600), var(--coral-500));
    transform: translateY(-2px);
    box-shadow: var(--shad-coral);
}

.btn-resck i {
    font-size: 11px;
}

.btn-resck-off {
    background: var(--chalk-300);
    color: var(--chalk-600);
    box-shadow: none;
    cursor: not-allowed;
}

.btn-resck-off:hover {
    transform: none;
    box-shadow: none;
    background: var(--chalk-300);
    color: var(--chalk-600);
}

/* Empty state */
.empty-ck {
    text-align: center;
    padding: 72px 20px;
    border: 1.5px dashed var(--chalk-400);
    border-radius: var(--r-lg);
}

.empty-ck-icon {
    font-size: 52px;
    color: var(--chalk-500);
    margin-bottom: 14px;
    display: block;
}

.empty-ck h3 {
    font-family: var(--font-disp);
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-600);
    margin-bottom: 6px;
}

.empty-ck p {
    font-size: 13px;
    color: var(--slate-400);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-ck {
    max-width: 700px;
}

.about-ck-pull {
    font-family: var(--font-disp);
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    color: var(--cobalt-700);
    line-height: 1.65;
    border-left: 4px solid var(--cobalt-600);
    padding: 14px 22px;
    margin-bottom: 26px;
    background: linear-gradient(135deg, var(--cobalt-50), var(--chalk-100));
    border-radius: 0 var(--r-md) var(--r-md) 0;
}

.about-ck-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--slate-600);
}

.about-ck-body p {
    margin-bottom: 16px;
}

.about-ck-body h2, .about-ck-body h3 {
    font-family: var(--font-disp);
    color: var(--cobalt-900);
    margin: 24px 0 10px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.galck-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 12px;
}

.galck-feat {
    grid-column: 1/3;
}

.galck-item {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid var(--chalk-400);
    transition: var(--t-base);
}

.galck-item:hover {
    transform: scale(1.02);
    border-color: var(--cobalt-300);
    box-shadow: 0 8px 24px rgba(67, 56, 202, .18);
}

.galck-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform .5s var(--ease);
}

.galck-feat img {
    aspect-ratio: 16/9;
}

.galck-item:hover img {
    transform: scale(1.06);
}

.galck-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, .82) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 10px 12px;
    opacity: 0;
    transition: var(--t-base);
}

.galck-item:hover .galck-ov {
    opacity: 1;
}

.galck-idx {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--cobalt-300);
}

.galck-exp {
    font-size: 13px;
    color: var(--chalk-200);
}

/* Lightbox */
.lb-ck {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lb-ck.active {
    display: flex;
    animation: fadeIn .25s ease;
}

.lb-ck-bg {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, .97);
    cursor: pointer;
}

.lb-ck-box {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lb-ck-close {
    position: absolute;
    top: -42px;
    right: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--cobalt-300);
    cursor: pointer;
    background: var(--slate-800);
    border: 1.5px solid var(--cobalt-500);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    transition: var(--t-fast);
}

.lb-ck-close:hover {
    background: var(--coral-500);
    color: white;
    border-color: var(--coral-500);
}

.lb-ck-img {
    max-height: 76vh;
    object-fit: contain;
    border-radius: var(--r-lg);
    border: 2px solid rgba(67, 56, 202, .4);
    box-shadow: var(--shad-xl);
}

.lb-ck-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.lb-ck-btn {
    padding: 8px 18px;
    background: var(--slate-800);
    color: white;
    border: 1.5px solid var(--cobalt-500);
    border-radius: var(--r-sm);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
    transition: var(--t-base);
}

.lb-ck-btn:hover {
    background: var(--cobalt-600);
    transform: translateY(-1px);
}

.lb-ck-ctr {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--cobalt-300);
    font-weight: 700;
}

/* ============================================================
   FACILITIES
   ============================================================ */
.facck-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
}

.facck-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    padding: 20px 12px;
    background: var(--chalk-50);
    border: 1.5px solid var(--chalk-400);
    border-radius: var(--r-lg);
    text-align: center;
    transition: var(--t-base);
}

.facck-card:hover {
    border-color: var(--cobalt-200);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(67, 56, 202, .12);
    background: var(--cobalt-50);
}

.facck-icon {
    width: 50px;
    height: 50px;
    background: var(--chalk-200);
    border: 1.5px solid var(--chalk-400);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-base);
}

.facck-card:hover .facck-icon {
    background: var(--cobalt-700);
    border-color: var(--cobalt-700);
}

.facck-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    transition: var(--t-fast);
}

.facck-card:hover .facck-icon img {
    filter: brightness(0) invert(1);
}

.facck-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.facck-card:hover .facck-name {
    color: var(--cobalt-700);
}

/* ============================================================
   HOURS
   ============================================================ */
.hrsck-wrap {
    border: 1.5px solid var(--chalk-400);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--chalk-50);
}

.hrsck-row {
    display: grid;
    grid-template-columns:180px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    border-bottom: 1px solid var(--chalk-300);
    transition: var(--t-fast);
}

.hrsck-row:last-child {
    border-bottom: none;
}

.hrsck-row:hover {
    background: var(--cobalt-50);
}

.hrsck-today {
    background: rgba(67, 56, 202, .04) !important;
    border-left: 3px solid var(--cobalt-600);
}

.hrsck-day {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hrsck-today-tag {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 700;
    background: var(--cobalt-600);
    color: white;
    padding: 2px 7px;
    border-radius: var(--r-pill);
    letter-spacing: 1px;
}

.hrsck-dayname {
    font-family: var(--font-disp);
    font-size: 17px;
    font-weight: 700;
    color: var(--slate-800);
}

.hrsck-dots {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--chalk-400) 0, var(--chalk-400) 4px, transparent 4px, transparent 8px);
}

.hrsck-open {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--slate-700);
    display: flex;
    align-items: center;
    gap: 7px;
}

.hrsck-arrow {
    color: var(--cobalt-500);
    font-size: 13px;
}

.hrsck-closed {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: #be123c;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--coral-50);
    border: 1px solid var(--coral-200);
    padding: 3px 10px;
    border-radius: var(--r-pill);
}

.hrsck-unset {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--slate-400);
}

/* ============================================================
   LOCATION
   ============================================================ */
.locck-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.locck-info {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    border: 1.5px solid var(--chalk-400);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--chalk-50);
}

.locck-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-right: 1px solid var(--chalk-300);
    transition: var(--t-fast);
}

.locck-item:last-child {
    border-right: none;
}

.locck-item:hover {
    background: var(--cobalt-50);
}

.locck-ic {
    width: 38px;
    height: 38px;
    background: var(--cobalt-50);
    border: 1.5px solid var(--cobalt-100);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.locck-ic i {
    font-size: 14px;
    color: var(--cobalt-600);
}

.locck-img {
    max-width: 100px;
    width: 100%;
    height: auto;
}

.locck-lbl {
    display: block;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--slate-400);
    margin-bottom: 3px;
}

.locck-val {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-900);
    line-height: 1.4;
}

.locck-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.locck-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
    border-radius: var(--r-md);
    transition: var(--t-base);
    text-decoration: none;
    border: none;
}

.locck-primary {
    background: linear-gradient(135deg, var(--cobalt-700), var(--cobalt-900));
    color: white;
    box-shadow: var(--shad-sm);
}

.locck-primary:hover {
    background: linear-gradient(135deg, var(--coral-600), var(--coral-500));
    transform: translateY(-2px);
    box-shadow: var(--shad-coral);
}

.locck-secondary {
    background: var(--chalk-200);
    color: var(--slate-700);
    border: 1.5px solid var(--chalk-400);
}

.locck-secondary:hover {
    background: var(--cobalt-50);
    border-color: var(--cobalt-200);
    color: var(--cobalt-700);
    transform: translateY(-2px);
}

.locck-tertiary {
    background: transparent;
    color: var(--cobalt-700);
    border: 1.5px solid var(--cobalt-200);
}

.locck-tertiary:hover {
    background: var(--cobalt-700);
    color: white;
    transform: translateY(-2px);
}

.locck-map-wrap {
    border: 1.5px solid var(--chalk-400);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shad-sm);
}

.locck-map {
    width: 100%;
    height: 420px;
    border: none;
}

/* ============================================================
   VIDEO
   ============================================================ */
.vidck-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border: 1.5px solid var(--chalk-400);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shad-md);
}

.vidck-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ============================================================
   ADS SECTION — dark cobalt
   ============================================================ */
.adsck-section {
    background: linear-gradient(150deg, var(--cobalt-950) 0%, var(--slate-900) 50%, var(--cobalt-900) 100%);
    padding: 80px 0 88px;
    position: relative;
    overflow: hidden;
}

.adsck-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cobalt-500), var(--coral-500), var(--cobalt-500), transparent);
}

.adsck-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 56, 202, .12) 0%, transparent 65%);
    pointer-events: none;
}

/* Dot grid overlay */
.adsck-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(165, 180, 252, .08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.adsck-hdr {
    text-align: center;
    margin-bottom: 48px;
}

.adsck-kicker {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cobalt-400);
    display: block;
    margin-bottom: 10px;
}

.adsck-title {
    font-family: var(--font-disp);
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.adsck-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.adsck-ornament span {
    width: 44px;
    height: 1px;
    background: rgba(165, 180, 252, .4);
}

.adsck-ornament i {
    font-size: 12px;
    color: var(--cobalt-500);
}

.adsck-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(255px, 1fr));
    gap: 18px;
}

.adck-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(165, 180, 252, .12);
    border-radius: var(--r-xl);
    overflow: hidden;
    text-decoration: none;
    transition: var(--t-base);
    backdrop-filter: blur(8px);
}

.adck-card:hover {
    border-color: rgba(165, 180, 252, .35);
    transform: translateY(-7px);
    box-shadow: 0 20px 52px rgba(2, 6, 23, .50), 0 0 0 1px rgba(67, 56, 202, .20);
}

.adck-img {
    position: relative;
    width: 100%;
    height: 188px;
    overflow: hidden;
    background: var(--cobalt-900);
}

.adck-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.adck-card:hover .adck-img img {
    transform: scale(1.06);
}

.adck-img-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, .78) 0%, transparent 55%);
}

.adck-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.adck-noimg i {
    font-size: 34px;
    color: var(--cobalt-700);
}

.adck-num {
    position: absolute;
    top: 0;
    right: 0;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    color: var(--cobalt-300);
    background: var(--slate-950);
    padding: 4px 9px;
    border-radius: 0 0 0 var(--r-sm);
    letter-spacing: 1px;
}

.adck-body {
    padding: 15px 18px;
    flex: 1;
}

.adck-name {
    font-family: var(--font-disp);
    font-size: 18px;
    font-weight: 700;
    color: var(--chalk-100);
    line-height: 1.3;
    margin-bottom: 7px;
}

.adck-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--cobalt-300);
}

.adck-date i {
    color: var(--cobalt-400);
    font-size: 10px;
}

.adck-foot {
    padding: 10px 18px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--cobalt-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--t-fast);
}

.adck-foot i {
    transition: transform .2s var(--ease);
}

.adck-card:hover .adck-foot {
    color: var(--coral-400);
}

.adck-card:hover .adck-foot i {
    transform: translateX(4px);
}

/* ============================================================
   TOAST
   ============================================================ */
.ck-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--slate-900);
    color: var(--cobalt-300);
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-body);
    border: 1.5px solid var(--cobalt-500);
    border-radius: var(--r-pill);
    box-shadow: var(--shad-cobalt);
    z-index: 99999;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
}

.ck-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Modal suppression */
.modal-backdrop, .modal-backdrop.fade, .modal-backdrop.show, .modal-backdrop.fade.show {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.modal, .modal.show {
    background-color: transparent;
}

.modal-dialog {
    position: relative;
    z-index: 1050;
}

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--cobalt-500);
    outline-offset: 3px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ============================================================
   RESPONSIVE — 1280px
   ============================================================ */
@media (max-width: 1280px) {
    :root {
        --pad-x: 28px;
    }

    .hero-ck-name {
        font-size: clamp(40px, 5.5vw, 76px);
    }

    .prodck-grid {
        grid-template-columns:repeat(3, 1fr);
    }


    .bkfm-ck {
        grid-template-columns:auto 1fr;
        grid-template-rows:auto auto;
    }

    .bkfm-submit {
        grid-column: 1/-1;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .prodck-grid {
        grid-template-columns:repeat(2, 1fr);
    }

    .hero-ck-curve{
        margin-top: 32px;
    }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
    .hero-ck-name {
        font-size: clamp(38px, 9vw, 62px);
    }

    .floatnav-ck {
        padding: 16px 16px 0;
        top: 10px;
    }

    .adsck-title {
        font-size: 38px;
    }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --pad-x: 16px;
    }

    .hero-ck-name {
        font-size: clamp(32px, 10vw, 54px);
    }

    .hero-ck-stats {
        flex-wrap: wrap;
    }

    .bkfm-ck {
        grid-template-columns:1fr;
        gap: 14px;
        padding: 20px 18px;
    }

    .bkfm-brand {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--chalk-300);
        padding-bottom: 12px;
    }

    .bkfm-fields {
        flex-direction: column;
    }

    .bkfm-submit {
        width: 100%;
        justify-content: center;
    }

    .floatnav-ck-biz-name {
        display: none;
    }

    .panel-ck-title {
        font-size: 26px;
    }

    .prodck-grid {
        grid-template-columns:1fr 1fr;
        gap: 12px;
    }

    .galck-grid {
        grid-template-columns:repeat(2, 1fr);
    }

    .galck-feat {
        grid-column: 1/-1;
    }

    .hrsck-row {
        grid-template-columns:1fr auto;
        gap: 8px;
        padding: 12px 14px;
    }

    .hrsck-dots {
        display: none;
    }

    .locck-info {
        grid-template-columns:1fr;
    }

    .locck-item {
        border-right: none;
        border-bottom: 1px solid var(--chalk-300);
    }

    .locck-item:last-child {
        border-bottom: none;
    }

    .locck-btns {
        flex-direction: column;
    }

    .locck-btn {
        width: 100%;
        justify-content: center;
    }

    .locck-map {
        height: 300px;
    }

    .adsck-title {
        font-size: 32px;
    }

    .adsck-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 14px;
    }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
    :root {
        --pad-x: 13px;
    }

    .hero-ck-name {
        font-size: clamp(26px, 12vw, 44px);
        letter-spacing: -1px;
    }

    .hero-ck-chips {
        display: none;
    }

    .hero-ck-centre {
        padding: 36px 0 48px;
    }

    .floatnav-ck-tab {
        padding: 7px 12px;
        font-size: 10px;
    }

    .floatnav-ck-num {
        display: none;
    }

    .floatnav-ck-biz {
        display: none;
    }

    .floatnav-ck-div {
        display: none;
    }

    .panel-ck-title {
        font-size: 22px;
    }

    .prodck-grid {
        grid-template-columns:1fr;
        gap: 12px;
    }

    .facck-grid {
        grid-template-columns:repeat(auto-fill, minmax(110px, 1fr));
    }

    .adsck-title {
        font-size: 26px;
    }

    .adsck-grid {
        grid-template-columns:1fr;
        gap: 12px;
    }
}

/* ============================================================
   RESPONSIVE — 425px (Extra Small Mobile)
   ============================================================ */
@media (max-width: 425px) {
    :root {
        --pad-x: 12px;
    }

    .hero-ck-curve {
        margin-top: 100px;
    }

    /* Product Grid - Single column for better spacing */
    .prodck-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }


    /* Product card - compact layout */
    .prodck-card {
        border-radius: 10px;
    }

    .prodck-imgwrap {
        min-height: 200px;
        padding-top: 65%;
    }

    .prodck-body {
        padding: 12px;
    }

    .prodck-title {
        font-size: 14px;
        line-height: 1.3;
        margin: 6px 0;
    }

    .prodck-meta {
        gap: 8px;
        font-size: 11px;
        margin-bottom: 6px;
    }

    .prodck-cat {
        font-size: 11px;
    }

    .prodck-specs {
        flex-wrap: wrap;
        gap: 6px;
        margin: 8px 0;
    }

    .prodck-spec {
        font-size: 11px;
        padding: 3px 6px;
    }

    .prodck-footer {
        gap: 8px;
    }

    .prodck-price {
        min-width: 70px;
    }

    .prodck-price-from {
        font-size: 10px;
    }

    .prodck-cur {
        font-size: 12px;
    }

    .prodck-num {
        font-size: 16px;
    }

    .btn-resck {
        font-size: 12px;
        padding: 8px 12px;
        gap: 6px;
    }

    .btn-resck i {
        font-size: 12px;
    }

    .prodck-badge-feat,
    .prodck-badge-disc {
        font-size: 10px;
        padding: 4px 6px;
    }

    .prodck-wish {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .prodck-avail {
        font-size: 10px;
        padding: 4px 8px;
    }

    .prodck-photocnt {
        font-size: 11px;
        padding: 4px 6px;
    }

    .prodck-watermark {
        font-size: 12px;
    }

    .hero-ck-name {
        font-size: 24px;
    }

    .panel-ck-title {
        font-size: 20px;
    }

    .adsck-title {
        font-size: 24px;
    }

    .adsck-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ============================================================
   RESPONSIVE — 360px (Small Mobile)
   ============================================================ */
@media (max-width: 360px) {
    :root {
        --pad-x: 10px;
    }

    .prodck-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .prodck-card {
        border-radius: 8px;
    }

    .prodck-imgwrap {
        min-height: 180px;
        padding-top: 70%;
    }

    .prodck-body {
        padding: 10px;
    }

    .prodck-title {
        font-size: 12px;
        line-height: 1.2;
        margin: 4px 0;
    }

    .prodck-meta {
        gap: 6px;
        font-size: 10px;
        margin-bottom: 4px;
    }

    .prodck-specs {
        gap: 4px;
        margin: 6px 0;
    }

    .prodck-spec {
        font-size: 10px;
        padding: 2px 4px;
    }

    .prodck-footer {
        gap: 6px;
    }

    .prodck-price-from {
        font-size: 9px;
    }

    .prodck-cur {
        font-size: 11px;
    }

    .prodck-num {
        font-size: 14px;
    }

    .btn-resck {
        font-size: 11px;
        padding: 6px 10px;
        gap: 4px;
    }

    .btn-resck i {
        font-size: 11px;
    }

    .prodck-wish {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .prodck-badge-feat,
    .prodck-badge-disc {
        font-size: 9px;
        padding: 3px 5px;
    }

    .prodck-avail {
        font-size: 9px;
        padding: 3px 6px;
    }

    .prodck-photocnt {
        font-size: 10px;
        padding: 3px 5px;
    }

    .prodck-watermark {
        font-size: 11px;
    }

    .hero-ck-name {
        font-size: 20px;
    }

    .panel-ck-title {
        font-size: 18px;
    }

    .adsck-title {
        font-size: 20px;
    }

    .locck-map {
        height: 240px;
    }
}

/* ============================================================
   RESPONSIVE — 320px (Extra Extra Small - iPhone SE)
   ============================================================ */
@media (max-width: 320px) {
    :root {
        --pad-x: 8px;
    }

    .prodck-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .prodck-card {
        border-radius: 6px;
    }

    .prodck-imgwrap {
        min-height: 160px;
        padding-top: 75%;
    }

    .prodck-body {
        padding: 8px;
    }

    .prodck-title {
        font-size: 11px;
        line-height: 1.15;
        margin: 3px 0;
    }

    .prodck-meta {
        gap: 4px;
        font-size: 9px;
        margin-bottom: 3px;
        flex-wrap: wrap;
    }

    .prodck-cat {
        font-size: 9px;
    }

    .prodck-ref {
        font-size: 9px;
    }

    .prodck-specs {
        gap: 3px;
        margin: 4px 0;
        flex-wrap: wrap;
    }

    .prodck-spec {
        font-size: 9px;
        padding: 2px 3px;
    }

    .prodck-spec i {
        font-size: 9px;
    }

    .prodck-footer {
        gap: 4px;
        flex-direction: column;
    }

    .prodck-price {
        width: 100%;
    }

    .prodck-price-from {
        font-size: 8px;
    }

    .prodck-price-row {
        gap: 2px;
    }

    .prodck-cur {
        font-size: 10px;
    }

    .prodck-num {
        font-size: 13px;
    }

    .btn-resck {
        font-size: 10px;
        padding: 5px 8px;
        gap: 3px;
        width: 100%;
        justify-content: center;
    }

    .btn-resck i {
        font-size: 10px;
    }

    .prodck-wish {
        width: 26px;
        height: 26px;
        font-size: 11px;
        top: 6px;
        right: 6px;
    }

    .prodck-badge-feat,
    .prodck-badge-disc {
        font-size: 8px;
        padding: 2px 4px;
    }

    .prodck-avail {
        font-size: 8px;
        padding: 2px 4px;
        bottom: 6px;
        left: 6px;
    }

    .prodck-photocnt {
        font-size: 9px;
        padding: 2px 4px;
    }

    .prodck-watermark {
        font-size: 10px;
    }

    .prodck-timer {
        font-size: 10px;
        padding: 4px 6px;
    }

    .prodck-timer-txt {
        font-size: 10px;
    }

    .hero-ck-name {
        font-size: 18px;
    }

    .hero-ck-centre {
        padding: 24px 0 32px;
    }

    .panel-ck-title {
        font-size: 16px;
    }

    .adsck-title {
        font-size: 18px;
    }

    .adsck-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .floatnav-ck-tab {
        padding: 5px 10px;
        font-size: 9px;
    }
}

/* ============================================================
   REVIEWS SECTION — rvck prefix
   Template 10 · Chalk White & Electric Cobalt
   ============================================================ */

/* ── Overview block ─────────────────────────────────────────── */
.rvck-overview {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 36px;
    align-items: center;
    background: linear-gradient(145deg, var(--cobalt-950) 0%, var(--slate-900) 50%, var(--cobalt-900) 100%);
    border-radius: var(--r-xl);
    padding: 40px 44px;
    margin-bottom: 44px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(165, 180, 252, .15);
}

.rvck-overview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 50%, rgba(67, 56, 202, .25) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 50%, rgba(244, 63, 94, .08) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.rvck-overview::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(165, 180, 252, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 180, 252, .03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* ── Score Medallion ────────────────────────────────────────── */
.rvck-medallion {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.rvck-medal-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(165, 180, 252, .30);
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: rvckRingPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes rvckRingPulse {
    0%, 100% { opacity: .4; transform: translateX(-50%) scale(1); }
    50%       { opacity: .90; transform: translateX(-50%) scale(1.07); }
}

.rvck-medal-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cobalt-600), var(--cobalt-400));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(67, 56, 202, .50), 0 8px 24px rgba(0, 0, 0, .40);
    position: relative;
    z-index: 1;
}

.rvck-medal-score {
    font-family: var(--font-disp);
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.rvck-medal-denom {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--cobalt-200);
    opacity: .85;
    letter-spacing: .5px;
    margin-top: 2px;
}

.rvck-medal-stars {
    display: flex;
    gap: 3px;
    color: var(--cobalt-300);
    font-size: 13px;
}

.rvck-medal-label {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--cobalt-300);
    letter-spacing: .4px;
    white-space: nowrap;
}

/* ── Rating Bars ────────────────────────────────────────────── */
.rvck-bars-col {
    display: flex;
    flex-direction: column;
    gap: 11px;
    position: relative;
    z-index: 1;
}

.rvck-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rvck-bar-lbl {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--cobalt-300);
    min-width: 30px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.rvck-bar-lbl i { font-size: 9px; color: var(--cobalt-400); }

.rvck-bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--r-pill);
    overflow: hidden;
}

.rvck-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cobalt-600), var(--cobalt-400));
    border-radius: var(--r-pill);
    transition: width 1.3s var(--ease-out);
}

.rvck-bar-cnt {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--cobalt-400);
    min-width: 18px;
    text-align: right;
}

/* ── Verdict Column ─────────────────────────────────────────── */
.rvck-verdict-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.rvck-verdict-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    transition: var(--t-base);
}

.rvck-verdict-item:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(165, 180, 252, .22);
}

.rvck-verdict-item > i {
    font-size: 15px;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.rvck-verd-pos > i { color: var(--cobalt-400); }
.rvck-verd-neu > i { color: var(--cobalt-300); opacity: .70; }
.rvck-verd-neg > i { color: var(--coral-400); }

.rvck-verd-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.rvck-verd-lbl {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--cobalt-300);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ── Slider Heading + Nav Group ─────────────────────────────── */
.rvck-slider-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 14px;
}

.rvck-slider-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-disp);
    font-size: 22px;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -.2px;
}

.rvck-slider-line {
    flex: 0 0 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cobalt-500), transparent);
    border-radius: var(--r-pill);
}

.rvck-nav-group {
    display: flex;
    gap: 10px;
}

/* ── Arrows ─────────────────────────────────────────────────── */
.rvck-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--cobalt-500);
    background: transparent;
    color: var(--cobalt-600);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: var(--t-base);
    flex-shrink: 0;
}

.rvck-arrow:hover:not(:disabled) {
    background: var(--cobalt-700);
    color: #ffffff;
    border-color: var(--cobalt-700);
    transform: scale(1.08);
    box-shadow: var(--shad-cobalt);
}

.rvck-arrow:disabled {
    opacity: .32;
    cursor: not-allowed;
    transform: none;
}

/* ── Slider Container ───────────────────────────────────────── */
.rvck-slider-outer { position: relative; }

.rvck-viewport {
    overflow: hidden;
    border-radius: var(--r-lg);
}

.rvck-track {
    display: flex;
    gap: 24px;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    cursor: grab;
    user-select: none;
    will-change: transform;
}

.rvck-track.dragging {
    cursor: grabbing;
    transition: none;
}

/* ── Review Card ────────────────────────────────────────────── */
.rvck-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--chalk-50);
    border-radius: var(--r-lg);
    padding: 32px 28px 26px;
    position: relative;
    overflow: hidden;
    border: 1.5px solid var(--chalk-400);
    box-shadow: var(--shad-sm);
    transition: var(--t-base);
    opacity: .65;
    transform: translateY(5px);
}

.rvck-card.active {
    opacity: 1;
    transform: translateY(0);
}

.rvck-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cobalt-700), var(--cobalt-500), var(--coral-500));
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.rvck-card.active::before,
.rvck-card:hover::before {
    opacity: 1;
}

.rvck-card:hover {
    box-shadow: var(--shad-md);
    transform: translateY(-4px);
    border-color: var(--cobalt-200);
}

/* ── Quote Icon ─────────────────────────────────────────────── */
.rvck-quote {
    font-family: var(--font-disp);
    font-size: 72px;
    font-weight: 800;
    color: var(--cobalt-100);
    line-height: .6;
    margin-bottom: 14px;
    display: block;
    pointer-events: none;
}

/* ── Stars ──────────────────────────────────────────────────── */
.rvck-card-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 16px;
}

.rvck-card-stars .fa-star,
.rvck-card-stars .fa-star-half-alt {
    color: var(--cobalt-500);
    font-size: 13px;
}

.rvck-card-stars .rvck-empty-star {
    color: var(--chalk-400);
}

.rvck-rating-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--slate-500);
    margin-left: 6px;
    font-weight: 600;
}

/* ── Review Text ────────────────────────────────────────────── */
.rvck-card-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.75;
    color: var(--slate-600);
    margin: 0 0 22px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Divider ────────────────────────────────────────────────── */
.rvck-card-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--cobalt-200), var(--chalk-300), transparent);
    margin-bottom: 18px;
}

/* ── Card Author ────────────────────────────────────────────── */
.rvck-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rvck-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: .5px;
    box-shadow: 0 2px 10px rgba(67, 56, 202, .20);
}

.rvck-av-cobalt { background: linear-gradient(135deg, var(--cobalt-700), var(--cobalt-500)); color: #ffffff; }
.rvck-av-coral  { background: linear-gradient(135deg, var(--coral-600),  var(--coral-400));  color: #ffffff; }
.rvck-av-slate  { background: linear-gradient(135deg, var(--slate-700),  var(--slate-500));  color: #ffffff; }
.rvck-av-teal   { background: linear-gradient(135deg, #0f766e, #14b8a6); color: #ffffff; }

.rvck-author-info {
    flex: 1;
    min-width: 0;
}

.rvck-author-name {
    display: block;
    font-family: var(--font-disp);
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.rvck-author-role {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--slate-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.rvck-author-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    flex-shrink: 0;
}

.rvck-review-date {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--slate-400);
    white-space: nowrap;
}

.rvck-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    color: var(--cobalt-700);
    background: var(--cobalt-50);
    border: 1px solid var(--cobalt-200);
    padding: 3px 8px;
    border-radius: var(--r-pill);
    white-space: nowrap;
}

.rvck-verified i { font-size: 10px; color: var(--cobalt-600); }

/* ── Controls ───────────────────────────────────────────────── */
.rvck-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.rvck-play-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--cobalt-500);
    background: transparent;
    color: var(--cobalt-600);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 11px;
    transition: var(--t-base);
    flex-shrink: 0;
}

.rvck-play-btn:hover {
    background: var(--cobalt-700);
    color: #ffffff;
    border-color: var(--cobalt-700);
    box-shadow: var(--shad-cobalt);
}

.rvck-dots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.rvck-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--chalk-400);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s var(--ease);
}

.rvck-dot.active {
    background: var(--cobalt-600);
    width: 24px;
    border-radius: var(--r-pill);
    box-shadow: 0 0 12px rgba(67, 56, 202, .45);
}

/* ── Progress Bar ───────────────────────────────────────────── */
.rvck-progress-wrap { margin-top: 12px; }

.rvck-progress {
    height: 2px;
    background: var(--chalk-400);
    border-radius: var(--r-pill);
    overflow: hidden;
}

.rvck-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--cobalt-700), var(--cobalt-400));
    border-radius: var(--r-pill);
    transition: width .1s linear;
}

/* ── Stats Row ──────────────────────────────────────────────── */
.rvck-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--chalk-400);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: 40px;
    border: 1.5px solid var(--chalk-400);
    box-shadow: var(--shad-sm);
}

.rvck-stat-item {
    background: var(--chalk-50);
    padding: 26px 20px;
    text-align: center;
    transition: var(--t-base);
}

.rvck-stat-item:hover {
    background: var(--cobalt-50);
}

.rvck-stat-num {
    font-family: var(--font-disp);
    font-size: 34px;
    font-weight: 800;
    color: var(--cobalt-700);
    line-height: 1;
    margin-bottom: 7px;
}

.rvck-stat-lbl {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--slate-500);
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* ============================================================
   REVIEWS — RESPONSIVE
   ============================================================ */

/* ── 1024px ── */
@media (max-width: 1024px) {
    .rvck-overview {
        grid-template-columns: 170px 1fr 170px;
        gap: 28px;
        padding: 34px 32px;
    }

    .rvck-medal-inner { width: 90px; height: 90px; }
    .rvck-medal-score { font-size: 30px; }
    .rvck-medal-ring  { width: 108px; height: 108px; }

    .rvck-card { flex: 0 0 calc(50% - 12px); }

    .rvck-stat-num { font-size: 30px; }
}

/* ── 768px ── */
@media (max-width: 768px) {
    .rvck-overview {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 24px;
        padding: 28px 22px;
    }

    .rvck-medallion  { grid-column: 1; grid-row: 1; }
    .rvck-verdict-col{ grid-column: 2; grid-row: 1; }
    .rvck-bars-col   { grid-column: 1 / -1; grid-row: 2; }

    .rvck-card { flex: 0 0 100%; }

    .rvck-slider-hdr {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .rvck-stats-row { grid-template-columns: repeat(2, 1fr); }
    .rvck-stat-item { padding: 22px 16px; }
    .rvck-stat-num  { font-size: 28px; }
}

/* ── 425px ── */
@media (max-width: 425px) {
    .rvck-overview {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 22px 16px;
    }

    .rvck-medallion  { grid-column: 1; grid-row: auto; }
    .rvck-verdict-col{ grid-column: 1; grid-row: auto; }
    .rvck-bars-col   { grid-column: 1; grid-row: auto; }

    .rvck-medal-inner { width: 86px; height: 86px; }
    .rvck-medal-score { font-size: 28px; }
    .rvck-medal-ring  { width: 100px; height: 100px; top: -7px; }

    .rvck-card { padding: 24px 18px 20px; }
    .rvck-quote { font-size: 52px; }
    .rvck-card-text { -webkit-line-clamp: 5; font-size: 13px; }
    .rvck-author-meta { display: none; }

    .rvck-slider-heading { font-size: 18px; }
    .rvck-slider-line    { flex: 0 0 24px; }

    .rvck-stats-row { grid-template-columns: repeat(2, 1fr); }
    .rvck-stat-item { padding: 18px 12px; }
    .rvck-stat-num  { font-size: 26px; }
    .rvck-stat-lbl  { font-size: 10px; }
}

/* ── 375px ── */
@media (max-width: 375px) {
    .rvck-overview { padding: 20px 14px; gap: 16px; }

    .rvck-medal-inner { width: 80px; height: 80px; }
    .rvck-medal-score { font-size: 26px; }
    .rvck-medal-ring  { width: 94px; height: 94px; }

    .rvck-card { padding: 20px 16px; }
    .rvck-quote { font-size: 48px; }

    .rvck-arrow { width: 36px; height: 36px; font-size: 12px; }

    .rvck-stats-row  { grid-template-columns: 1fr 1fr; }
    .rvck-stat-item  { padding: 16px 10px; }
    .rvck-stat-num   { font-size: 24px; }
}

/* ── 320px ── */
@media (max-width: 320px) {
    .rvck-overview { padding: 16px 12px; gap: 14px; }

    .rvck-medal-inner { width: 74px; height: 74px; }
    .rvck-medal-score { font-size: 22px; }
    .rvck-medal-ring  { width: 88px; height: 88px; }

    .rvck-card { padding: 18px 14px; }
    .rvck-quote { font-size: 40px; }
    .rvck-card-text { font-size: 12px; }

    .rvck-arrow { width: 32px; height: 32px; font-size: 11px; }

    .rvck-stats-row { grid-template-columns: 1fr 1fr; }
    .rvck-stat-item { padding: 14px 8px; }
    .rvck-stat-num  { font-size: 20px; }
    .rvck-stat-lbl  { font-size: 9px; }
}

@media print {
    .booking-ck-wrap, .floatnav-ck, .locck-btns, .adsck-section {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}
