


/* ========================================================
   FAVORITE BUTTON
   ======================================================== */
.ail-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.ail-fav-btn:active { transform: scale(0.85); }
.ail-fav-btn.active {
    background: rgba(239,68,68,0.1);
}


/* ========================================================
   SINGLE LISTING PROFILE
   ======================================================== */
.ail-single-hero {
    width: 100%;
    height: 420px;
    max-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
}

@media (max-width: 1024px) {
    .ail-single-hero {
        height: 360px;
        max-height: 360px;
    }
}

@media (max-width: 640px) {
    .ail-single-hero {
        height: 280px;
        max-height: 280px;
    }
}

.ail-back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary, #0f172a);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ail-single-content {
    background: var(--card-bg, #ffffff);
    border-radius: 24px 24px 0 0;
    margin-top: -30px;
    position: relative;
    padding: 24px 20px 20px;
    min-height: auto;
}

.ail-single-header-info {
    border-bottom: 1px solid var(--border-color, #f1f5f9);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.ail-listing-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.ail-listing-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary, #64748b);
}

.ail-meta-rating {
    color: var(--success-color, #10b981);
}

.ail-listing-contact-strip {
    margin-top: 15px;
}

.ail-quick-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--border-color, #f1f5f9);
    color: var(--text-primary, #0f172a);
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.ail-section-subtitle {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
}

.ail-description-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary, #475569);
}

.ail-booking-injection-area {
    margin-top: 30px;
}

/* Sticky Bottom Bar */
.ail-single-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg, #ffffff);
    padding: 15px 20px 25px 20px;
    display: flex;
    gap: 15px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    z-index: 100;
    
    /* Inherit max-width limit on desktop */
    max-width: 480px;
    margin: 0 auto;
}

/* ========================================================
   PHOTO GALLERY
   ======================================================== */
.ail-gallery-section {
    margin-bottom: 25px;
}

.ail-gallery-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.ail-gallery-scroll::-webkit-scrollbar { display: none; }

.ail-gallery-item {
    flex: 0 0 260px;
    height: 180px;
    border-radius: var(--card-radius, 16px);
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: var(--card-shadow, 0 4px 12px rgba(0,0,0,0.06));
}

.ail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ========================================================
   REVIEWS
   ======================================================== */
.ail-reviews-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.ail-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ail-reviews-header .ail-section-subtitle {
    margin-bottom: 0;
}

.ail-write-review-btn {
    padding: 8px 16px;
    background: var(--border-color, #f1f5f9);
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary, #0f172a);
    cursor: pointer;
    text-decoration: none;
}

.ail-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ail-review-card {
    background: var(--card-bg, #ffffff);
    border-radius: var(--card-radius, 16px);
    padding: 15px;
    box-shadow: var(--card-shadow, 0 4px 12px rgba(0,0,0,0.06));
}

.ail-review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.ail-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ail-review-author-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ail-review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary, #0f172a);
}

.ail-review-date {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary, #94a3b8);
}

.ail-review-stars {
    font-size: 12px;
    flex-shrink: 0;
}

.ail-review-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary, #475569);
}

/* Star Selector */
.ail-star-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.ail-star-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.3;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.ail-star-btn.active {
    opacity: 1;
}

.ail-star-btn:hover {
    transform: scale(1.2);
}


/* ========================================================
   MULTI-STEP FORM (Add Listing)
   ======================================================== */
.ail-step-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 25px;
    padding: 0 10px;
}

.ail-step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary, #cbd5e1);
    transition: color 0.3s ease;
}

.ail-step.active {
    color: var(--text-primary, #0f172a);
}

.ail-step span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--border-color, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-secondary, #94a3b8);
    transition: all 0.3s ease;
}

.ail-step.active span {
    background: #0f172a;
    color: #fff;
}

.ail-step-line {
    flex: 1;
    height: 2px;
    background: var(--border-color, #e2e8f0);
    margin: 0 8px;
    max-width: 40px;
}

.ail-form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.ail-form-step.active {
    display: block;
}

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

/* Image Upload */
.ail-upload-placeholder {
    width: 100%;
    height: 200px;
    background: var(--border-color, #f1f5f9);
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease;
    overflow: hidden;
}

.ail-upload-placeholder:hover {
    border-color: var(--text-secondary, #94a3b8);
}

/* Select Dropdown */
select.ail-field-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%2394a3b8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 35px;
}


/* ========================================================
   FAVORITE / HEART BUTTON
   ======================================================== */
.ail-card-wrap {
    position: relative;
    flex: 0 0 240px;
    overflow: hidden;
    border-radius: var(--card-radius, 16px);
}

.ail-card-wrap-row {
    flex: unset;
    width: 100%;
    position: relative;
}

.ail-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: none;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 5;
    transition: transform 0.2s ease;
}

.ail-fav-btn:active { transform: scale(0.85); }

.ail-fav-btn.active {
    animation: heartBounce 0.4s ease;
}

.ail-fav-row {
    top: 50%;
    transform: translateY(-50%);
}
.ail-fav-row:active {
    transform: translateY(-50%) scale(0.85);
}

.ail-hero-fav {
    top: 20px;
    right: 70px;
    width: 40px;
    height: 40px;
    font-size: 18px;
}

@keyframes heartBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.3); }
    60% { transform: scale(0.9); }
    100% { transform: scale(1); }
}


/* =========================================================================
   PLUGIN BOOKING MODULE - DARK MODE OVERRIDES & POLISH
   ========================================================================= */
