    :root {
        --primary: #1E8A88;
        --primary-light: #2CA6A4;
        --primary-dark: #176E6C;
        --secondary: #6AAD3B;
        --accent-navy: #1F2D3D;
        --light-gray: #F8FAFC;
        --medium-gray: #E2E8F0;
        --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
        --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.12);
        --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    /* Page Header - More Compact */
    .page-header {
        background: linear-gradient(135deg, var(--accent-navy) 0%, #2A3B4F 100%);
        color: white;
        padding: 3rem 0 1.5rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-bottom: 1.5rem;
    }

    .page-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: white;
    }

    .page-subtitle {
        font-size: 0.95rem;
        opacity: 0.9;
        max-width: 500px;
        margin: 0 auto;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Search Section - More Compact */
    .search-section {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        margin: 0 auto 1.5rem;
        box-shadow: var(--shadow-light);
        max-width: 1200px;
    }

    .search-box {
        position: relative;
        margin-bottom: 1.5rem;
    }

    .search-input {
        width: 100%;
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        border: 1px solid var(--medium-gray);
        border-radius: 8px;
        font-size: 0.9rem;
        transition: all 0.2s ease;
        background: var(--light-gray);
    }

    .search-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(30, 138, 136, 0.1);
        background: white;
    }

    .search-icon {
        position: absolute;
        left: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary);
        font-size: 1rem;
    }

    /* Alphabet Navigation - More Compact */
    .alphabet-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem;
        justify-content: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--medium-gray);
        margin-bottom: 1.5rem;
    }

    .alphabet-letter {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--light-gray);
        border: 1px solid var(--medium-gray);
        border-radius: 6px;
        text-decoration: none;
        color: var(--accent-navy);
        font-weight: 600;
        font-size: 0.8rem;
        transition: all 0.2s ease;
    }

    .alphabet-letter:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-1px);
        border-color: var(--primary);
    }

    .alphabet-letter.active {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

    .alphabet-all {
        background: var(--secondary);
        color: white;
        border-color: var(--secondary);
        width: auto;
        padding: 0 0.75rem;
    }

    /* Main Container */
    .main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    /* Stores Grid - More Compact */
    .stores-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
        margin-top: 1.5rem;
    }

    @media (min-width: 768px) {
        .stores-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1.25rem;
        }
    }

    @media (min-width: 992px) {
        .stores-grid {
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 1.5rem;
        }
    }

    /* Store Card - More Compact */
    .store-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow-light);
        transition: all 0.3s ease;
        border: 1px solid var(--medium-gray);
        height: 100%;
        position: relative;
    }

    .store-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-medium);
        border-color: var(--primary);
    }

    .store-image-container {
        position: relative;
        height: 90px;
        overflow: hidden;
        background: var(--light-gray);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @media (min-width: 768px) {
        .store-image-container {
            height: 100px;
        }
    }

    .store-image {
        width: 80%;
        height: 80%;
        object-fit: contain;
        padding: 0.75rem;
        transition: transform 0.3s ease;
    }

    .store-card:hover .store-image {
        transform: scale(1.05);
    }

    .store-badge {
        position: absolute;
        top: 6px;
        right: 6px;
        background: var(--primary);
        color: white;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 0.65rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .store-content {
        padding: 0.75rem;
        text-align: center;
    }

    .store-name {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--accent-navy);
        margin-bottom: 0.5rem;
        line-height: 1.3;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .store-meta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        font-size: 0.75rem;
        color: #666;
    }

    .store-meta i {
        color: var(--primary);
        font-size: 0.7rem;
    }

    /* Stats Bar - More Compact */
    .stats-bar {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        color: white;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .stat-item i {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    /* Active Filters */
    .active-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
        min-height: 32px;
    }

    .filter-badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--primary);
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 16px;
        font-size: 0.8rem;
    }

    .filter-remove {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 0.7rem;
        padding: 0;
    }

    /* Letter Section - More Compact */
    .letter-section {
        margin-bottom: 2rem;
    }

    .letter-header {
        padding: 0.75rem 0;
        border-bottom: 2px solid var(--primary);
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .letter-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--accent-navy);
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .letter-count {
        background: var(--primary);
        color: white;
        padding: 0.125rem 0.5rem;
        border-radius: 12px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    /* No Results */
    .no-results {
        text-align: center;
        padding: 3rem 1rem;
        background: var(--light-gray);
        border-radius: 8px;
        margin: 1.5rem 0;
    }

    .no-results-icon {
        font-size: 3rem;
        color: var(--medium-gray);
        margin-bottom: 1rem;
    }

    /* Breadcrumb - More Compact */
    .breadcrumb-custom {
        background: var(--light-gray);
        border-radius: 8px;
        padding: 0.75rem 1rem;
        margin-bottom: 1.5rem;
        border: 1px solid var(--medium-gray);
        font-size: 0.9rem;
    }

    /* Pagination - More Compact */
    .pagination {
        margin-top: 2rem;
    }

    .pagination .page-link {
        padding: 0.375rem 0.75rem;
        font-size: 0.9rem;
        border-radius: 6px;
    }

    /* Responsive Adjustments */
    @media (max-width: 576px) {
        .page-header {
            padding: 2rem 0 1rem;
        }
        
        .page-title {
            font-size: 1.5rem;
        }
        
        .search-section {
            padding: 1rem;
        }
        
        .stores-grid {
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 0.75rem;
        }
        
        .store-image-container {
            height: 80px;
        }
        
        .stats-bar {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
        
        .alphabet-nav {
            gap: 0.125rem;
        }
        
        .alphabet-letter {
            width: 28px;
            height: 28px;
            font-size: 0.75rem;
        }
    }

    @media (max-width: 375px) {
        .stores-grid {
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        }
    }

    /* Simple Animations */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .store-card {
        animation: fadeIn 0.3s ease-out forwards;
        opacity: 0;
    }

    /* Stagger animation */
    .store-card:nth-child(1) { animation-delay: 0.1s; }
    .store-card:nth-child(2) { animation-delay: 0.2s; }
    .store-card:nth-child(3) { animation-delay: 0.3s; }
    .store-card:nth-child(4) { animation-delay: 0.4s; }
    .store-card:nth-child(5) { animation-delay: 0.5s; }
    .store-card:nth-child(6) { animation-delay: 0.6s; }
    .store-card:nth-child(7) { animation-delay: 0.7s; }
    .store-card:nth-child(8) { animation-delay: 0.8s; }