/* ═══════════════════════════════════════════════════════════════════════════
   HousifyHub – Single Property Detail Page
   Self-contained: defines its own CSS variables so the file works correctly
   even if the theme or page builder prevents style.css from loading.
   Mobile-first: 375px → 640px → 960px
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ──────────────────────────────────────────────────────── */
:root {
    --hk-primary:    #1e7a34;
    --hk-primary-h:  #155c27;
    --hk-accent:     #f59e0b;
    --hk-bg:         #f8faf8;
    --hk-white:      #ffffff;
    --hk-border:     #e2e8e2;
    --hk-text:       #1a2e1a;
    --hk-muted:      #6b7c6b;
    --hk-red:        #ef4444;
    --hk-radius:     10px;
    --hk-shadow:     0 2px 12px rgba(0, 0, 0, .10);
    --hk-font:       'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* ── Page wrapper ────────────────────────────────────────────────────────── */
.hk-single {
    font-family: var(--hk-font);
    color: var(--hk-text);
    background: var(--hk-bg);
    min-height: 50vh;
}
.hk-single * {
    box-sizing: border-box;
}

/* Centred container */
.hk-sp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 1 – Hero / Photo Gallery
   ═══════════════════════════════════════════════════════════════════════════ */
.hk-sp-hero {
    position: relative;
    background: #111;
    overflow: hidden;
}

/* ── Gallery slideshow ───────────────────────────────────────────────────── */
.hk-sp-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;    /* always 16:9, just like Funda */
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    cursor: zoom-in;
}
.hk-sp-gallery-slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.hk-sp-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .5s ease;
}
.hk-sp-slide.is-active { opacity: 1; }
.hk-sp-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* fill the 16:9 frame — consistent crop */
    display: block;
}

/* Prev / Next arrow buttons */
.hk-sp-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .50);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background .2s;
    padding: 0;
}
.hk-sp-gallery-btn:hover { background: rgba(0, 0, 0, .80); }
.hk-sp-prev { left: 12px; }
.hk-sp-next { right: 12px; }

/* Navigation dots */
.hk-sp-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}
.hk-sp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .40);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.hk-sp-dot.is-active {
    background: #fff;
    transform: scale(1.4);
}

/* Photo counter  "1 / 4" */
.hk-sp-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, .50);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 11px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 10;
}

/* ── No-photo placeholder ────────────────────────────────────────────────── */
.hk-sp-hero-placeholder {
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e7a34 0%, #155c27 100%);
    color: #fff;
    text-align: center;
}
.hk-sp-hero-placeholder > span {
    font-size: 80px;
    line-height: 1;
    display: block;
}
.hk-sp-hero-placeholder > p {
    font-size: 17px;
    font-weight: 600;
    margin: 16px 0 0;
    opacity: .9;
    padding: 0 20px;
}

