/* Client Stores Directory Styles */

.client-stores-directory {
    padding: 20px 0;
}

.client-stores-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--darkturqoise);
}

/* No stores message */
.no-stores-message {
    text-align: center;
    color: #999;
    font-size: 16px;
    padding: 40px 20px;
}

/* Stores by Letter */
.stores-by-letter {
    max-width: 100%;
    margin: 0 auto;
}

.letter-section {
    margin-bottom: 50px;
    scroll-margin-top: 80px;
}

.letter-header {
    font-size: 28px;
    font-weight: 700;
    color: var(--darkturqoise);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--darkturqoise);
    display: inline-block;
}

/* Stores List */
.stores-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.store-link {
    display: block;
    flex: 0 0 calc(25% - 12px);
    padding: 8px 0;
    color: var(--darkturqoise);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.store-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .client-stores-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .letter-header {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .stores-list {
        gap: 12px;
    }

    .store-link {
        flex: 0 0 calc(50% - 6px);
        padding: 6px 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .store-link {
        flex: 0 0 100%;
    }
}

