/**
 * FFLP Styles
 *
 * Brand system stylesheet for Flavor Flavor Listing Pages.
 * WhatsUpSummerville.com — custom single listing pages.
 *
 * +15% font increase applied across all text elements.
 *
 * @package FlavorFlavorListingPages
 * @since   1.1.0
 */

/* ═══════════════════════════════════════════════
   CSS VARIABLES — BRAND SYSTEM
   ═══════════════════════════════════════════════ */

:root {
    /* Brand Colors */
    --fflp-primary:        #1e3a5f;
    --fflp-primary-light:  #2a5080;
    --fflp-primary-dark:   #152b47;
    --fflp-accent:         #f39c12;
    --fflp-accent-light:   #f7b731;
    --fflp-accent-dark:    #d68910;
    --fflp-success:        #27ae60;
    --fflp-danger:         #e74c3c;
    --fflp-warning:        #f39c12;

    /* Neutrals */
    --fflp-white:          #ffffff;
    --fflp-off-white:      #f8f9fa;
    --fflp-light-gray:     #e9ecef;
    --fflp-mid-gray:       #6c757d;
    --fflp-dark-gray:      #343a40;
    --fflp-black:          #212529;

    /* Typography */
    --fflp-font-heading:   'Montserrat', sans-serif;
    --fflp-font-body:      'Open Sans', sans-serif;

    /* Spacing */
    --fflp-gap-xs:         4px;
    --fflp-gap-sm:         8px;
    --fflp-gap-md:         16px;
    --fflp-gap-lg:         24px;
    --fflp-gap-xl:         40px;
    --fflp-gap-2xl:        60px;

    /* Radius */
    --fflp-radius-sm:      4px;
    --fflp-radius-md:      8px;
    --fflp-radius-lg:      12px;
    --fflp-radius-xl:      20px;
    --fflp-radius-full:    9999px;

    /* Shadows */
    --fflp-shadow-sm:      0 1px 3px rgba(0, 0, 0, 0.08);
    --fflp-shadow-md:      0 4px 12px rgba(0, 0, 0, 0.1);
    --fflp-shadow-lg:      0 8px 30px rgba(0, 0, 0, 0.12);
    --fflp-shadow-hover:   0 8px 25px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --fflp-transition:     all 0.25s ease;

    /* Layout */
    --fflp-max-width:      1200px;
    --fflp-sidebar-width:  360px;
}


/* ═══════════════════════════════════════════════
   PAGE BACKGROUND — KILL ALL THEME BLEED
   ═══════════════════════════════════════════════ */

body.single-at_biz_dir {
    background-color: var(--fflp-white) !important;
}

body.single-at_biz_dir .site-content,
body.single-at_biz_dir .entry-content,
body.single-at_biz_dir main,
body.single-at_biz_dir #content,
body.single-at_biz_dir .content-area,
body.single-at_biz_dir article {
    background-color: var(--fflp-white) !important;
    color: var(--fflp-black) !important;
}

.fflp-page-wrapper {
    background-color: var(--fflp-white) !important;
}


/* ═══════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════ */

.fflp-listing *,
.fflp-listing *::before,
.fflp-listing *::after {
    box-sizing: border-box;
}

.fflp-listing {
    background-color: var(--fflp-white) !important;
}

/* Kill ANY pseudo-element backgrounds on listing and hero */
.fflp-listing::before,
.fflp-listing::after,
.fflp-hero::before,
.fflp-hero::after,
.fflp-hero-overlay::before,
.fflp-hero-overlay::after,
.fflp-hero-content::before,
.fflp-hero-content::after {
    display: none !important;
    content: none !important;
}

.fflp-page-wrapper {
    max-width: var(--fflp-max-width);
    margin: 0 auto;
    padding: 0 var(--fflp-gap-md);
    font-family: var(--fflp-font-body);
    font-size: 23px;                                /* +15% — was 20px */
    color: var(--fflp-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-color: var(--fflp-white);
}


/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */

.fflp-hero {
    position: relative;
    width: 100%;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-color: var(--fflp-primary);
    border-radius: var(--fflp-radius-lg);
    overflow: hidden;
    margin-bottom: var(--fflp-gap-xl);
    border: none !important;
    box-shadow: none !important;
}

.fflp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: var(--fflp-gap-xl);
}

.fflp-hero-content {
    width: 100%;
}

.fflp-business-name {
    font-family: var(--fflp-font-heading);
    font-size: 3.16rem;                             /* +15% — was 2.75rem */
    font-weight: 800;
    color: var(--fflp-white);
    margin: 0 0 var(--fflp-gap-xs) 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.fflp-tagline {
    font-family: var(--fflp-font-body);
    font-size: 1.58rem;                             /* +15% — was 1.375rem */
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}


/* ═══════════════════════════════════════════════
   BADGES
   ═══════════════════════════════════════════════ */

.fflp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--fflp-gap-sm);
    margin-bottom: var(--fflp-gap-md);
}

.fflp-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: var(--fflp-radius-full);
    font-family: var(--fflp-font-heading);
    font-size: 1.01rem;                             /* +15% — was 0.88rem */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fflp-badge-verified {
    background: var(--fflp-success);
    color: var(--fflp-white);
}