/* ── Overlay status / type badges ────────────────────────────────────────── */
.hk-sp-hero-badges {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 10;
}
.hk-sp-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    line-height: 1.4;
    white-space: nowrap;
}
.hk-sp-badge--type.rent     { background: rgba(29, 78, 216, .85);  color: #fff; }
.hk-sp-badge--type.sale     { background: rgba(133, 77, 14, .85);  color: #fef9c3; }
.hk-sp-badge--status.available { background: rgba(22, 101, 52, .85);  color: #dcfce7; }
.hk-sp-badge--status.rented    { background: rgba(153, 27, 27, .85);  color: #fee2e2; }
.hk-sp-badge--status.reserved  { background: rgba(146, 64, 14, .85);  color: #fef3c7; }
.hk-sp-badge--featured      { background: rgba(245, 158, 11, .90); color: #fff; }
.hk-sp-badge--verified      { background: rgba(30, 122, 52, .90);  color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 2 – Title / Price Bar (sticky on scroll)
   ═══════════════════════════════════════════════════════════════════════════ */
.hk-sp-titlebar {
    background: var(--hk-white);
    border-bottom: 1px solid var(--hk-border);
    padding: 14px 0;
    transition: box-shadow .2s;
    z-index: 100;
}
.hk-sp-titlebar.is-sticky {
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .13);
}

/* Inner flex row: stacked on mobile, inline on 640px+ */
.hk-sp-titlebar-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hk-sp-breadcrumb {
    font-size: 13px;
    color: var(--hk-muted);
    margin: 0 0 2px;
    line-height: 1.4;
}
.hk-sp-title {
    font-size: clamp(17px, 4.5vw, 26px);
    font-weight: 700;
    color: var(--hk-text);
    margin: 0;
    line-height: 1.2;
}
.hk-sp-price {
    font-size: clamp(20px, 5vw, 30px);
    font-weight: 800;
    color: var(--hk-primary);
    line-height: 1;
    margin: 0;
}
.hk-sp-price-suffix {
    font-size: 14px;
    font-weight: 400;
    color: var(--hk-muted);
}
.hk-sp-avail-from {
    font-size: 12px;
    color: var(--hk-muted);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 3 – Body: Main column + Sidebar
   ═══════════════════════════════════════════════════════════════════════════ */
.hk-sp-body {
    padding: 20px 0 32px;
    display: grid;
    grid-template-columns: 1fr;   /* stacked on mobile */
    gap: 0;
    align-items: start;
}

/* Shared card style used by all content blocks */
.hk-sp-card,
.hk-sp-contact-card,
.hk-sp-meta-card {
    background: var(--hk-white);
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    padding: 18px 20px;
    box-shadow: var(--hk-shadow);
    margin-bottom: 16px;
}
.hk-sp-card:last-child  { margin-bottom: 0; }
.hk-sp-contact-card     { margin-bottom: 14px; }
.hk-sp-meta-card        { margin-bottom: 0; }

.hk-sp-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--hk-text);
    margin: 0 0 16px;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--hk-border);
    line-height: 1.3;
}

/* ── Property details grid ───────────────────────────────────────────────── */
.hk-sp-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.hk-sp-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: var(--hk-bg);
    border: 1px solid var(--hk-border);
    border-radius: 8px;
}
.hk-sp-detail--full { grid-column: 1 / -1; }

/* Emoji icon sizing — explicit block + width to prevent layout shift */
.hk-sp-detail-icon {
    font-size: 22px;
    line-height: 1;
    display: block;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.hk-sp-detail-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--hk-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1.3;
}
.hk-sp-detail-val {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--hk-text);
    margin-top: 3px;
    line-height: 1.3;
}

/* ── Description ─────────────────────────────────────────────────────────── */
.hk-sp-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--hk-text);
}
.hk-sp-description p             { margin: 0 0 12px; }
.hk-sp-description p:last-child  { margin-bottom: 0; }

/* ── Amenity badges ──────────────────────────────────────────────────────── */
.hk-sp-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.hk-sp-amenity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
    padding: 6px 13px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}
/* Emoji inside amenity badge */
.hk-sp-amenity > span {
    font-size: 16px;
    line-height: 1;
    display: inline-block;
}

/* ── Mini map ────────────────────────────────────────────────────────────── */
.hk-sp-addr-line {
    font-size: 13px;
    color: var(--hk-muted);
    margin: 0 0 10px;
    line-height: 1.5;
}
.hk-sp-map {
    height: 300px;
    border-radius: 8px;
    border: 1px solid var(--hk-border);
    overflow: hidden;
}
.hk-sp-map-note {
    font-size: 11px;
    color: var(--hk-muted);
    margin: 8px 0 0;
    text-align: center;
    line-height: 1.4;
}

/* Map marker inner circle */
.hk-sp-pin-inner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1e7a34;
    border: 3px solid #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SIDEBAR – Contact card, meta card, report link
   ═══════════════════════════════════════════════════════════════════════════ */

/* Contact name row */
.hk-sp-contact-name {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: var(--hk-text);
    margin: 0 0 14px;
    flex-wrap: wrap;
}

/* CTA buttons (WhatsApp, Phone, Email) */
.hk-sp-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 16px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
    transition: opacity .18s, transform .12s;
    font-family: var(--hk-font);
    cursor: pointer;
    border: none;
    line-height: 1.3;
}
.hk-sp-cta-btn:last-child     { margin-bottom: 0; }
.hk-sp-cta-btn:hover          { opacity: .88; transform: translateY(-1px); }
.hk-sp-cta-btn svg            { width: 20px; height: 20px; flex-shrink: 0; }

