/* Page styles: stores section enhancements and lists. */

/* استایل جدید برای بخش فروشگاه‌ها */
.stores-section {
    margin-top: 25px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stores-section h2 {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.stores-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
}

.stores-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.store-card {
    background-color: var(--light-gray);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
}

.store-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.store-name {
    font-size: 0.75rem; /* Keep this smaller than the product name */
    color: var(--dark-gray);
    margin-top: 8px;
    display: flex;
    align-items: center;
}

.store-actions {
    display: flex;
    gap: 10px;
}

.store-action-btn {
    background-color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    color: var(--text-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.store-action-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.store-action-btn i {
    font-size: 1rem;
}