.fflp-badge-open {
    background: var(--fflp-success);
    color: var(--fflp-white);
}

.fflp-badge-closed {
    background: var(--fflp-danger);
    color: var(--fflp-white);
}

.fflp-badge-tier {
    background: rgba(255, 255, 255, 0.2);
    color: var(--fflp-white);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* ── Badge readability on bright hero images ── */
.fflp-hero .fflp-badge {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.fflp-hero .fflp-badge-category,
.fflp-hero .fflp-badge-closed {
    background-color: rgba(0, 0, 0, 0.55);
}

/* ═══════════════════════════════════════════════
   CONTENT LAYOUT
   ═══════════════════════════════════════════════ */

.fflp-content-wrap {
    display: grid;
    grid-template-columns: 1fr var(--fflp-sidebar-width);
    gap: var(--fflp-gap-xl);
    align-items: start;
    background-color: var(--fflp-white) !important;
    border-top: none !important;
    margin-top: 0 !important;
}

.fflp-main {
    min-width: 0;
    background-color: var(--fflp-white) !important;
}

.fflp-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--fflp-gap-lg);
    position: sticky;
    top: var(--fflp-gap-lg);
    background-color: transparent;
}


/* ═══════════════════════════════════════════════
   SECTIONS — GENERAL
   ═══════════════════════════════════════════════ */

.fflp-section {
    margin-bottom: var(--fflp-gap-xl);
    background-color: var(--fflp-white);
}

.fflp-section-title {
    font-family: var(--fflp-font-heading);
    font-size: 1.9rem;                              /* +15% — was 1.65rem */
    font-weight: 700;
    color: var(--fflp-primary);
    margin: 0 0 var(--fflp-gap-md) 0;
    padding-bottom: var(--fflp-gap-sm);
    border-bottom: 3px solid var(--fflp-accent);
    display: inline-block;
}


/* ═══════════════════════════════════════════════
   DESCRIPTION
   ═══════════════════════════════════════════════ */

.fflp-description {
    font-size: 1.4rem;                              /* +15% — was 1.21rem */
    line-height: 1.8;
    color: var(--fflp-dark-gray);
}

.fflp-description p {
    margin: 0 0 var(--fflp-gap-md) 0;
}

.fflp-description p:last-child {
    margin-bottom: 0;
}


/* ═══════════════════════════════════════════════
   BUSINESS HOURS
   ═══════════════════════════════════════════════ */

.fflp-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fflp-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--fflp-off-white);
    border-radius: var(--fflp-radius-sm);
    transition: var(--fflp-transition);
}

.fflp-hours-row:hover {
    background: var(--fflp-light-gray);
}

.fflp-hours-today {
    background: rgba(39, 174, 96, 0.08);
    border-left: 4px solid var(--fflp-success);
    font-weight: 600;
}

.fflp-hours-day {
    font-family: var(--fflp-font-heading);
    font-size: 1.265rem;                            /* +15% — was 1.1rem */
    font-weight: 600;
    color: var(--fflp-dark-gray);
    min-width: 110px;
}

.fflp-hours-time {
    font-size: 1.265rem;                            /* +15% — was 1.1rem */
    color: var(--fflp-mid-gray);
}

.fflp-closed {
    color: var(--fflp-danger);
    font-weight: 600;
    font-size: 1.21rem;                             /* +15% — was 1.05rem */
}


/* ═══════════════════════════════════════════════
   SERVICES — PILLS
   ═══════════════════════════════════════════════ */

.fflp-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--fflp-gap-sm);
}

.fflp-service-pill {
    display: inline-block;
    padding: 6px 16px;
    background: var(--fflp-off-white);
    border: 1px solid var(--fflp-light-gray);
    border-radius: var(--fflp-radius-full);
    font-family: var(--fflp-font-heading);
    font-size: 1.15rem;                             /* +15% — was 1rem */
    font-weight: 600;
    color: var(--fflp-primary);
    transition: var(--fflp-transition);
}

.fflp-service-pill:hover {
    background: var(--fflp-primary);
    color: var(--fflp-white);
    border-color: var(--fflp-primary);
    transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════
   FAQ — ACCORDION
   ═══════════════════════════════════════════════ */

.fflp-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--fflp-gap-sm);
}

.fflp-faq-item {
    background: var(--fflp-off-white);
    border: 1px solid var(--fflp-light-gray);
    border-radius: var(--fflp-radius-md);
    overflow: hidden;
    transition: var(--fflp-transition);
}

.fflp-faq-item[open] {
    background: var(--fflp-white);
    border-color: var(--fflp-primary);
    box-shadow: var(--fflp-shadow-sm);
}

.fflp-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    font-family: var(--fflp-font-heading);
    font-size: 1.32rem;                             /* +15% — was 1.15rem */
    font-weight: 600;
    color: var(--fflp-dark-gray);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.fflp-faq-question::-webkit-details-marker {
    display: none;
}

.fflp-faq-toggle {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.25s ease;
}

.fflp-faq-toggle::before,
.fflp-faq-toggle::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    background: var(--fflp-primary);
    border-radius: 2px;
}

.fflp-faq-toggle::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fflp-faq-toggle::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.fflp-faq-item[open] .fflp-faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.fflp-faq-answer {
    padding: 0 18px 14px 18px;
    font-size: 1.265rem;                            /* +15% — was 1.1rem */
    line-height: 1.7;
    color: var(--fflp-mid-gray);
}

