/* ==========================================================================
       STORES ARCHIVE PAGE (Premium Mobile-First UI)
       ========================================================================== */
    .fp-stores-page {
        background: #F8FAFC;
        /* Subtle off-white for contrast against white cards */
        min-height: 100vh;
        font-family: var(--fp-font);
        padding-bottom: 120px;
    }

    .fp-stores-page>* {
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* ── STORES HERO ── */
    .fp-stores-hero {
        background: #FFFFFF;
        padding: 80px 20px 60px;
        text-align: center;
        border-bottom: 1px solid #E2E8F0;
        margin-bottom: 40px;
    }

    .fp-stores-hero h1 {
        font-size: var(--fp-text-5xl);
        font-weight: 900;
        color: #0F172A;
        letter-spacing: -0.04em;
        margin-bottom: 16px;
    }

    .fp-stores-hero p {
        font-size: var(--fp-text-lg2);
        color: #64748B;
        max-width: 600px;
        margin: 0 auto 32px;
    }

    /* ── SEARCH & FILTER BAR ── */
    .fp-stores-filter-bar {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        gap: 16px;
        position: relative;
    }

    .fp-store-search {
        flex: 1;
        position: relative;
    }

    .fp-store-search input {
        width: 100%;
        padding: 20px 20px 20px 56px;
        border-radius: var(--fp-radius-20);
        border: 2px solid #E2E8F0;
        font-size: var(--fp-text-lg);
        font-weight: 500;
        color: #0F172A;
        transition: all 0.3s;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    }

    .fp-store-search input:focus {
        outline: none;
        border-color: #0A0A0A;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .fp-search-icon {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: var(--fp-text-lg2);
        opacity: 0.5;
    }

    /* ── STORES GRID ── */
    .fp-stores-grid-wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .fp-stores-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }

    .fp-store-card {
        background: #FFFFFF;
        border-radius: var(--fp-radius-xl);
        border: 1px solid #E2E8F0;
        padding: 32px 24px;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fp-store-card:hover {
        transform: translateY(-8px);
        border-color: #0A0A0A;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    }

    .fp-store-logo {
        width: 80px;
        height: 80px;
        background: #F8FAFC;
        border-radius: var(--fp-radius-20);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
    }

    .fp-store-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .fp-store-name {
        font-size: var(--fp-text-xl);
        font-weight: 800;
        color: #0F172A;
        margin-bottom: 8px;
    }

    .fp-store-rate {
        display: inline-block;
        background: #EEF2FF;
        color: #4338CA;
        padding: 6px 12px;
        border-radius: var(--fp-radius-sm);
        font-weight: 800;
        font-size: var(--fp-text-md);
        margin-bottom: 16px;
    }

    .fp-store-btn {
        width: 100%;
        padding: 12px;
        background: #F1F5F9;
        color: #0F172A;
        border-radius: var(--fp-radius-md);
        font-weight: 700;
        font-size: var(--fp-text-md);
        transition: all 0.2s;
        margin-top: auto;
    }

    .fp-store-card:hover .fp-store-btn {
        background: #0A0A0A;
        color: #FFFFFF;
    }

    @media (max-width: 768px) {
        .fp-stores-hero h1 {
            font-size: var(--fp-text-4xl);
        }

        .fp-stores-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .fp-store-card {
            padding: 24px 16px;
        }

        .fp-store-logo {
            width: 64px;
            height: 64px;
        }
    }