body.dark-mode #lpcf-booking-widget {
    background: var(--card-bg, #1e1e1e);
    border-color: var(--border-color, rgba(255,255,255,0.06));
}
body.dark-mode #lpcf-booking-widget h3 {
    color: var(--text-primary, #ffffff) !important;
}
body.dark-mode #lpcf-booking-widget p {
    background: rgba(255,255,255,0.02) !important;
    border-color: rgba(255,255,255,0.06) !important;
    color: var(--text-secondary, #a3a3a3) !important;
}
body.dark-mode .lpcf-bk-modal-inner {
    background: var(--bg-color, #121212);
}
body.dark-mode .lpcf-modal-hdr {
    background: var(--bg-color, #121212);
    border-bottom-color: rgba(255,255,255,0.06);
}
body.dark-mode .lpcf-modal-hdr h3,
body.dark-mode .lpcf-step-title {
    color: var(--text-primary, #ffffff) !important;
}
body.dark-mode .lpcf-close-btn {
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary, #a3a3a3);
}
body.dark-mode .lpcf-close-btn:hover {
    background: rgba(255,255,255,0.1);
}
body.dark-mode .lpcf-prof-card {
    background: var(--card-bg, #1e1e1e);
    border-color: rgba(255,255,255,0.06);
}
body.dark-mode .lpcf-prof-card.selected,
body.dark-mode .lpcf-prof-card:hover {
    border-color: var(--primary-color, var(--primary-color));
    background: rgba(99,102,241,0.05);
}
body.dark-mode .lpcf-prof-name {
    color: var(--text-primary, #ffffff);
}
body.dark-mode .lpcf-field label {
    color: var(--text-secondary, #a3a3a3);
}
body.dark-mode .lpcf-field input,
body.dark-mode .lpcf-field textarea,
body.dark-mode .lpcf-t-input {
    background: var(--card-bg, #1e1e1e);
    border-color: rgba(255,255,255,0.1);
    color: var(--text-primary, #ffffff);
}
body.dark-mode .lpcf-field input:focus,
body.dark-mode .lpcf-field textarea:focus,
body.dark-mode .lpcf-t-input:focus {
    border-color: var(--primary-color, var(--primary-color));
}

body.dark-mode .lpcf-slot-bk {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.05);
    color: var(--text-secondary, #555555);
}
body.dark-mode .lpcf-slot-loading,
body.dark-mode .lpcf-slot-msg,
body.dark-mode .lpcf-t-label {
    color: var(--text-secondary, #a3a3a3);
}
body.dark-mode .lpcf-btn-sec {
    background: rgba(255,255,255,0.05);
    color: var(--text-primary, #ffffff);
}

/* Vendor Dashboard Bookings Styling */
body.dark-mode .lpcf-bk-tabs {
    background: var(--card-bg, #1e1e1e) !important;
    border-color: rgba(255,255,255,0.06) !important;
}
body.dark-mode .lpcf-tab-btn {
    color: var(--text-secondary, #a3a3a3) !important;
}
body.dark-mode .lpcf-tab-btn.active {
    background: var(--bg-color, #121212) !important;
    color: var(--text-primary, #ffffff) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
}
body.dark-mode .lpcf-day-row {
    border-bottom-color: rgba(255,255,255,0.06) !important;
}
body.dark-mode .lpcf-day-label {
    color: var(--text-primary, #ffffff) !important;
}
body.dark-mode #lpcf-step-4 p,
body.dark-mode #lpcf-step-4 div {
    color: var(--text-secondary, #a3a3a3) !important;
}
body.dark-mode #lpcf-step-4 h3 {
    color: var(--text-primary, #ffffff) !important;
}
body.dark-mode #lpcf-bk-id {
    color: var(--text-primary, #ffffff) !important;
}

/* ========================================================
   RATING BREAKDOWN (Shared with Single Listing Reviews)
   Originally in analytics.css — needed on listing pages too.
   ======================================================== */
.ail-rating-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--card-bg, #fff);
    border-radius: var(--card-radius, 16px);
    box-shadow: var(--card-shadow, 0 4px 12px rgba(0,0,0,0.06));
}
.ail-rating-overall {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color, #f1f5f9);
    padding-right: 20px;
}
.ail-rating-big {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.ail-rating-stars {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.ail-rating-total {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}
.ail-rating-bars {
    flex: 2;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}
.ail-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ail-rating-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    min-width: 24px;
}
.ail-rating-bar-bg {
    flex: 1;
    height: 6px;
    background: var(--border-color, #f1f5f9);
    border-radius: 3px;
    overflow: hidden;
}
.ail-rating-bar-fill {
    height: 100%;
    background: var(--rating-color, #fbbf24);
    border-radius: 3px;
    transition: width 0.8s ease-out;
}
.ail-rating-pct {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 32px;
    text-align: right;
}

/* Badge integration styles are in core.css (Global Card System) */

/* ========================================================
   AVAILABLE OFFERS SECTION
   ======================================================== */
.ail-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .ail-offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ail-offers-grid {
        grid-template-columns: 1fr;
    }
}

.lpcf-coupon-card {
    background: var(--card-bg, #ffffff);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border-color, #e2e8f0);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
    .lpcf-coupon-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    }
}

.lpcf-coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 10px;
}

.lpcf-coupon-info {
    flex: 1;
}

.lpcf-coupon-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary, #0f172a);
    display: block;
    margin-bottom: 4px;
}

.lpcf-coupon-desc {
    font-size: 13px;
    color: var(--text-secondary, #64748b);
    margin: 0;
    line-height: 1.4;
}

.lpcf-coupon-code-badge {
    background: var(--border-color, #f1f5f9);
    color: var(--primary-color, #3b82f6);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.lpcf-coupon-claim-btn {
    background: var(--primary-color, #3b82f6);
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s ease;
    text-decoration: none;
    display: block;
}

.lpcf-coupon-claim-btn:hover {
    background: var(--primary-color, #2563eb);
    color: #ffffff;
}

/* ========================================================
   RELATED LISTINGS SECTION
   ======================================================== */
.ail-related-card {
    display: flex;
    flex-direction: column;
    background: var(--card-bg, #ffffff);
    border-radius: 16px;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid var(--border-color, #e5e7eb);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
    height: auto;
}

@media (hover: hover) and (pointer: fine) {
    .ail-related-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    }
}

.ail-related-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.ail-related-info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ail-related-info h4 {
    margin: 0 0 12px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary, #0f172a);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.ail-related-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary, #64748b);
}

.ail-related-rating {
    color: var(--success-color, #10b981);
}

.ail-related-cat {
    background: var(--border-color, #f1f5f9);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    color: var(--text-secondary, #475569);
}

/* Dead slider CSS removed: the former `.ail-related-swiper` / `#ail-related-swiper` rules styled a
   related-listings Swiper container that no template renders (that section is a CSS grid —
   .ail-related__grid in single-listing-v2.css). Slider mechanics and the pre-init fallback now live
   only in the ONE shared engine stylesheet, assets/css/lbai-slider.css. */

/* ================================================================
   SPRINT 1 — SINGLE LISTING DISPLAY v1.0.0
   New feature sections for listings created with 16-step wizard
   APPEND-ONLY — No existing CSS modified above this line
   ================================================================ */

/* ── Gallery Lightbox ── */
.ail-listing-gallery {
    margin-bottom: 24px;
}
.ail-listing-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
}
.ail-listing-gallery-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}
.ail-listing-gallery-item:hover { transform: scale(1.03); }
.ail-listing-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ail-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s;
}
.ail-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}
.ail-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ail-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ail-lightbox-prev { left: 20px; }
.ail-lightbox-next { right: 20px; }

/* ── Video Embeds ── */
.ail-listing-videos {
    margin-bottom: 24px;
}
.ail-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 12px;
    background: #0f172a;
}
.ail-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Working Hours ── */
.ail-listing-hours {
    margin-bottom: 24px;
}
.ail-listing-hours-table {
    width: 100%;
    border-collapse: collapse;
}
.ail-listing-hours-table td {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
}
.ail-listing-hours-table td:first-child {
    font-weight: 600;
    color: #334155;
}
.ail-listing-hours-table td:last-child {
    text-align: right;
    color: #64748b;
}
.ail-hours-open-badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}
.ail-hours-is-open {
    background: #f0fdf4;
    color: #166534;
}
.ail-hours-is-closed {
    background: #fef2f2;
    color: #991b1b;
}

/* ── Social Links ── */
.ail-listing-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.ail-listing-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f1f5f9;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}
.ail-listing-social-link:hover {
    background: #e0e7ff;
    transform: translateY(-2px);
}

/* ── Pricing Table ── */
.ail-listing-pricing {
    margin-bottom: 24px;
}
.ail-pricing-table {
    width: 100%;
    border-collapse: collapse;
}
.ail-pricing-table th {
    text-align: left;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 2px solid #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ail-pricing-table td {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
}
.ail-pricing-table td:nth-child(2) {
    font-weight: 700;
    color: #10b981;
}

/* ── FAQ Accordion ── */
.ail-listing-faq {
    margin-bottom: 24px;
}
.ail-faq-item {
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
}
.ail-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    background: #f8fafc;
    transition: background 0.2s;
}
.ail-faq-question:hover { background: #f1f5f9; }
.ail-faq-toggle {
    font-size: 18px;
    transition: transform 0.2s;
    color: #94a3b8;
}
.ail-faq-item.open .ail-faq-toggle {
    transform: rotate(180deg);
}
.ail-faq-answer {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}
.ail-faq-item.open .ail-faq-answer {
    padding: 14px 18px;
    max-height: 500px;
}

/* ── Team Grid ── */
.ail-listing-team {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.ail-listing-team-card {
    text-align: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}
.ail-listing-team-card .ail-team-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 8px;
}
.ail-listing-team-card .ail-team-role {
    font-size: 12px;
    color: #94a3b8;
}

/* ── Highlights / Features ── */
.ail-listing-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.ail-highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #eef2ff;
    color: #3730a3;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* ── Service Radius Badge ── */
.ail-radius-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f0fdf4;
    color: #166534;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* ── Section Headers (Single Listing) ── */
.ail-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}

@media (max-width: 480px) {
    .ail-listing-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .ail-listing-team { grid-template-columns: repeat(2, 1fr); }
    .ail-lightbox-nav { width: 36px; height: 36px; font-size: 16px; }
}


/* ========================================================
   SINGLE LISTING — BUSINESS HEADER CARD (Phase 1 redesign)
   ======================================================== */
.ail-lst-headcard {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color, #f1f5f9);
}
.ail-lst-head-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.ail-lst-logo {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 3px solid #fff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
    margin-top: -46px; /* overlap the hero image */
}
.ail-lst-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ail-lst-head-main {
    flex: 1 1 auto;
    min-width: 0;
}
.ail-lst-name {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 4px;
    color: var(--text-primary, #0f172a);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.ail-verified-tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3b82f6;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    flex: 0 0 auto;
}
.ail-lst-sub {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary, #64748b);
    margin-bottom: 6px;
}
.ail-lst-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
    margin-bottom: 6px;
}
.ail-lst-stars {
    color: #f59e0b;
    font-weight: 800;
}
.ail-lst-stars.ail-lst-new {
    color: #10b981;
}
.ail-lst-reviews {
    color: var(--text-secondary, #64748b);
    font-weight: 600;
}
.ail-lst-address {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13.5px;
    color: var(--text-secondary, #64748b);
    font-weight: 500;
}
.ail-lst-address .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #ef4444;
}

/* Premium Partner badge */
.ail-lst-partner {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12.5px;
    font-weight: 700;
    color: #b45309;
    margin-bottom: 6px;
}
.ail-lst-partner .dashicons {
    font-size: 15px;
    width: 15px;
    height: 15px;
    color: #f59e0b;
}

/* Open / Closed status */
.ail-lst-status {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary, #64748b);
    margin-top: 6px;
}
.ail-open-now {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #059669;
    font-weight: 700;
}
.ail-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
}
.ail-closed-now {
    color: #dc2626;
    font-weight: 700;
}

/* ===== TRUST STATS BOX (Response / Projects / Team / Years) ===== */
.ail-trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
    gap: 0;
    margin: 0 0 22px;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}
.ail-trust-stats .ail-stat-chip {
    border: none;
    border-radius: 0;
    border-right: 1px solid var(--border-color, #f1f5f9);
    background: #fff;
    padding: 14px 8px;
}
.ail-trust-stats .ail-stat-chip:last-child {
    border-right: none;
}

/* Trust stat chips */
.ail-lst-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
    gap: 10px;
    margin-top: 16px;
}
.ail-stat-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 8px;
    border-radius: 14px;
    background: var(--surface-2, #f8fafc);
    border: 1px solid var(--border-color, #f1f5f9);
}
.ail-stat-val {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary, #0f172a);
    line-height: 1.1;
}
.ail-stat-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary, #64748b);
    margin-top: 3px;
}

@media (max-width: 640px) {
    .ail-lst-name { font-size: 19px; }
    .ail-lst-logo { width: 64px; height: 64px; margin-top: -40px; }
}


/* Directions action pill */
.ail-pill-directions .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}


/* ========================================================
   SINGLE LISTING — OUR WORK & PORTFOLIO (Phase 1 redesign)
   ======================================================== */
.ail-ourwork-section {
    margin-bottom: 26px;
}
.ail-sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.ail-sec-head .ail-section-subtitle {
    margin: 0;
}
.ail-sec-viewall {
    background: none;
    border: none;
    color: var(--primary-color, #6366f1);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}
.ail-ourwork-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 12px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.ail-ourwork-tabs::-webkit-scrollbar { display: none; }
.ail-ow-tab {
    flex: 0 0 auto;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-color, #e2e8f0);
    background: #fff;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-secondary, #64748b);
    cursor: pointer;
}
.ail-ow-tab.active {
    background: var(--primary-color, #6366f1);
    color: #fff;
    border-color: transparent;
}
.ail-ourwork-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.ail-ourwork-scroll::-webkit-scrollbar { display: none; }
.ail-ow-item {
    flex: 0 0 auto;
    width: 112px;
    height: 112px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: block;
    background: #f1f5f9;
}
.ail-ow-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.ail-ow-item:hover img { transform: scale(1.05); }
.ail-ow-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
    color: #fff;
    font-size: 10.5px;
    font-weight: 600;
    padding: 14px 6px 5px;
    line-height: 1.2;
}
@media (max-width: 640px) {
    .ail-ow-item { width: 96px; height: 96px; }
}


/* ========================================================
   SINGLE LISTING — ABOUT SECTION (Phase 1 redesign)
   ======================================================== */
.ail-about-section {
    margin-bottom: 26px;
}
.ail-about-body {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-secondary, #475569);
}
.ail-about-body p { margin: 0 0 10px; }
.ail-about-body.ail-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ail-readmore-btn {
    background: none;
    border: none;
    color: var(--primary-color, #6366f1);
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    padding: 4px 0 0;
}
.ail-about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 18px;
}
.ail-hl-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary, #1e293b);
}
.ail-hl-ico {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #eef2ff;
    color: var(--primary-color, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ail-hl-ico .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}
.ail-hl-lbl { line-height: 1.25; }


/* ========================================================
   SINGLE LISTING — SERVICES & PRICING (Phase 1 redesign)
   ======================================================== */
.ail-services-section {
    margin-bottom: 26px;
}
.ail-svc-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.ail-svc-scroll::-webkit-scrollbar { display: none; }
.ail-svc-card {
    flex: 0 0 auto;
    width: 158px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--border-color, #e2e8f0);
    background: #fff;
}
.ail-svc-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #eef2ff;
    color: var(--primary-color, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.ail-svc-ico .dashicons { font-size: 20px; width: 20px; height: 20px; }
.ail-svc-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary, #0f172a);
    margin: 0 0 4px;
    line-height: 1.3;
}
.ail-svc-dur {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary, #64748b);
    margin-bottom: 8px;
}
.ail-svc-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-primary, #0f172a);
    margin-bottom: 12px;
}
.ail-svc-book {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid var(--primary-color, #6366f1);
    color: var(--primary-color, #6366f1);
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.ail-svc-book:hover {
    background: var(--primary-color, #6366f1);
    color: #fff;
}


/* ========================================================
   SINGLE LISTING — BUSINESS DETAILS (Phase 1 redesign)
   ======================================================== */
.ail-bizdetails-section {
    margin-bottom: 26px;
}
.ail-bizdetails-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.ail-biz-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ail-biz-ico {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f0fdf4;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ail-biz-ico .dashicons { font-size: 19px; width: 19px; height: 19px; }
.ail-biz-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.ail-biz-lbl {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary, #64748b);
}
.ail-biz-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary, #0f172a);
    line-height: 1.25;
}


/* ========================================================
   SINGLE LISTING — FAQ ACCORDION (Phase 1 redesign)
   ======================================================== */
.ail-faq-section { margin-bottom: 24px; }
.ail-faq-item {
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 12px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
}
.ail-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary, #1e293b);
    cursor: pointer;
    list-style: none;
}
.ail-faq-q::-webkit-details-marker { display: none; }
.ail-faq-arrow {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid #94a3b8;
    border-bottom: 2px solid #94a3b8;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    margin-right: 4px;
}
.ail-faq-item[open] .ail-faq-arrow { transform: rotate(-135deg); }
.ail-faq-a {
    padding: 0 16px 14px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-secondary, #64748b);
}

/* ========================================================
   SINGLE LISTING — AVAILABILITY & BOOKING (Phase 1 redesign)
   ======================================================== */
.ail-availability-section {
    margin: 26px 0;
    padding: 18px;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 16px;
    background: #fff;
}
.ail-availability-section .ail-section-subtitle { margin-top: 0; }
.ail-avail-days {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 14px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.ail-avail-days::-webkit-scrollbar { display: none; }
.ail-avail-day {
    flex: 0 0 auto;
    min-width: 68px;
    text-align: center;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border-color, #e2e8f0);
    background: #fff;
    cursor: pointer;
}
.ail-avail-day.active {
    border-color: var(--primary-color, #6366f1);
    background: #eef2ff;
}
.ail-avail-dlabel {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary, #0f172a);
}
.ail-avail-ddate {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary, #64748b);
    margin-top: 2px;
}
.ail-avail-hours {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    margin-bottom: 16px;
}
.ail-avail-hours .dashicons { font-size: 16px; width: 16px; height: 16px; }
.ail-avail-note {
    font-size: 13.5px;
    color: var(--text-secondary, #64748b);
    margin: 0 0 16px;
}
.ail-book-appointment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: var(--primary-color, #6366f1);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}
.ail-book-appointment .dashicons { font-size: 18px; width: 18px; height: 18px; }


/* ========================================================
   SINGLE LISTING — RESPONSIVE POLISH (Phase 1)
   ======================================================== */
@media (max-width: 380px) {
    .ail-trust-stats { grid-template-columns: repeat(2, 1fr); }
    .ail-trust-stats .ail-stat-chip:nth-child(2) { border-right: none; }
    .ail-trust-stats .ail-stat-chip:nth-child(1),
    .ail-trust-stats .ail-stat-chip:nth-child(2) {
        border-bottom: 1px solid var(--border-color, #f1f5f9);
    }
    .ail-bizdetails-grid { gap: 12px; }
    .ail-stat-val { font-size: 15px; }
}

/* Center the mobile-first content column on wide screens */
@media (min-width: 1024px) {
    .ail-single-content {
        max-width: 780px;
        margin-left: auto;
        margin-right: auto;
    }
    .ail-about-highlights { grid-template-columns: repeat(4, 1fr); }
}

/* Consistent section spacing + heading rhythm */
.ail-single-content > section,
.ail-single-content > .ail-about-section,
.ail-single-content > .ail-services-section {
    scroll-margin-top: 70px;
}


/* ============================================================================
   LBAI SINGLE LISTING — PHASE 2 PIXEL-PERFECT SYSTEM (ls-*)
   BEM · design tokens · no inline CSS · responsive 320–1920 · mobile sticky bar
   ============================================================================ */

/* ---- Design Tokens (theme-settings override friendly) ---- */
.ls-page {
    --ls-primary:   var(--primary-color, #5B3DF5);
    --ls-primary-d: #4c33d6;
    --ls-call:      #16a34a;
    --ls-wa:        #25D366;
    --ls-verified:  #2563eb;
    --ls-star:      #f59e0b;
    --ls-open:      #10b981;
    --ls-premium:   #b45309;
    --ls-ink:       var(--text-primary, #0f172a);
    --ls-ink-2:     #334155;
    --ls-muted:     var(--text-secondary, #64748b);
    --ls-line:      var(--border-color, #e9edf3);
    --ls-surface:   var(--card-bg, #ffffff);
    --ls-surface-2: #f8fafc;

    --ls-s-1: 4px;  --ls-s-2: 8px;  --ls-s-3: 12px;
    --ls-s-4: 16px; --ls-s-5: 20px; --ls-s-6: 24px;

    --ls-r-sm: 8px; --ls-r-md: 12px; --ls-r-lg: 16px;

    --ls-shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
    --ls-shadow-md: 0 6px 18px rgba(15, 23, 42, .10);
    --ls-shadow-up: 0 -4px 16px rgba(15, 23, 42, .08);

    --ls-fz-name: 22px; --ls-fz-title: 17px; --ls-fz-body: 14px; --ls-fz-meta: 12px;

    background: var(--ls-surface-2);
}
.ls-page * { box-sizing: border-box; }

.ls-ico { width: 20px; height: 20px; flex: 0 0 auto; }

/* utility (no inline style) */
.ls-hidden { display: none; }
.ls-noresize { resize: none; }
.ls-mt-15 { margin-top: 15px; }

/* ---- Expired banner ---- */
.ls-expired {
    margin: var(--ls-s-4);
    padding: var(--ls-s-4) var(--ls-s-5);
    text-align: center;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #ef4444;
    border-radius: var(--ls-r-md);
}
.ls-expired__title { display: block; color: #991b1b; font-weight: 800; font-size: 16px; }
.ls-expired__text { display: block; color: #7f1d1d; font-size: 13px; font-weight: 500; margin-top: var(--ls-s-1); }

/* ============================ 1. HERO ============================ */
.ls-hero { position: relative; width: 100%; }
.ls-hero__media { position: relative; width: 100%; height: 300px; overflow: hidden; }
.ls-hero__swiper, .ls-hero__slide { width: 100%; height: 100%; }
.ls-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ls-hero__scrim {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 62%, rgba(0,0,0,.35) 100%);
}
.ls-hero__topbar {
    position: absolute; top: 0; left: 0; right: 0; z-index: 3;
    display: flex; align-items: center; justify-content: space-between;
    padding: var(--ls-s-4);
}
.ls-hero__topactions { display: flex; gap: var(--ls-s-2); }
.ls-hero__iconbtn {
    width: 40px; height: 40px; border: none; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; color: var(--ls-ink);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--ls-shadow-sm);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.ls-hero__iconbtn:focus-visible { outline: 2px solid var(--ls-primary); outline-offset: 2px; }
.ls-hero__counter {
    position: absolute; right: var(--ls-s-4); bottom: var(--ls-s-4); z-index: 3;
    padding: 3px 10px; border-radius: 20px; font-size: var(--ls-fz-meta); font-weight: 700;
    color: #fff; background: rgba(15, 23, 42, .6);
}
.ls-hero__dots { position: absolute; bottom: var(--ls-s-3); z-index: 3; }

/* ---- Content sheet overlapping hero ---- */
.ls-content {
    position: relative; z-index: 2;
    margin-top: -28px;
    padding: var(--ls-s-6) var(--ls-s-5) var(--ls-s-6);
    background: var(--ls-surface);
    border-radius: var(--ls-r-lg) var(--ls-r-lg) 0 0;
}

/* ---- Identity card ---- */
.ls-idcard { border-bottom: 1px solid var(--ls-line); padding-bottom: var(--ls-s-5); margin-bottom: var(--ls-s-5); }
.ls-idcard__logo {
    width: 76px; height: 76px; margin-top: -50px; margin-bottom: var(--ls-s-3);
    border-radius: 50%; overflow: hidden; background: #fff;
    border: 3px solid #fff; box-shadow: var(--ls-shadow-md);
}
.ls-idcard__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ls-idcard__name {
    display: flex; align-items: center; gap: var(--ls-s-2); flex-wrap: wrap;
    margin: 0 0 var(--ls-s-1); font-size: var(--ls-fz-name); font-weight: 800; line-height: 1.2; color: var(--ls-ink);
}
.ls-idcard__verified { display: inline-flex; }
.ls-idcard__verified .ls-ico { width: 20px; height: 20px; }
.ls-idcard__partner {
    display: inline-flex; align-items: center; gap: var(--ls-s-1);
    color: var(--ls-premium); font-size: 12.5px; font-weight: 700; margin-bottom: var(--ls-s-2);
}
.ls-idcard__partner .ls-ico { width: 15px; height: 15px; color: var(--ls-star); }
.ls-idcard__rating { display: flex; align-items: center; gap: var(--ls-s-2); font-size: var(--ls-fz-body); margin-bottom: var(--ls-s-1); }
.ls-idcard__stars { display: inline-flex; align-items: center; gap: 4px; font-weight: 800; color: var(--ls-star); }
.ls-idcard__stars .ls-ico { width: 16px; height: 16px; fill: var(--ls-star); stroke: var(--ls-star); }
.ls-idcard__reviews { color: var(--ls-muted); font-weight: 600; }
.ls-idcard__sub { font-size: 13.5px; font-weight: 600; color: var(--ls-muted); margin-bottom: var(--ls-s-1); }
.ls-idcard__loc { display: flex; align-items: center; gap: 5px; font-size: 13.5px; color: var(--ls-muted); }
.ls-idcard__loc .ls-ico { width: 16px; height: 16px; color: #ef4444; }
.ls-idcard__status { font-size: 13px; font-weight: 600; color: var(--ls-muted); margin-top: var(--ls-s-1); }
.ls-idcard__open { display: inline-flex; align-items: center; gap: 5px; color: var(--ls-open); font-weight: 700; }
.ls-idcard__closed { color: #dc2626; font-weight: 700; }
.ls-idcard__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ls-open); }

/* ============================ 2. QUICK ACTIONS ============================ */
.ls-actions { display: flex; gap: var(--ls-s-2); margin-bottom: var(--ls-s-6); }
.ls-actions__btn {
    flex: 1 1 0; min-width: 0;
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    padding: var(--ls-s-3) var(--ls-s-2);
    border-radius: var(--ls-r-sm); border: 1px solid transparent;
    font-size: 12.5px; font-weight: 700; text-decoration: none; cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.ls-actions__btn span { white-space: nowrap; }
.ls-actions__btn:active { transform: scale(.96); }
.ls-actions__btn--call { background: var(--ls-call); color: #fff; }
.ls-actions__btn--wa   { background: var(--ls-wa); color: #fff; }
.ls-actions__btn--book { background: var(--ls-primary); color: #fff; }
.ls-actions__btn--dir  { background: #fff; color: var(--ls-ink-2); border-color: var(--ls-line); }
.ls-actions__btn:focus-visible { outline: 2px solid var(--ls-primary); outline-offset: 2px; }

/* ============================ 3. TRUST STATS ============================ */
.ls-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--ls-line); border-radius: var(--ls-r-lg); overflow: hidden;
    background: #fff; margin-bottom: var(--ls-s-6);
}
.ls-stats__cell {
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
    padding: var(--ls-s-4) var(--ls-s-2); border-right: 1px solid var(--ls-line);
}
.ls-stats__cell:last-child { border-right: none; }
.ls-stats__num { font-size: 20px; font-weight: 800; color: var(--ls-ink); line-height: 1.1; }
.ls-stats__lbl { margin-top: var(--ls-s-1); font-size: 11px; font-weight: 600; letter-spacing: .3px; color: var(--ls-muted); text-transform: uppercase; }

/* ============================ Section head ============================ */
.ls-sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--ls-s-3); }
.ls-sec-head__title { margin: 0 0 var(--ls-s-3); font-size: var(--ls-fz-title); font-weight: 700; color: var(--ls-ink); }
.ls-sec-head .ls-sec-head__title { margin-bottom: 0; }

/* ============================ 4. PORTFOLIO ============================ */
.ls-portfolio { margin-bottom: var(--ls-s-6); }
.ls-portfolio__tabs { display: flex; gap: var(--ls-s-2); overflow-x: auto; margin-bottom: var(--ls-s-3); scrollbar-width: none; }
.ls-portfolio__tabs::-webkit-scrollbar { display: none; }
.ls-portfolio__tab {
    flex: 0 0 auto; padding: 6px 14px; border-radius: 20px;
    border: 1px solid var(--ls-line); background: #fff;
    font-size: 12.5px; font-weight: 600; color: var(--ls-muted); cursor: pointer;
}
.ls-portfolio__tab.is-active { background: var(--ls-primary); color: #fff; border-color: transparent; }
.ls-portfolio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--ls-s-2); }
.ls-portfolio__item { position: relative; display: block; border-radius: var(--ls-r-md); overflow: hidden; aspect-ratio: 4 / 3; background: var(--ls-surface-2); }
.ls-portfolio__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.ls-portfolio__item:hover img { transform: scale(1.05); }
.ls-portfolio__cap {
    position: absolute; left: var(--ls-s-2); bottom: var(--ls-s-2);
    padding: 3px 8px; border-radius: 6px; font-size: 11px; font-weight: 600;
    color: #fff; background: rgba(15, 23, 42, .72);
}

/* ============================ 5. ABOUT ============================ */
.ls-about { margin-bottom: var(--ls-s-6); }
.ls-about__body { font-size: var(--ls-fz-body); line-height: 1.65; color: var(--ls-ink-2); }
.ls-about__body.is-clamped { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.ls-about__more { background: none; border: none; padding: var(--ls-s-1) 0 0; color: var(--ls-primary); font-size: 13.5px; font-weight: 700; cursor: pointer; }
.ls-about__badges { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--ls-s-3); margin-top: var(--ls-s-4); }
.ls-about__badge { display: flex; align-items: center; gap: var(--ls-s-2); font-size: 13px; font-weight: 600; color: var(--ls-ink); }
.ls-about__badgeico { width: 30px; height: 30px; border-radius: 9px; background: #eef2ff; background: color-mix(in srgb, var(--ls-primary) 12%, #fff); color: var(--ls-primary); display: flex; align-items: center; justify-content: center; }
.ls-about__badgeico .ls-ico { width: 16px; height: 16px; }

/* ============================ 6. SERVICES ============================ */
.ls-services { margin-bottom: var(--ls-s-6); }
.ls-services__scroll { display: flex; gap: var(--ls-s-3); overflow-x: auto; padding-bottom: var(--ls-s-2); scrollbar-width: none; }
.ls-services__scroll::-webkit-scrollbar { display: none; }
.ls-svc { flex: 0 0 auto; width: 160px; display: flex; flex-direction: column; align-items: flex-start; padding: var(--ls-s-4); border: 1px solid var(--ls-line); border-radius: var(--ls-r-lg); background: #fff; }
.ls-svc__ico { width: 38px; height: 38px; border-radius: 10px; background: #eef2ff; background: color-mix(in srgb, var(--ls-primary) 12%, #fff); color: var(--ls-primary); display: flex; align-items: center; justify-content: center; margin-bottom: var(--ls-s-2); }
.ls-svc__name { margin: 0 0 var(--ls-s-1); font-size: var(--ls-fz-body); font-weight: 700; color: var(--ls-ink); line-height: 1.3; }
.ls-svc__dur { margin: 0 0 var(--ls-s-2); font-size: 12px; font-weight: 500; color: var(--ls-muted); }
.ls-svc__price { margin-bottom: var(--ls-s-3); font-size: 17px; font-weight: 800; color: var(--ls-ink); }
.ls-svc__book { margin-top: auto; width: 100%; padding: 9px 10px; border-radius: 10px; border: 1px solid var(--ls-primary); background: #fff; color: var(--ls-primary); font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s ease, color .2s ease; }
.ls-svc__book:hover { background: var(--ls-primary); color: #fff; }

/* ============================ 7. BUSINESS DETAILS ============================ */
.ls-biz { margin-bottom: var(--ls-s-6); }
.ls-biz__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--ls-s-4); }
.ls-biz__item { display: flex; align-items: center; gap: var(--ls-s-2); }
.ls-biz__ico { width: 38px; height: 38px; flex: 0 0 auto; border-radius: 10px; background: #eef2ff; background: color-mix(in srgb, var(--ls-primary) 10%, #fff); color: var(--ls-primary); display: flex; align-items: center; justify-content: center; }
.ls-biz__ico .ls-ico { width: 18px; height: 18px; }
.ls-biz__text { display: flex; flex-direction: column; min-width: 0; }
.ls-biz__lbl { font-size: 12px; font-weight: 500; color: var(--ls-muted); }
.ls-biz__val { font-size: var(--ls-fz-body); font-weight: 700; color: var(--ls-ink); line-height: 1.25; }

/* ============================ 8. REVIEWS ============================ */
.ls-reviews { margin-bottom: var(--ls-s-6); }
.ls-reviews__count { font-size: 14px; color: var(--ls-muted); font-weight: 600; }
.ls-reviews__write { padding: 8px 14px; border-radius: 10px; border: 1px solid var(--ls-primary); background: var(--ls-primary); color: #fff; font-size: 13px; font-weight: 700; cursor: pointer; text-decoration: none; }
.ls-rating { display: flex; gap: var(--ls-s-5); align-items: center; padding: var(--ls-s-4) 0; }
.ls-rating__overall { text-align: center; padding-right: var(--ls-s-5); border-right: 1px solid var(--ls-line); }
.ls-rating__big { font-size: 42px; font-weight: 800; color: var(--ls-ink); line-height: 1; }
.ls-rating__stars { color: var(--ls-star); font-size: 14px; margin: var(--ls-s-1) 0; }
.ls-rating__total { font-size: 12px; color: var(--ls-muted); }
.ls-rating__bars { flex: 1; }
.ls-rating__row { display: flex; align-items: center; gap: var(--ls-s-2); margin-bottom: 4px; }
.ls-rating__label { width: 12px; font-size: 12px; color: var(--ls-muted); }
.ls-rating__track { flex: 1; height: 8px; border-radius: 6px; background: var(--ls-line); overflow: hidden; }
.ls-rating__fill { display: block; height: 100%; background: var(--ls-star); border-radius: 6px; }
.ls-rating__pct { width: 34px; text-align: right; font-size: 11px; color: var(--ls-muted); }
.ls-reviews__list { margin-top: var(--ls-s-4); }
.ls-review { padding: var(--ls-s-4) 0; border-bottom: 1px solid var(--ls-line); }
.ls-review__top { display: flex; align-items: center; gap: var(--ls-s-2); }
.ls-review__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.ls-review__meta { display: flex; flex-direction: column; flex: 1; }
.ls-review__name { font-size: 14px; font-weight: 700; color: var(--ls-ink); }
.ls-review__date { font-size: 12px; color: var(--ls-muted); }
.ls-review__stars { color: var(--ls-star); font-size: 13px; }
.ls-review__text { margin: var(--ls-s-2) 0 0; font-size: 13.5px; line-height: 1.6; color: var(--ls-ink-2); }
.ls-reviews__more { width: 100%; margin-top: var(--ls-s-4); padding: 12px; border-radius: var(--ls-r-md); border: 1px solid var(--ls-line); background: #fff; font-weight: 700; color: var(--ls-primary); cursor: pointer; }
.ls-empty { text-align: center; padding: var(--ls-s-5) 0; color: var(--ls-muted); }
.ls-empty__ico { font-size: 34px; }

/* ============================ 9. AVAILABILITY ============================ */
.ls-avail { margin-bottom: var(--ls-s-6); padding: var(--ls-s-5); border: 1px solid var(--ls-line); border-radius: var(--ls-r-lg); background: #fff; }
.ls-avail__days { display: flex; gap: var(--ls-s-2); overflow-x: auto; margin-bottom: var(--ls-s-4); scrollbar-width: none; }
.ls-avail__days::-webkit-scrollbar { display: none; }
.ls-avail__day { flex: 0 0 auto; min-width: 68px; text-align: center; padding: 10px 12px; border-radius: var(--ls-r-md); border: 1px solid var(--ls-line); background: #fff; cursor: pointer; }
.ls-avail__day.is-active { border-color: var(--ls-primary); background: #f3f0ff; background: color-mix(in srgb, var(--ls-primary) 8%, #fff); }
.ls-avail__dlabel { display: block; font-size: 12px; font-weight: 700; color: var(--ls-ink); }
.ls-avail__ddate { display: block; font-size: 11px; font-weight: 500; color: var(--ls-muted); margin-top: 2px; }
.ls-avail__cta { display: flex; align-items: center; justify-content: center; gap: var(--ls-s-2); width: 100%; padding: 14px; border: none; border-radius: var(--ls-r-md); background: var(--ls-primary); color: #fff; font-size: 15px; font-weight: 700; cursor: pointer; }

/* ============================ 10. SIMILAR ============================ */
.ls-similar { margin-bottom: var(--ls-s-6); }
.ls-similar__card { display: block; border-radius: var(--ls-r-md); overflow: hidden; border: 1px solid var(--ls-line); background: #fff; text-decoration: none; }
.ls-similar__card img { width: 100%; height: 130px; object-fit: cover; display: block; }
.ls-similar__info { padding: var(--ls-s-3); }
.ls-similar__info h4 { margin: 0 0 var(--ls-s-1); font-size: 14px; font-weight: 700; color: var(--ls-ink); }
.ls-similar__meta { display: flex; gap: var(--ls-s-2); font-size: 12px; color: var(--ls-muted); }

/* misc preserved bits */
.ls-coupons, .ls-leadcredits { margin-bottom: var(--ls-s-6); }
.ls-status { padding: 10px; border-radius: var(--ls-r-sm); margin-bottom: var(--ls-s-3); font-size: 13px; font-weight: 600; }
.ls-status--ok { background: #ecfdf5; color: #10b981; }
.ls-status--err { background: #fef2f2; color: #ef4444; }
.ls-enquiry-submit, .ls-review-submit { border: none; cursor: pointer; width: 100%; margin-top: 15px; }
.ls-enquiry-submit { background: #10b981; }

/* ============================ MOBILE STICKY BAR ============================ */
.ls-stickybar { display: none; }

@media (max-width: 767px) {
    .ls-actions { display: none; }
    .ls-content { padding-bottom: 96px; }
    .ls-stickybar {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
        display: flex; gap: var(--ls-s-2);
        padding: var(--ls-s-3) var(--ls-s-4);
        padding-bottom: calc(var(--ls-s-3) + env(safe-area-inset-bottom, 0px));
        background: #fff; box-shadow: var(--ls-shadow-up);
    }
    .ls-stickybar__btn {
        flex: 1 1 0; min-width: 0;
        display: inline-flex; align-items: center; justify-content: center; gap: 6px;
        padding: 12px 8px; border-radius: var(--ls-r-sm); border: 1px solid transparent;
        font-size: 13px; font-weight: 700; text-decoration: none; cursor: pointer;
    }
    .ls-stickybar__btn span { white-space: nowrap; }
    .ls-stickybar__btn--call { background: var(--ls-call); color: #fff; }
    .ls-stickybar__btn--wa   { background: var(--ls-wa); color: #fff; }
    .ls-stickybar__btn--book { background: var(--ls-primary); color: #fff; }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 400px) {
    .ls-stats { grid-template-columns: repeat(2, 1fr); }
    .ls-stats__cell:nth-child(2) { border-right: none; }
    .ls-stats__cell:nth-child(1), .ls-stats__cell:nth-child(2) { border-bottom: 1px solid var(--ls-line); }
    .ls-biz__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .ls-hero__media { height: 380px; }
    .ls-portfolio__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .ls-content { max-width: 860px; margin-left: auto; margin-right: auto; padding: var(--ls-s-6) var(--ls-s-6) var(--ls-s-6); }
    .ls-hero__media { height: 440px; }
    .ls-portfolio__grid { grid-template-columns: repeat(4, 1fr); }
    .ls-about__badges { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1280px) {
    .ls-content { max-width: 960px; }
    .ls-portfolio__grid { grid-template-columns: repeat(5, 1fr); }
}


/* ============================================================================
   SINGLE LISTING — DESKTOP / TABLET PIXEL TUNING (Phase 2)
   ============================================================================ */

/* ---- Hero becomes a contained, rounded card on large screens ---- */
@media (min-width: 1024px) {
    .ls-hero { max-width: 860px; margin: 24px auto 0; }
    .ls-hero__media { height: 360px; border-radius: var(--ls-r-lg) var(--ls-r-lg) 0 0; }
    .ls-content { margin-top: -28px; border-radius: 0 0 var(--ls-r-lg) var(--ls-r-lg); box-shadow: var(--ls-shadow-sm); }
}
@media (min-width: 1280px) {
    .ls-hero { max-width: 960px; }
}

/* ---- 2-column header: identity (left) + trust stats (right); actions full row ---- */
@media (min-width: 768px) {
    .ls-top {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: "id stats" "act act";
        column-gap: var(--ls-s-6);
        align-items: start;
    }
    .ls-idcard { grid-area: id; border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
    .ls-stats {
        grid-area: stats; align-self: start;
        display: flex; gap: var(--ls-s-2);
        border: none; background: transparent; margin-bottom: 0;
    }
    .ls-stats__cell {
        border: 1px solid var(--ls-line); border-radius: var(--ls-r-md);
        min-width: 88px; padding: 12px 10px;
    }
    .ls-actions {
        grid-area: act; margin: var(--ls-s-5) 0 0;
        padding-top: var(--ls-s-5); border-top: 1px solid var(--ls-line);
    }
    .ls-actions__btn { flex-direction: row; gap: var(--ls-s-2); padding: 13px 12px; font-size: 14px; }
    .ls-actions__btn .ls-ico { width: 18px; height: 18px; }
}

/* ---- Services: 3-up grid on desktop (no horizontal scroll) ---- */
@media (min-width: 768px) {
    .ls-services__scroll { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--ls-s-3); overflow: visible; }
    .ls-svc { width: auto; }
}

/* ---- Business details: single wide row on desktop ---- */
@media (min-width: 1024px) {
    .ls-biz__grid { grid-template-columns: repeat(3, 1fr); column-gap: var(--ls-s-5); row-gap: var(--ls-s-4); }
    .ls-similar__card img { height: 150px; }
}


/* ============================================================================
   SINGLE LISTING — BADGE SYSTEM STRIP (injected by class-lpcf-badges)
   Clean placement of ticks + badge pills inside our identity card.
   ============================================================================ */
.ls-idcard__name .lpcf-tick,
.ls-idcard__name .lpcf-tick-js { display: inline-flex; align-items: center; vertical-align: middle; margin-left: 5px; }
.ls-idcard__name .lpcf-tick svg,
.ls-idcard__name .lpcf-tick-js svg { width: 20px; height: 20px; }

.ls-idcard .lpcf-badge-icon { margin: 8px 6px 0 0 !important; vertical-align: middle; }
.ls-idcard .lpcf-secondary-badges-details { margin-top: 6px !important; }
.ls-idcard .lpcf-secondary-badges-details summary { padding: 2px 0 !important; font-size: 12.5px !important; }


/* ---- Responsive action labels: short on mobile, full on desktop ---- */
.ls-lblfull { display: none; }
@media (min-width: 768px) {
    .ls-lblshort { display: none; }
    .ls-lblfull { display: inline; }
}

/* ---- FAQ: 2-column accordion on desktop (reference) ---- */
@media (min-width: 768px) {
    .ail-faq-section { display: grid; grid-template-columns: 1fr 1fr; column-gap: var(--ls-s-3); align-items: start; }
    .ail-faq-section .ail-section-subtitle { grid-column: 1 / -1; }
}


/* ============================================================================
   SINGLE LISTING — HEADER COMPACTING + WIDTH OVERRIDE (screenshot pass)
   ============================================================================ */

/* Beat the legacy .ail-single-content max-width so our column matches reference */
@media (min-width: 1024px) {
    .ls-page .ls-content { max-width: 900px; }
}
@media (min-width: 1280px) {
    .ls-page .ls-content { max-width: 980px; }
}
.ls-page .ls-hero { max-width: 900px; }
@media (min-width: 1280px) {
    .ls-page .ls-hero { max-width: 980px; }
}

/* Hide the plugin's "Show more badges..." toggle on the detail header (clutter;
   primary plan badges like Verified / Quick Responder still show). */
.ls-idcard .lpcf-secondary-badges-details { display: none !important; }

/* Keep the injected badge pills tight and inline under the name */
.ls-idcard .lpcf-badge-icon { margin: 6px 6px 2px 0 !important; }
.ls-idcard__partner { margin-top: 2px; }

/* Tighten identity card vertical rhythm to match the reference */
.ls-idcard__rating,
.ls-idcard__sub,
.ls-idcard__loc { margin-bottom: 3px; }
.ls-idcard__status { margin-top: 4px; }


/* ============================================================================
   SINGLE LISTING — EXTRA SECTIONS RESTYLED (Working Hours / Team / Additional
   Information / Social Links) — clean card look, no inline styles
   ============================================================================ */

/* ---- Working Hours ---- */
.ls-hours-sec { margin-bottom: var(--ls-s-6); }
.ls-hours {
    border: 1px solid var(--ls-line);
    border-radius: var(--ls-r-lg);
    overflow: hidden;
    background: #fff;
}
.ls-hours__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    border-bottom: 1px solid var(--ls-line);
    font-size: 13.5px;
}
.ls-hours__row:last-child { border-bottom: none; }
.ls-hours__day { font-weight: 600; color: var(--ls-ink-2); }
.ls-hours__time { color: var(--ls-muted); font-weight: 500; }
.ls-hours__row.is-closed .ls-hours__time { color: #dc2626; font-weight: 600; }
.ls-hours__row.is-today {
    background: #f3f0ff;
    background: color-mix(in srgb, var(--ls-primary) 6%, #fff);
}
.ls-hours__row.is-today .ls-hours__day { color: var(--ls-primary); }
.ls-hours__row.is-today .ls-hours__day::after { content: " · Today"; font-weight: 700; font-size: 11px; }

/* ---- Team ---- */
.ls-team-sec { margin-bottom: var(--ls-s-6); }
.ls-team { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--ls-s-3); }
.ls-team__card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: 6px; padding: 16px 12px;
    border: 1px solid var(--ls-line); border-radius: var(--ls-r-lg); background: #fff;
}
.ls-team__avatar {
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px; color: var(--ls-primary);
    background: #eef2ff; background: color-mix(in srgb, var(--ls-primary) 12%, #fff);
}
.ls-team__name { font-weight: 700; font-size: 14px; color: var(--ls-ink); }
.ls-team__role { font-size: 12px; color: var(--ls-muted); font-weight: 500; }

/* ---- Additional Information ---- */
.ls-addinfo-sec { margin-bottom: var(--ls-s-6); }
.ls-addinfo { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--ls-s-3); }
.ls-addinfo__item {
    display: flex; flex-direction: column; gap: 3px;
    padding: 12px 14px; border: 1px solid var(--ls-line); border-radius: var(--ls-r-md); background: #fff;
}
.ls-addinfo__lbl { font-size: 12px; font-weight: 600; color: var(--ls-muted); }
.ls-addinfo__val { font-size: 14px; font-weight: 600; color: var(--ls-ink); }

/* ---- Social Links ---- */
.ls-social-sec { margin-bottom: var(--ls-s-6); }
.ls-social { display: flex; flex-wrap: wrap; gap: var(--ls-s-2); }
.ls-social__link {
    display: inline-flex; align-items: center;
    padding: 8px 16px; border-radius: 999px;
    background: var(--ls-surface-2); border: 1px solid var(--ls-line);
    color: var(--ls-ink-2); font-size: 13px; font-weight: 600; text-decoration: none;
    transition: all 0.2s ease;
}
.ls-social__link:hover { border-color: var(--ls-primary); color: var(--ls-primary); }
.ls-social__link--facebook:hover  { border-color: #1877f2; color: #1877f2; }
.ls-social__link--instagram:hover { border-color: #e1306c; color: #e1306c; }
.ls-social__link--linkedin:hover  { border-color: #0a66c2; color: #0a66c2; }
.ls-social__link--youtube:hover   { border-color: #ff0000; color: #ff0000; }
.ls-social__link--whatsapp:hover  { border-color: #25d366; color: #128c3e; }


/* ============================================================================
   SINGLE LISTING — CENTERED COLUMN LAYOUT (definitive width fix)
   The whole listing is one centered column on the light-grey page background.
   Hero + content fill it; card look (rounded) from tablet up.
   ============================================================================ */
.ls-page {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.ls-page .ls-hero,
.ls-page .ls-content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 768px) {
    .ls-page { padding-top: 20px; }
    .ls-hero__media { border-radius: var(--ls-r-lg) var(--ls-r-lg) 0 0; }
    .ls-content { margin-top: -28px; border-radius: 0 0 var(--ls-r-lg) var(--ls-r-lg); box-shadow: var(--ls-shadow-sm); }
}


/* ============================================================================
   SINGLE LISTING — FINAL WIDTH LOCK
   .ls-page is confirmed a direct child of the full-width #page.site wrapper.
   This id-level + !important rule overrides every earlier width rule (and any
   external one) to center the column cleanly. No transform/margin hacks.
   ============================================================================ */
body.single-listing #page .ls-page {
    max-width: 980px !important;
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    left: auto !important;
    transform: none !important;
    float: none !important;
}
@media (min-width: 768px) {
    body.single-listing #page .ls-page { padding-top: 20px !important; }
}
body.single-listing #page .ls-page .ls-hero,
body.single-listing #page .ls-page .ls-content {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: auto !important;
    transform: none !important;
    box-sizing: border-box !important;
}