.fflp-faq-answer p {
    margin: 0 0 var(--fflp-gap-sm) 0;
}

.fflp-faq-answer p:last-child {
    margin-bottom: 0;
}


/* ═══════════════════════════════════════════════
   MENU SECTION
   ═══════════════════════════════════════════════ */

.fflp-menu-pdf-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--fflp-gap-md);
}

.fflp-menu-embed {
    border-radius: var(--fflp-radius-md);
    overflow: hidden;
    box-shadow: var(--fflp-shadow-md);
}

.fflp-menu-iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.fflp-menu-actions {
    display: flex;
    gap: var(--fflp-gap-md);
    flex-wrap: wrap;
}

.fflp-menu-link-wrap {
    text-align: center;
}


/* ═══════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════ */

.fflp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--fflp-gap-md);
}

.fflp-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--fflp-radius-md);
    aspect-ratio: 4 / 3;
    box-shadow: var(--fflp-shadow-sm);
    transition: var(--fflp-transition);
    display: block;
}

.fflp-gallery-item:hover {
    box-shadow: var(--fflp-shadow-hover);
    transform: translateY(-3px);
}

.fflp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fflp-gallery-item:hover img {
    transform: scale(1.05);
}


/* ═══════════════════════════════════════════════
   VIDEO
   ═══════════════════════════════════════════════ */

.fflp-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--fflp-radius-md);
    box-shadow: var(--fflp-shadow-md);
}

.fflp-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--fflp-radius-md);
}


/* ═══════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════ */

.fflp-reviews-summary {
    display: flex;
    align-items: center;
    gap: var(--fflp-gap-lg);
    padding: var(--fflp-gap-lg);
    background: var(--fflp-off-white);
    border-radius: var(--fflp-radius-lg);
    margin-bottom: var(--fflp-gap-lg);
}

.fflp-reviews-rating-large {
    font-family: var(--fflp-font-heading);
    font-size: 3.45rem;                             /* +15% — was 3rem */
    font-weight: 800;
    color: var(--fflp-primary);
    line-height: 1;
}

.fflp-reviews-stars {
    margin-bottom: var(--fflp-gap-xs);
}

.fflp-stars {
    font-size: 1.5rem;                              /* +15% — was 1.3rem */
    letter-spacing: 2px;
}

.fflp-star-full {
    color: #f39c12;
}

.fflp-star-half {
    color: #f39c12;
    opacity: 0.6;
}

.fflp-star-empty {
    color: var(--fflp-light-gray);
}

.fflp-reviews-count {
    font-size: 1.265rem;                            /* +15% — was 1.1rem */
    color: var(--fflp-mid-gray);
}

.fflp-reviews-list {
    display: flex;
    flex-direction: column;
    gap: var(--fflp-gap-md);
}

.fflp-review-card {
    padding: var(--fflp-gap-lg);
    background: var(--fflp-off-white);
    border-radius: var(--fflp-radius-md);
    border: 1px solid var(--fflp-light-gray);
}

.fflp-review-author {
    display: flex;
    align-items: center;
    gap: var(--fflp-gap-sm);
    margin-bottom: var(--fflp-gap-sm);
}

.fflp-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.fflp-review-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fflp-primary);
    color: var(--fflp-white);
    font-family: var(--fflp-font-heading);
    font-weight: 700;
    font-size: 1.15rem;                             /* +15% — was 1rem */
}

.fflp-review-author-name {
    font-family: var(--fflp-font-heading);
    font-weight: 600;
    font-size: 1.15rem;                             /* +15% — was 1rem */
    color: var(--fflp-dark-gray);
}

.fflp-review-time {
    font-size: 1.035rem;                            /* +15% — was 0.9rem */
    color: var(--fflp-mid-gray);
    margin-left: auto;
}

.fflp-review-stars {
    margin-bottom: var(--fflp-gap-sm);
}

.fflp-review-text {
    font-size: 1.265rem;                            /* +15% — was 1.1rem */
    line-height: 1.6;
    color: var(--fflp-dark-gray);
}

.fflp-reviews-attribution {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--fflp-gap-lg);
    padding-top: var(--fflp-gap-md);
    border-top: 1px solid var(--fflp-light-gray);
    font-size: 1.035rem;                            /* +15% — was 0.9rem */
}

.fflp-reviews-google-link {
    color: var(--fflp-primary);
    text-decoration: none;
    font-weight: 600;
}

.fflp-reviews-google-link:hover {
    color: var(--fflp-accent);
}

.fflp-reviews-powered {
    color: var(--fflp-mid-gray);
    font-size: 0.98rem;                             /* +15% — was 0.85rem */
}


/* ═══════════════════════════════════════════════
   COUPON
   ═══════════════════════════════════════════════ */

.fflp-coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--fflp-gap-md);
}