/* WhatsApp */
.hk-sp-cta-wa                 { background: #25d366; color: #fff; }
.hk-sp-cta-wa:hover           { color: #fff; opacity: .90; }

/* Phone */
.hk-sp-cta-phone              { background: var(--hk-bg); border: 1px solid var(--hk-border); color: var(--hk-text); }
.hk-sp-cta-phone:hover        { background: #f0f9f0; color: var(--hk-text); }

/* Email */
.hk-sp-cta-email              { background: #f0f9ff; border: 1px solid #bae6fd; color: #0369a1; }
.hk-sp-cta-email:hover        { color: #0369a1; }

/* No contact fallback */
.hk-sp-no-contact {
    font-size: 13px;
    color: var(--hk-muted);
    text-align: center;
    padding: 6px 0;
}

/* Listing meta list */
.hk-sp-meta-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.hk-sp-meta-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    padding: 9px 0;
    border-bottom: 1px solid var(--hk-border);
    font-size: 13px;
}
.hk-sp-meta-list li:last-child { border-bottom: none; }
.hk-sp-meta-label { color: var(--hk-muted); white-space: nowrap; }
.hk-sp-meta-val   { font-weight: 600; color: var(--hk-text); text-align: right; }
.hk-sp-meta-val.hk-premium { color: #d97706; }
.hk-sp-meta-val.hk-expired { color: var(--hk-red); }

/* Report link */
.hk-sp-report { text-align: center; margin: 8px 0 0; }
.hk-sp-report a {
    font-size: 12px;
    color: var(--hk-muted);
    text-decoration: none;
    transition: color .15s;
}
.hk-sp-report a:hover { color: var(--hk-red); }

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION 4 – Similar Properties
   ═══════════════════════════════════════════════════════════════════════════ */
.hk-sp-similar {
    background: var(--hk-white);
    border-top: 1px solid var(--hk-border);
    padding: 28px 0 44px;
    margin-top: 8px;
}
.hk-sp-similar-heading {
    font-size: clamp(16px, 4vw, 21px);
    font-weight: 700;
    color: var(--hk-text);
    margin: 0 0 18px;
    line-height: 1.2;
}

/* Mobile: horizontal scroll row (one card per "peek") */
.hk-sp-similar-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;   /* room for scrollbar on Windows */
}
/* Hide scrollbar visually but keep it functional */
.hk-sp-similar-grid::-webkit-scrollbar { height: 4px; }
.hk-sp-similar-grid::-webkit-scrollbar-thumb { background: var(--hk-border); border-radius: 2px; }

.hk-sp-sim-card {
    display: block;
    flex: 0 0 260px;           /* fixed width on mobile → horizontal scroll */
    min-width: 0;
    scroll-snap-align: start;
    background: var(--hk-white);
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--hk-shadow);
    transition: transform .2s, box-shadow .2s;
}
.hk-sp-sim-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, .13); }

/* Thumbnail area */
.hk-sp-sim-img {
    position: relative;
    height: 160px;
    background: #e5e7eb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    line-height: 1;
}
.hk-sp-sim-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.hk-sp-sim-card:hover .hk-sp-sim-img img { transform: scale(1.05); }

.hk-sp-sim-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    line-height: 1.4;
}
.hk-sp-sim-badge.rent { background: #dbeafe; color: #1d4ed8; }
.hk-sp-sim-badge.sale { background: #fef9c3; color: #854d0e; }

.hk-sp-sim-body        { padding: 12px 14px; }
.hk-sp-sim-title       { font-size: 14px; font-weight: 600; color: var(--hk-text); margin-bottom: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hk-sp-sim-meta        { font-size: 12px; color: var(--hk-muted); margin-bottom: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hk-sp-sim-price       { font-size: 16px; font-weight: 800; color: #1e7a34; margin-top: 7px; line-height: 1; }
.hk-sp-sim-price small { font-size: 11px; font-weight: 400; color: var(--hk-muted); }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 480px+ ──────────────────────────────────────────────────────────────── */
@media (min-width: 480px) {
    /* gallery height flows from aspect-ratio: 16/9 — no override needed */
    .hk-sp-hero-placeholder { height: 320px; }
}

/* ── 640px+ ──────────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
    /* gallery height flows from aspect-ratio: 16/9 — no override needed */
    .hk-sp-hero-placeholder     { height: 360px; }
    .hk-sp-titlebar-inner       { flex-direction: row; align-items: center; justify-content: space-between; gap: 20px; }
    .hk-sp-titlebar-right       { text-align: right; flex-shrink: 0; }
    .hk-sp-detail-grid          { grid-template-columns: 1fr 1fr 1fr; }

    /* Similar: switch to 2-column grid, no more horizontal scroll */
    .hk-sp-similar-grid         { display: grid; grid-template-columns: 1fr 1fr; overflow-x: visible; padding-bottom: 0; }
    .hk-sp-sim-card             { flex: unset; min-width: unset; }
}

/* ── 960px+ ──────────────────────────────────────────────────────────────── */
@media (min-width: 960px) {
    /* gallery height flows from aspect-ratio: 16/9 — no override needed */
    .hk-sp-hero-placeholder     { height: 420px; }

    /* Two-column page body: main content + sticky sidebar */
    .hk-sp-body {
        grid-template-columns: 1fr 340px;
        gap: 28px;
        padding: 28px 0 56px;
    }
    .hk-sp-sidebar {
        position: sticky;
        top: 80px;         /* leaves room below a sticky header/nav */
        align-self: start;
    }

    .hk-sp-detail-grid  { grid-template-columns: 1fr 1fr 1fr; }
    .hk-sp-map          { height: 340px; }

    /* Similar: 3-column grid */
    .hk-sp-similar-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LIGHTBOX – Fullscreen photo viewer (Funda-style)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Root overlay — always hidden, shown via JS by adding .is-open ── */
.hk-lb {
    display: none;            /* toggled to flex by JS */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    outline: none;
}
.hk-lb.is-open { display: flex; }

/* ── Top bar: photo counter (centred) + close button (right) ── */
.hk-lb-topbar {
    position: relative;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-height: 60px;
    flex-shrink: 0;
    padding: 0 72px;
    background: rgba(0, 0, 0, 0.50);
}

.hk-lb-counter {
    font-family: var(--hk-font);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 20px;
    border-radius: 30px;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

/* Close button — top-right, always on top */
.hk-lb-close {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    z-index: 100001;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.40);
    background: rgba(0, 0, 0, 0.60);
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
    font-family: Arial, sans-serif;  /* ensures × renders correctly */
}
.hk-lb-close:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.80);
}

/* ── Main image stage ── */
.hk-lb-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hk-lb-img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity 0.25s ease;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}
.hk-lb-img.is-visible { opacity: 1; }

/* ── Prev / Next navigation arrows — always visible, z-index beats everything ── */
.hk-lb-arrow {
    position: fixed;          /* fixed so they sit in front of everything */
    top: 50%;
    transform: translateY(-50%);
    z-index: 100000;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.60);
    color: #ffffff;
    font-size: 40px;
    font-family: Arial, sans-serif;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
    padding-bottom: 2px;      /* optical centre for chevron */
}
.hk-lb-prev { left: 16px; }
.hk-lb-next { right: 16px; }
.hk-lb-arrow:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.80);
}

