/**
 * Stores Page Styles
 */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-red);
}

.breadcrumb-separator {
    color: #adb5bd;
}

.breadcrumb-current {
    color: #212529;
    font-weight: 500;
}

/* Store Count */
.store-count {
    text-align: center;
    margin: 30px 0;
    font-size: 16px;
    color: #6c757d;
}

.store-count strong {
    color: var(--primary-red);
    font-weight: 600;
}