.fflp-coupon-card {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border: 2px dashed var(--fflp-accent);
    border-radius: var(--fflp-radius-lg);
    padding: var(--fflp-gap-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fflp-coupon-card::before,
.fflp-coupon-card::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--fflp-white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.fflp-coupon-card::before {
    left: -15px;
}

.fflp-coupon-card::after {
    right: -15px;
}

.fflp-coupon-icon {
    font-size: 3.16rem;                             /* +15% — was 2.75rem */
    margin-bottom: var(--fflp-gap-sm);
}

.fflp-coupon-card .fflp-section-title {
    border-bottom: none;
    padding-bottom: 0;
    display: block;
}

.fflp-coupon-title {
    font-family: var(--fflp-font-heading);
    font-size: 1.5rem;                              /* +15% — was 1.3rem */
    font-weight: 700;
    color: var(--fflp-primary);
    margin-bottom: var(--fflp-gap-sm);
}

.fflp-coupon-text {
    font-size: 1.45rem;                             /* +15% — was 1.265rem */
    color: var(--fflp-dark-gray);
    line-height: 1.6;
}

.fflp-coupon-text p {
    margin: 0;
}

.fflp-coupon-code-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--fflp-gap-sm);
    margin-top: var(--fflp-gap-md);
    padding: 10px 16px;
    background: var(--fflp-white);
    border-radius: var(--fflp-radius-md);
    border: 1px solid var(--fflp-light-gray);
}

.fflp-coupon-code-label {
    font-size: 1.035rem;                            /* +15% — was 0.9rem */
    color: var(--fflp-mid-gray);
    font-weight: 600;
}

.fflp-coupon-code {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;                              /* +15% — was 1.3rem */
    font-weight: 700;
    color: var(--fflp-primary);
    letter-spacing: 2px;
}

.fflp-coupon-copy {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.265rem;                            /* +15% — was 1.1rem */
    padding: 4px;
    transition: var(--fflp-transition);
}

.fflp-coupon-copy:hover {
    transform: scale(1.2);
}

.fflp-coupon-expiry {
    margin-top: var(--fflp-gap-sm);
    font-size: 1.035rem;                            /* +15% — was 0.9rem */
    color: var(--fflp-mid-gray);
    font-style: italic;
}


/* ═══════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════ */

.fflp-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--fflp-gap-md);
}

.fflp-form-row label {
    display: block;
    font-family: var(--fflp-font-heading);
    font-size: 1.15rem;                             /* +15% — was 1rem */
    font-weight: 600;
    color: var(--fflp-dark-gray);
    margin-bottom: var(--fflp-gap-xs);
}

.fflp-required {
    color: var(--fflp-danger);
}

.fflp-form-row input,
.fflp-form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--fflp-light-gray);
    border-radius: var(--fflp-radius-md);
    font-family: var(--fflp-font-body);
    font-size: 1.265rem;                            /* +15% — was 1.1rem */
    color: var(--fflp-black);
    transition: var(--fflp-transition);
    background: var(--fflp-white);
}

.fflp-form-row input:focus,
.fflp-form-row textarea:focus {
    outline: none;
    border-color: var(--fflp-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.fflp-form-status {
    font-size: 1.15rem;                             /* +15% — was 1rem */
    padding: 10px;
    border-radius: var(--fflp-radius-md);
    display: none;
}

.fflp-form-status.fflp-status-success {
    display: block;
    background: rgba(39, 174, 96, 0.1);
    color: var(--fflp-success);
    border: 1px solid var(--fflp-success);
}

.fflp-form-status.fflp-status-error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    color: var(--fflp-danger);
    border: 1px solid var(--fflp-danger);
}


/* ═══════════════════════════════════════════════
   SIDEBAR — CARDS
   ═══════════════════════════════════════════════ */

.fflp-card {
    background: var(--fflp-white);
    border-radius: var(--fflp-radius-lg);
    padding: var(--fflp-gap-lg);
    box-shadow: var(--fflp-shadow-md);
    transition: var(--fflp-transition);
}

.fflp-card:hover {
    box-shadow: var(--fflp-shadow-hover);
}

.fflp-card-title {
    font-family: var(--fflp-font-heading);
    font-size: 1.4rem;                              /* +15% — was 1.21rem */
    font-weight: 700;
    color: var(--fflp-primary);
    margin: 0 0 var(--fflp-gap-md) 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ═══════════════════════════════════════════════
   CONTACT CARD
   ═══════════════════════════════════════════════ */

.fflp-contact-row {
    display: flex;
    align-items: center;
    gap: var(--fflp-gap-sm);
    padding: 8px 0;
    border-bottom: 1px solid var(--fflp-light-gray);
}

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

.fflp-contact-row i {
    width: 20px;
    text-align: center;
    color: var(--fflp-primary);
    font-size: 1.265rem;                            /* +15% — was 1.1rem */
    flex-shrink: 0;
}

.fflp-contact-row a {
    color: var(--fflp-primary-light);
    text-decoration: none;
    font-size: 1.265rem;                            /* +15% — was 1.1rem */
    font-weight: 500;
    transition: var(--fflp-transition);
    word-break: break-all;
}

.fflp-contact-row a:hover {
    color: var(--fflp-accent);
}

.fflp-contact-row span {
    font-size: 1.265rem;                            /* +15% — was 1.1rem */
    font-weight: 500;
    color: var(--fflp-dark-gray);
}


/* ═══════════════════════════════════════════════
   ADDRESS CARD
   ═══════════════════════════════════════════════ */

.fflp-address-text {
    font-size: 1.33rem;                             /* +15% — was 1.155rem */
    line-height: 1.7;
    color: var(--fflp-dark-gray);
    margin-bottom: var(--fflp-gap-md);
}

.fflp-directions-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--fflp-gap-sm);
    width: 100%;
    padding: 10px 16px;
    background: var(--fflp-primary);
    color: var(--fflp-white);
    border-radius: var(--fflp-radius-md);
    text-decoration: none;
    font-family: var(--fflp-font-heading);
    font-size: 1.2rem;                              /* +15% — was 1.045rem */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--fflp-transition);
}