/* ── Thumbnail strip at the bottom ── */
.hk-lb-thumbs {
    z-index: 100001;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    background: rgba(0, 0, 0, 0.70);
    padding: 10px 16px;
    flex-shrink: 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;    /* Firefox */
}
.hk-lb-thumbs::-webkit-scrollbar { display: none; }  /* Chrome / Safari */

.hk-lb-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 56px;
    object-fit: cover;
    border-radius: 5px;
    opacity: 0.55;
    border: 2px solid transparent;
    cursor: pointer;
    transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
    display: block;
}
.hk-lb-thumb:hover { opacity: 0.85; }
.hk-lb-thumb.is-active {
    opacity: 1;
    border-color: #ffffff;
    transform: scale(1.06);
}

/* ── Mobile (≤ 480 px) ── */
@media (max-width: 480px) {
    .hk-lb-topbar  { height: 52px; min-height: 52px; padding: 0 60px; }
    .hk-lb-close   { right: 10px; width: 40px; height: 40px; font-size: 22px; }
    .hk-lb-counter { font-size: 12px; padding: 4px 14px; }
    .hk-lb-arrow   { width: 46px; height: 46px; font-size: 32px; }
    .hk-lb-prev    { left: 8px; }
    .hk-lb-next    { right: 8px; }
    .hk-lb-thumb   { width: 64px; height: 44px; }
}
