/* ============================================================
   Explore App CSS v1.0
   ============================================================
   Scope: body.exp-app (set in app.blade.php)
   Prefix: .exp- (all classes)
   Depends on: paiwingkan-design.css (CSS variables)

   RULES:
   - All classes start with .exp- or .pwk-v3-
   - Never modify .pwk-* classes from paiwingkan-design.css
   - Never modify existing site classes
   - Mobile-first responsive
   ============================================================ */

/* ============================================================
   0. CSS VARIABLES (extend Design System v2)
   ============================================================ */
:root {
    /* Explore-specific tokens */
    --exp-header-height: 56px;
    --exp-bottom-nav-height: 60px;
    --exp-content-max: 1200px;
    --exp-card-gap: 16px;

    /* Month section */
    --exp-month-header-color: #1a1a2e;
    --exp-month-line-color: #e5e7eb;

    /* Filter bar */
    --exp-filter-bg: #ffffff;
    --exp-filter-input-bg: #fff3e7;
    --exp-filter-focus: #FF9190;

    /* Past grid */
    --exp-past-thumb-size: 100px;
}


/* ============================================================
   1. GLOBAL RESET (scoped under body.exp-app)
   ============================================================ */
body.exp-app {
    margin: 0;
    padding: 0;
    background: var(--pwk-bg-body, #fdf8f8);
    font-family: var(--pwk-font-sans, 'Kanit', sans-serif);
    color: var(--pwk-text-body, #374151);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ============================================================
   2. HEADER — Minimal top bar
   ============================================================ */
.exp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--pwk-gray-200, #e5e7eb);
    height: var(--exp-header-height);
}

.exp-header-inner {
    max-width: var(--exp-content-max);
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.exp-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.exp-logo-img {
    height: 36px;
    width: auto;
}

.exp-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.exp-header-user {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--pwk-text-body, #374151);
    font-size: 14px;
    font-weight: 500;
}

.exp-header-user i {
    font-size: 24px;
    color: var(--pwk-coral-1, #FF9190);
}

.exp-header-user:hover {
    color: var(--pwk-pink, #ee1c52);
}


/* ============================================================
   3. BOTTOM NAVIGATION — Fixed mobile nav
   ============================================================ */
.exp-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    border-top: 1px solid var(--pwk-gray-200, #e5e7eb);
    height: var(--exp-bottom-nav-height);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.exp-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: var(--pwk-gray-400, #9ca3af);
    font-size: 11px;
    font-weight: 500;
    padding: 8px 16px;
    transition: color 200ms ease;
}

.exp-nav-item i {
    font-size: 20px;
}

.exp-nav-item:hover,
.exp-nav-item.exp-nav-active {
    color: var(--pwk-coral-1, #FF9190);
}

.exp-nav-item.exp-nav-active {
    font-weight: 600;
}

.exp-bottom-nav-spacer {
    height: var(--exp-bottom-nav-height);
}

/* Desktop: bottom nav becomes horizontal top sub-nav */
@media (min-width: 1024px) {
    .exp-bottom-nav {
        position: static;
        border-top: none;
        border-bottom: 1px solid var(--pwk-gray-200, #e5e7eb);
        height: 48px;
        max-width: var(--exp-content-max);
        margin: 0 auto;
        justify-content: flex-start;
        gap: 8px;
        padding: 0 16px;
    }

    .exp-nav-item {
        flex-direction: row;
        gap: 6px;
        font-size: 14px;
        padding: 12px 16px;
        border-bottom: 2px solid transparent;
    }

    .exp-nav-item.exp-nav-active {
        border-bottom-color: var(--pwk-coral-1, #FF9190);
    }

    .exp-bottom-nav-spacer {
        height: 0;
    }
}


/* ============================================================
   4. MAIN CONTENT AREA
   ============================================================ */
.exp-main {
    min-height: calc(100vh - var(--exp-header-height) - var(--exp-bottom-nav-height));
    padding-bottom: 24px;
}

.exp-container {
    max-width: var(--exp-content-max);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .exp-container {
        padding: 0 24px;
    }
}


/* ============================================================
   5. BUTTONS (explore-specific)
   ============================================================ */
.exp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 200ms ease;
    line-height: 1;
}

.exp-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.exp-btn-md {
    padding: 12px 24px;
    font-size: 15px;
}

.exp-btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.exp-btn-primary {
    background: linear-gradient(135deg, #FF9190 0%, #FDC094 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 145, 144, 0.35);
}

.exp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 145, 144, 0.45);
}

.exp-btn-secondary {
    background: #ffffff;
    color: var(--pwk-text-body, #374151);
    border: 1.5px solid var(--pwk-gray-200, #e5e7eb);
}

.exp-btn-secondary:hover {
    border-color: var(--pwk-coral-1, #FF9190);
    color: var(--pwk-coral-1, #FF9190);
}


/* ============================================================
   6. SEARCH / FILTER BAR
   ============================================================ */
.exp-filter-bar {
    background: var(--exp-filter-bg);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--pwk-shadow-base, 0 4px 12px rgba(0,0,0,0.08));
    margin: 20px auto;
    max-width: 900px;
    position: relative;
    overflow: visible;
}

.exp-filter-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 640px) {
    .exp-filter-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
    }
}

.exp-filter-input,
.exp-filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid transparent;
    background: var(--exp-filter-input-bg);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 200ms ease, background 200ms ease;
    color: var(--pwk-text-body, #374151);
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    min-width: 0;
}

.exp-filter-input:focus,
.exp-filter-select:focus {
    border-color: var(--exp-filter-focus);
    background: #ffffff;
}

.exp-filter-input::placeholder {
    color: var(--pwk-gray-400, #9ca3af);
}

/* Select arrow */
.exp-filter-select-wrap {
    position: relative;
}

.exp-filter-select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--pwk-gray-400, #9ca3af);
    pointer-events: none;
}

/* Search actions */
.exp-filter-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}


/* ============================================================
   7. MONTH SECTION — Grouped results by month
   ============================================================ */
.exp-month-section {
    margin-top: 32px;
}

.exp-month-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 0 4px;
}

.exp-month-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--exp-month-header-color);
    white-space: nowrap;
}

.exp-month-line {
    flex: 1;
    height: 1px;
    background: var(--exp-month-line-color);
}

.exp-month-count {
    font-size: 13px;
    color: var(--pwk-gray-400, #9ca3af);
    white-space: nowrap;
}


/* ============================================================
   8. EVENT CARDS — Grid layout
   ============================================================ */
.exp-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width: 640px) {
    .exp-card-grid {
        gap: var(--exp-card-gap);
    }
}

@media (min-width: 1024px) {
    .exp-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.exp-card {
    background: #ffffff;
    border-radius: var(--pwk-radius-base, 16px);
    overflow: hidden;
    box-shadow: var(--pwk-shadow-sm, 0 1px 2px rgba(0,0,0,0.05));
    transition: box-shadow 250ms ease, transform 250ms ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.exp-card:hover {
    box-shadow: var(--pwk-shadow-lg, 0 12px 32px rgba(0,0,0,0.12));
    transform: translateY(-4px);
}

.exp-card-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
    background: var(--pwk-gray-100, #f3f4f6);
}

.exp-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.exp-card:hover .exp-card-img {
    transform: scale(1.05);
}

.exp-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: var(--pwk-radius-pill, 999px);
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.exp-card-badge-new {
    background: linear-gradient(135deg, #FF9190, #FDC094);
    color: #ffffff;
}

.exp-card-badge-closing {
    background: #ef4444;
    color: #ffffff;
}

.exp-card-badge-external {
    background: #FFC107;
    color: #5d4108;
}

.exp-card-badge-vr {
    background: #8b5cf6;
    color: #ffffff;
}

.exp-card-body {
    padding: 16px;
}

.exp-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--pwk-text-primary, #1a1a2e);
    margin: 0 0 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.exp-card-meta {
    font-size: 13px;
    color: var(--pwk-text-muted, #6b7280);
    margin: 0;
    line-height: 1.5;
}

.exp-card-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-right: 12px;
}

.exp-card-meta-item i {
    font-size: 12px;
    color: var(--pwk-coral-1, #FF9190);
}

.exp-card-date {
    font-size: 14px;
    font-weight: 500;
    color: var(--pwk-coral-1, #FF9190);
    margin-top: 8px;
}


/* ============================================================
   9. PAST EVENTS — Thumbnail grid (limit 50)
   ============================================================ */
.exp-past-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--pwk-gray-200, #e5e7eb);
}

.exp-past-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.exp-past-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--pwk-text-muted, #6b7280);
}

.exp-past-count {
    font-size: 13px;
    color: var(--pwk-gray-400, #9ca3af);
}

.exp-past-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

@media (min-width: 640px) {
    .exp-past-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }
}

@media (min-width: 1024px) {
    .exp-past-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 12px;
    }
}

.exp-past-thumb {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 square */
    border-radius: var(--pwk-radius-sm, 8px);
    overflow: hidden;
    background: var(--pwk-gray-100, #f3f4f6);
}

.exp-past-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 200ms ease;
    opacity: 0.7;
}

.exp-past-thumb:hover img {
    opacity: 1;
}

.exp-past-thumb-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4px 6px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Load More button for past events */
.exp-past-load-more {
    text-align: center;
    margin-top: 16px;
}


/* ============================================================
   10. MY RACES — Registration status cards
   ============================================================ */
.exp-race-status-card {
    background: #ffffff;
    border-radius: var(--pwk-radius-base, 16px);
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--pwk-shadow-sm, 0 1px 2px rgba(0,0,0,0.05));
}

.exp-race-status-img {
    width: 80px;
    height: 80px;
    border-radius: var(--pwk-radius-sm, 8px);
    object-fit: cover;
    flex-shrink: 0;
}

.exp-race-status-info {
    flex: 1;
    min-width: 0;
}

.exp-race-status-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--pwk-text-primary, #1a1a2e);
    margin: 0 0 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.exp-race-status-date {
    font-size: 13px;
    color: var(--pwk-text-muted, #6b7280);
    margin: 0 0 8px;
}

.exp-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--pwk-radius-pill, 999px);
    font-size: 12px;
    font-weight: 600;
}

.exp-status-badge-pending {
    background: #fef3c7;
    color: #92400e;
}

.exp-status-badge-paid {
    background: #d1fae5;
    color: #065f46;
}

.exp-status-badge-pending::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
}

.exp-status-badge-paid::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}


/* ============================================================
   11. EMPTY STATE
   ============================================================ */
.exp-empty-state {
    text-align: center;
    padding: 48px 24px;
}

.exp-empty-mascot {
    width: 120px;
    height: auto;
    margin: 0 auto 16px;
    display: block;
}

.exp-empty-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--pwk-text-primary, #1a1a2e);
    margin: 0 0 8px;
}

.exp-empty-text {
    font-size: 14px;
    color: var(--pwk-text-muted, #6b7280);
    margin: 0 0 24px;
}


/* ============================================================
   12. LOADING / SKELETON
   ============================================================ */
.exp-skeleton {
    background: linear-gradient(90deg,
        var(--pwk-gray-100, #f3f4f6) 25%,
        var(--pwk-gray-50, #f9fafb) 50%,
        var(--pwk-gray-100, #f3f4f6) 75%
    );
    background-size: 200% 100%;
    animation: exp-shimmer 1.5s ease infinite;
    border-radius: var(--pwk-radius-sm, 8px);
}

@keyframes exp-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.exp-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(253, 248, 248, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: inherit;
}

.exp-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--pwk-gray-200, #e5e7eb);
    border-top-color: var(--pwk-coral-1, #FF9190);
    border-radius: 50%;
    animation: exp-spin 600ms linear infinite;
}

@keyframes exp-spin {
    to { transform: rotate(360deg); }
}


/* ============================================================
   13. ANIMATIONS
   ============================================================ */
.exp-fade-up {
    opacity: 0;
    transform: translateY(16px);
    animation: exp-fade-up-anim 500ms ease forwards;
}

@keyframes exp-fade-up-anim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger children */
.exp-stagger > * {
    opacity: 0;
    transform: translateY(12px);
    animation: exp-fade-up-anim 400ms ease forwards;
}

.exp-stagger > *:nth-child(1) { animation-delay: 50ms; }
.exp-stagger > *:nth-child(2) { animation-delay: 100ms; }
.exp-stagger > *:nth-child(3) { animation-delay: 150ms; }
.exp-stagger > *:nth-child(4) { animation-delay: 200ms; }
.exp-stagger > *:nth-child(5) { animation-delay: 250ms; }
.exp-stagger > *:nth-child(6) { animation-delay: 300ms; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .exp-fade-up,
    .exp-stagger > *,
    .exp-skeleton {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .exp-card:hover {
        transform: none;
    }

    .exp-card:hover .exp-card-img {
        transform: none;
    }
}


/* ============================================================
   14. UTILITY CLASSES
   ============================================================ */
.exp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.exp-text-center { text-align: center; }
.exp-text-muted  { color: var(--pwk-text-muted, #6b7280); }
.exp-mt-4  { margin-top: 16px; }
.exp-mt-8  { margin-top: 32px; }
.exp-mt-12 { margin-top: 48px; }
.exp-mb-4  { margin-top: 16px; }
.exp-hidden { display: none !important; }


/* ============================================================
   15. BANNER SLIDER
   ============================================================ */
.exp-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--pwk-radius-base, 16px);
    margin: 16px 0;
    background: var(--pwk-gray-100, #f3f4f6);
}

.exp-slider-track {
    display: flex;
    transition: transform 400ms ease;
    will-change: transform;
}

.exp-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.exp-slide a,
.exp-slide picture {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.exp-slide-img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--pwk-radius-base, 16px);
}

/* Mobile: shorter */
@media (max-width: 639px) {
    .exp-slide-img {
        height: 180px;
        border-radius: var(--pwk-radius-sm, 8px);
    }
}

/* Tablet */
@media (min-width: 640px) and (max-width: 1023px) {
    .exp-slide-img {
        height: 260px;
    }
}

/* Dots */
.exp-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.exp-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    transition: background 200ms ease, transform 200ms ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.exp-slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.exp-slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Touch feedback */
.exp-slider.grabbing {
    cursor: grabbing;
}

.exp-slider.grabbing .exp-slider-track {
    transition: none;
}


/* ============================================================
   16. FOOTER (fallback — ใช้ class เดียวกับหน้าหลัก)
   paiwingkan-design.css จะ override ได้เลยถ้ามี style แล้ว
   ============================================================ */
.pwk-footer {
    background: var(--pwk-gray-50, #f9fafb);
    border-top: 1px solid var(--pwk-gray-200, #e5e7eb);
    padding: 48px 0 0;
    margin-top: 48px;
    font-size: 14px;
    color: var(--pwk-text-body, #374151);
}

.pwk-footer-inner {
    max-width: var(--exp-content-max, 1200px);
    margin: 0 auto;
    padding: 0 16px;
}

/* Top Grid — 4 columns on desktop */
.pwk-footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .pwk-footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .pwk-footer-top {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

/* Brand column */
.pwk-footer-brand {
    max-width: 300px;
}

@media (min-width: 640px) {
    .pwk-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .pwk-footer-brand {
        grid-column: auto;
    }
}

.pwk-footer-brand-header {
    margin-bottom: 16px;
}

.pwk-footer-brand-logo {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
}

.pwk-footer-brand-text {
    font-size: 13px;
    color: var(--pwk-text-muted, #6b7280);
    line-height: 1.6;
    margin: 0;
}

.pwk-footer-social {
    display: flex;
    gap: 12px;
}

.pwk-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pwk-gray-200, #e5e7eb);
    color: var(--pwk-text-body, #374151);
    font-size: 16px;
    text-decoration: none;
    transition: background 200ms ease, color 200ms ease;
}

.pwk-footer-social a:hover {
    background: var(--pwk-coral-1, #FF9190);
    color: #fff;
}

/* Footer columns */
.pwk-footer-col {
    min-width: 0;
}

.pwk-footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--pwk-text-primary, #1a1a2e);
    margin: 0 0 12px;
}

.pwk-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pwk-footer-col li {
    margin-bottom: 8px;
}

.pwk-footer-col a {
    color: var(--pwk-text-muted, #6b7280);
    text-decoration: none;
    transition: color 200ms ease;
}

.pwk-footer-col a:hover {
    color: var(--pwk-coral-1, #FF9190);
}

.pwk-footer-col-text {
    font-size: 13px;
    color: var(--pwk-text-muted, #6b7280);
    line-height: 1.6;
    margin: 0 0 12px;
}

/* Messenger chat button */
.pwk-fb-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #0084FF;
    color: #fff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 200ms ease;
}

.pwk-fb-chat-btn:hover {
    background: #006fdb;
    color: #fff;
}

/* Facebook Page Widget Row */
.pwk-footer-fb-row {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--pwk-gray-200, #e5e7eb);
}

.pwk-footer-fb-row h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--pwk-text-primary, #1a1a2e);
    margin: 0 0 16px;
}

.pwk-footer-fb-row .fb-page {
    width: 100%;
    overflow: hidden;
}

/* Footer bottom bar */
.pwk-footer-bottom {
    margin-top: 32px;
    padding: 20px 0;
    border-top: 1px solid var(--pwk-gray-200, #e5e7eb);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--pwk-text-muted, #6b7280);
}

.pwk-footer-bottom-links {
    display: flex;
    gap: 16px;
}

.pwk-footer-bottom-links a {
    color: var(--pwk-text-muted, #6b7280);
    text-decoration: none;
}

.pwk-footer-bottom-links a:hover {
    color: var(--pwk-coral-1, #FF9190);
}