.fflp-directions-btn:hover {
    background: var(--fflp-primary-light);
    transform: translateY(-1px);
    box-shadow: var(--fflp-shadow-md);
    color: var(--fflp-white);
}

.fflp-map-embed {
    margin-top: var(--fflp-gap-md);
    height: 200px;
    background: var(--fflp-light-gray);
    border-radius: var(--fflp-radius-md);
    overflow: hidden;
}

.fflp-map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* ═══════════════════════════════════════════════
   SOCIAL LINKS
   ═══════════════════════════════════════════════ */

.fflp-social-links {
    display: flex;
    flex-direction: column;
    gap: var(--fflp-gap-sm);
}

.fflp-social-link {
    display: flex;
    align-items: center;
    gap: var(--fflp-gap-sm);
    padding: 10px 14px;
    border-radius: var(--fflp-radius-md);
    text-decoration: none;
    font-family: var(--fflp-font-heading);
    font-size: 1.2rem;                              /* +15% — was 1.045rem */
    font-weight: 600;
    transition: var(--fflp-transition);
    color: var(--fflp-white);
}

.fflp-social-link:hover {
    transform: translateY(-1px);
    box-shadow: var(--fflp-shadow-md);
    color: var(--fflp-white);
}

.fflp-social-link i {
    font-size: 1.52rem;                             /* +15% — was 1.32rem */
    width: 22px;
    text-align: center;
}

.fflp-social-facebook  { background: #1877f2; }
.fflp-social-instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.fflp-social-twitter   { background: #000000; }
.fflp-social-linkedin  { background: #0a66c2; }
.fflp-social-youtube   { background: #ff0000; }
.fflp-social-tiktok    { background: #000000; }

.fflp-social-facebook:hover  { background: #166fe5; }
.fflp-social-twitter:hover   { background: #333333; }
.fflp-social-linkedin:hover  { background: #004182; }
.fflp-social-youtube:hover   { background: #cc0000; }
.fflp-social-tiktok:hover    { background: #333333; }


/* ═══════════════════════════════════════════════
   CLAIM BANNER
   ═══════════════════════════════════════════════ */

.fflp-claim-banner {
    background: linear-gradient(135deg, var(--fflp-off-white) 0%, #e8f4fd 100%);
    border: 1px solid #bee5eb;
    text-align: center;
}

.fflp-claim-icon {
    font-size: 3.16rem;                             /* +15% — was 2.75rem */
    margin-bottom: var(--fflp-gap-sm);
}

.fflp-claim-title {
    font-family: var(--fflp-font-heading);
    font-size: 1.45rem;                             /* +15% — was 1.265rem */
    font-weight: 700;
    color: var(--fflp-primary);
    margin: 0 0 var(--fflp-gap-sm) 0;
}

.fflp-claim-text {
    font-size: 1.265rem;                            /* +15% — was 1.1rem */
    color: var(--fflp-mid-gray);
    margin: 0 0 var(--fflp-gap-md) 0;
    line-height: 1.5;
}


/* ═══════════════════════════════════════════════
   UPGRADE PROMPT
   ═══════════════════════════════════════════════ */

.fflp-upgrade-prompt {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cc 100%);
    border: 1px solid #ffd54f;
    text-align: center;
}

.fflp-upgrade-icon {
    font-size: 3.16rem;                             /* +15% — was 2.75rem */
    margin-bottom: var(--fflp-gap-sm);
}

.fflp-upgrade-title {
    font-family: var(--fflp-font-heading);
    font-size: 1.45rem;                             /* +15% — was 1.265rem */
    font-weight: 700;
    color: var(--fflp-primary);
    margin: 0 0 var(--fflp-gap-sm) 0;
}

.fflp-upgrade-text {
    font-size: 1.265rem;                            /* +15% — was 1.1rem */
    color: var(--fflp-mid-gray);
    margin: 0 0 var(--fflp-gap-md) 0;
    line-height: 1.5;
}


/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */

.fflp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--fflp-gap-sm);
    padding: 12px 24px;
    border-radius: var(--fflp-radius-md);
    font-family: var(--fflp-font-heading);
    font-size: 1.265rem;                            /* +15% — was 1.1rem */
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--fflp-transition);
}

.fflp-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--fflp-shadow-md);
}

.fflp-btn-claim {
    background: var(--fflp-primary);
    color: var(--fflp-white);
}

.fflp-btn-claim:hover {
    background: var(--fflp-primary-light);
    color: var(--fflp-white);
}

.fflp-btn-upgrade {
    background: var(--fflp-accent);
    color: var(--fflp-white);
}

.fflp-btn-upgrade:hover {
    background: var(--fflp-accent-dark);
    color: var(--fflp-white);
}

.fflp-btn-sm {
    padding: 8px 16px;
    font-size: 1.15rem;                             /* +15% — was 1rem */
}


/* ═══════════════════════════════════════════════
   LOCKED SECTION
   ═══════════════════════════════════════════════ */

.fflp-locked {
    position: relative;
    min-height: 120px;
    background: var(--fflp-off-white);
    border-radius: var(--fflp-radius-lg);
    overflow: hidden;
}

.fflp-locked-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--fflp-gap-lg);
    text-align: center;
    gap: var(--fflp-gap-sm);
}

.fflp-locked-overlay i {
    font-size: 2.02rem;                             /* +15% — was 1.76rem */
    color: var(--fflp-mid-gray);
}

.fflp-locked-overlay p {
    margin: 0;
    font-size: 1.265rem;                            /* +15% — was 1.1rem */
    color: var(--fflp-mid-gray);
}


/* ═══════════════════════════════════════════════
   TIER-SPECIFIC ACCENTS — section title underlines only
   ═══════════════════════════════════════════════ */

.fflp-tier-free .fflp-section-title {
    border-bottom-color: var(--fflp-light-gray);
}

.fflp-tier-community .fflp-section-title {
    border-bottom-color: #1e88e5;
}

.fflp-tier-enhanced .fflp-section-title {
    border-bottom-color: #43a047;
}

.fflp-tier-premium .fflp-section-title {
    border-bottom-color: var(--fflp-accent);
}

.fflp-tier-founding .fflp-section-title {
    border-bottom-color: #ffd700;
}

/* Ensure NO tier class ever adds background or bars */
.fflp-tier-free,
.fflp-tier-community,
.fflp-tier-enhanced,
.fflp-tier-premium,
.fflp-tier-founding {
    background-color: var(--fflp-white) !important;
    border: none !important;
}


/* ═══════════════════════════════════════════════
   LIGHTBOX OVERLAY
   ═══════════════════════════════════════════════ */

.fflp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--fflp-gap-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fflp-lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.fflp-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--fflp-radius-md);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.fflp-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: var(--fflp-white);
    font-size: 1.9rem;                              /* +15% — was 1.65rem */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--fflp-transition);
}

.fflp-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.fflp-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: var(--fflp-white);
    font-size: 1.64rem;                             /* +15% — was 1.43rem */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--fflp-transition);
}

.fflp-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.fflp-lightbox-prev {
    left: 20px;
}

.fflp-lightbox-next {
    right: 20px;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════ */

@media (max-width: 968px) {

    .fflp-content-wrap {
        grid-template-columns: 1fr;
    }

    .fflp-sidebar {
        position: static;
    }

    .fflp-hero {
        min-height: 300px;
        border-radius: 0;
        margin-left: calc(-1 * var(--fflp-gap-md));
        margin-right: calc(-1 * var(--fflp-gap-md));
        width: calc(100% + var(--fflp-gap-md) * 2);
    }

    .fflp-business-name {
        font-size: 2.53rem;                         /* +15% — was 2.2rem */
    }

    .fflp-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .fflp-reviews-summary {
        flex-direction: column;
        text-align: center;
    }

    .fflp-reviews-attribution {
        flex-direction: column;
        gap: var(--fflp-gap-sm);
        text-align: center;
    }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════ */

@media (max-width: 600px) {

    .fflp-page-wrapper {
        padding: 0 var(--fflp-gap-sm);
        font-size: 20px;                            /* +15% — was 17.5px */
    }

    .fflp-hero {
        min-height: 240px;
    }

    .fflp-hero-overlay {
        padding: var(--fflp-gap-md);
    }

    .fflp-business-name {
        font-size: 2.02rem;                         /* +15% — was 1.76rem */
    }

    .fflp-tagline {
        font-size: 1.39rem;                         /* +15% — was 1.21rem */
    }

    .fflp-badges {
        gap: 4px;
    }

    .fflp-badge {
        font-size: 0.89rem;                         /* +15% — was 0.77rem */
        padding: 4px 10px;
    }

    .fflp-section-title {
        font-size: 1.82rem;                         /* +15% — was 1.58rem */
    }

    .fflp-card {
        padding: var(--fflp-gap-md);
        border-radius: var(--fflp-radius-md);
    }

    .fflp-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--fflp-gap-sm);
    }

    .fflp-hours-day {
        min-width: 80px;
        font-size: 1.265rem;                        /* +15% — was 1.1rem */
    }

    .fflp-hours-time {
        font-size: 1.265rem;                        /* +15% — was 1.1rem */
    }

    .fflp-social-link {
        padding: 8px 12px;
        font-size: 1.15rem;                         /* +15% — was 1rem */
    }

    .fflp-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.265rem;                        /* +15% — was 1.1rem */
    }

    .fflp-lightbox-prev {
        left: 10px;
    }

    .fflp-lightbox-next {
        right: 10px;
    }

    .fflp-menu-iframe {
        height: 400px;
    }

    .fflp-menu-actions {
        flex-direction: column;
    }

    .fflp-coupons-grid {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════ */

@media print {

    .fflp-hero-overlay {
        background: none !important;
    }

    .fflp-business-name {
        color: var(--fflp-black) !important;
        text-shadow: none !important;
    }

    .fflp-claim-banner,
    .fflp-upgrade-prompt,
    .fflp-locked,
    .fflp-lightbox,
    .fflp-social-card {
        display: none !important;
    }

    .fflp-card {
        box-shadow: none !important;
        border: 1px solid #ddd;
    }

    .fflp-content-wrap {
        display: block;
    }

    .fflp-sidebar {
        margin-top: 20px;
    }
}


/* ══════════════════════════════════════════════
   TIER / DISCOVERY BADGES
   ══════════════════════════════════════════════ */

/* Founding Member — Gold/Amber */
.fflp-badge-founding {
    background: linear-gradient(135deg, #b7791f, #d69e2e) !important;
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.4);
    animation: fflp-badge-shimmer 3s ease-in-out infinite alternate;
}

/* Community Partner — Teal */
.fflp-badge-partner {
    background: linear-gradient(135deg, #177a6c, #20b2aa) !important;
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(32, 178, 170, 0.3);
}

/* Premium — deeper, richer purple (less neon) */
.fflp-badge-premium {
    background: linear-gradient(135deg, #4a2d6e, #6b3fa0) !important;
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(107, 63, 160, 0.4);
}

/* Featured / Enhanced — Slate Blue */
.fflp-badge-featured {
    background: linear-gradient(135deg, #3d5a80, #5b8fb9) !important;
    color: #fff !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(91, 143, 185, 0.3);
}

/* Category — Subtle transparent pill */
.fflp-badge-category {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-weight: 500;
    backdrop-filter: blur(4px);
}

/* Founding Member shimmer animation */
@keyframes fflp-badge-shimmer {
    0%   { box-shadow: 0 0 4px rgba(214, 158, 46, 0.3); }
    50%  { box-shadow: 0 0 14px rgba(214, 158, 46, 0.7); }
    100% { box-shadow: 0 0 4px rgba(214, 158, 46, 0.3); }
}

/* ══════════════════════════════════════════════
   BADGE LAYOUT — TWO ROWS
   ══════════════════════════════════════════════ */

.fflp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.fflp-badges-primary {
    margin-bottom: 4px;
}

.fflp-badges-status {
    margin-bottom: 10px;
}

.fflp-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* ══════════════════════════════════════════════
   TIER BADGES (Row 1)
   ══════════════════════════════════════════════ */

.fflp-badge-founding {
    background: linear-gradient(135deg, #b7791f, #d69e2e) !important;
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.4);
    animation: fflp-badge-shimmer 3s ease-in-out infinite alternate;
}

.fflp-badge-partner {
    background: linear-gradient(135deg, #177a6c, #20b2aa) !important;
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(32, 178, 170, 0.3);
}

.fflp-badge-premium {
    background: linear-gradient(135deg, #553c7b, #7c3aed) !important;
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.fflp-badge-featured {
    background: linear-gradient(135deg, #3d5a80, #5b8fb9) !important;
    color: #fff !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(91, 143, 185, 0.3);
}

.fflp-badge-category {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    backdrop-filter: blur(4px);
}

@keyframes fflp-badge-shimmer {
    0%   { box-shadow: 0 0 4px rgba(214, 158, 46, 0.3); }
    50%  { box-shadow: 0 0 14px rgba(214, 158, 46, 0.7); }
    100% { box-shadow: 0 0 4px rgba(214, 158, 46, 0.3); }
}

/* ══════════════════════════════════════════════
   STATUS BADGES — Hero-scoped glass variants
   (solid colors from lines 214-230 remain the default)
   ══════════════════════════════════════════════ */
.fflp-hero .fflp-badge-verified {
    background: rgba(34, 153, 84, 0.55);
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(74, 222, 128, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.fflp-hero .fflp-badge-open {
    background: rgba(30, 130, 200, 0.55);
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(125, 211, 252, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.fflp-hero .fflp-badge-closed {
    background: rgba(160, 60, 60, 0.6);
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(220, 120, 120, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
@keyframes fflp-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fflp-section {
    animation: fflp-fade-in 0.4s ease forwards;
}

.fflp-section:nth-child(1) { animation-delay: 0.05s; }
.fflp-section:nth-child(2) { animation-delay: 0.1s; }
.fflp-section:nth-child(3) { animation-delay: 0.15s; }
.fflp-section:nth-child(4) { animation-delay: 0.2s; }
.fflp-section:nth-child(5) { animation-delay: 0.25s; }
.fflp-section:nth-child(6) { animation-delay: 0.3s; }
.fflp-section:nth-child(7) { animation-delay: 0.35s; }
/* ══════════════════════════════════════════════
   MOBILE HERO BADGE REDESIGN
   Moves all badge rows below the hero image
   into a single compact scrollable strip.
   ══════════════════════════════════════════════ */

@media (max-width: 600px) {

    /* Hero layout for mobile */
    .fflp-hero {
        margin-bottom: 0;
    }

    /* Overlay stays absolute so gradient scrim works */
    .fflp-hero-overlay {
        position: absolute;
        inset: 0;
        min-height: 220px;
        border-radius: var(--fflp-radius-lg);
    }

    /* Title stays in the overlay */
    .fflp-hero .fflp-business-name,
    .fflp-hero .fflp-tagline {
        position: relative;
        z-index: 2;
    }

    /* Badge visibility handled by fflp-public.css mobile-badge-strip system */
}

/* ============================================
   LISTING SECTIONS — Booking, Events, Featured In, Nearby
   ============================================ */

/* Shared Section Wrapper */
.fflp-section-booking,
.fflp-section-events,
.fflp-section-featured-in,
.fflp-section-nearby {
  margin: 24px 0;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.fflp-section-booking h3,
.fflp-section-events h3,
.fflp-section-featured-in h3,
.fflp-section-nearby h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #f3f4f6;
  color: #1f2937;
}

/* ── Booking/Order Links ── */
.fflp-booking-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fflp-booking-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #2563eb;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
}

.fflp-booking-link:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.fflp-booking-link .fflp-booking-icon {
  font-size: 16px;
}

.fflp-booking-link--hotplate { background: #dc2626; }
.fflp-booking-link--hotplate:hover { background: #b91c1c; }

.fflp-booking-link--reservation { background: #059669; }
.fflp-booking-link--reservation:hover { background: #047857; }

.fflp-hotplate-live-badge {
  display: inline-block;
  background: #fef2f2;
  color: #dc2626;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  animation: fflp-pulse 2s infinite;
}

@keyframes fflp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ── Event Cards ── */
.fflp-events-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fflp-event-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid #2563eb;
  transition: background 0.2s;
}

.fflp-event-card:hover {
  background: #eff6ff;
}

.fflp-event-card a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.fflp-event-card a:hover {
  color: #2563eb;
}

.fflp-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
  padding: 6px 8px;
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
  font-size: 11px;
  line-height: 1.3;
}

.fflp-event-date .fflp-event-month {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 10px;
}

.fflp-event-date .fflp-event-day {
  font-size: 18px;
  font-weight: 800;
}

.fflp-events-more {
  text-align: center;
  margin-top: 8px;
}

.fflp-events-more a {
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* ── Featured In Cards ── */
.fflp-featured-in-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fflp-featured-in-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f9fafb;
  border-radius: 8px;
  transition: background 0.2s;
}

.fflp-featured-in-card:hover {
  background: #fefce8;
}

.fflp-featured-in-card .fflp-fi-icon {
  font-size: 20px;
  min-width: 28px;
  text-align: center;
}

.fflp-featured-in-card a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.fflp-featured-in-card a:hover {
  color: #d97706;
}

.fflp-featured-in-card .fflp-fi-type {
  font-size: 11px;
  color: #6b7280;
  background: #f3f4f6;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: auto;
}

/* ── Nearby Business Cards (v3.5.0) ── */
.fflp-nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.fflp-nearby-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  text-decoration: none !important;
  color: inherit !important;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.fflp-nearby-card:hover {
  border-color: #2563eb;
  box-shadow: 0 2px 8px rgba(37,99,235,0.1);
  transform: translateY(-1px);
}

.fflp-nearby-card--paid {
  border-left: 3px solid #2563eb;
  background: #f0f5ff;
}

/* Thumbnail */
.fflp-nearby-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fflp-nearby-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fflp-nearby-thumb--placeholder {
  font-size: 22px;
  color: #9ca3af;
}

/* Info block */
.fflp-nearby-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.fflp-nearby-name {
  font-weight: 700;
  font-size: 14px;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fflp-nearby-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--badge-color, #2563eb);
  background: color-mix(in srgb, var(--badge-color, #2563eb) 12%, transparent);
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
  line-height: 1.4;
}

.fflp-nearby-category {
  font-size: 12px;
  color: #6b7280;
}

/* Open/Closed Status Indicator */
.fflp-nearby-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 1px;
}

.fflp-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fflp-nearby-status--open {
  color: #059669;
}

.fflp-nearby-status--open .fflp-status-dot {
  background: #059669;
  box-shadow: 0 0 0 2px rgba(5,150,105,0.2);
}

.fflp-nearby-status--closing {
  color: #d97706;
}

.fflp-nearby-status--closing .fflp-status-dot {
  background: #d97706;
  box-shadow: 0 0 0 2px rgba(217,119,6,0.2);
  animation: fflp-pulse 1.5s ease-in-out infinite;
}

.fflp-nearby-status--closed {
  color: #dc2626;
}

.fflp-nearby-status--closed .fflp-status-dot {
  background: #dc2626;
  box-shadow: 0 0 0 2px rgba(220,38,38,0.2);
}

@keyframes fflp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.fflp-nearby-distance {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 2px;
}
.fflp-section-empty {
  text-align: center;
  padding: 16px;
  color: #9ca3af;
  font-size: 13px;
  font-style: italic;
}

/* ── Mobile Responsive ── */
@media (max-width: 640px) {
  .fflp-section-booking,
  .fflp-section-events,
  .fflp-section-featured-in,
  .fflp-section-nearby {
    padding: 16px;
    margin: 16px 0;
  }

  .fflp-booking-links {
    flex-direction: column;
  }

  .fflp-booking-link {
    justify-content: center;
    width: 100%;
  }

  .fflp-nearby-grid {
    grid-template-columns: 1fr;
  }

  .fflp-event-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .fflp-event-date {
    flex-direction: row;
    gap: 4px;
  }
}
